PoshCode Archive  Artifact [e318b8da4a]

Artifact e318b8da4ac5ae5769fe9d32ebdb4193d0d41d9b245c7f203fd39ba43c37f496:

  • File Convert-Raw-SID-to-SID.ps1 — part of check-in [f07f243fa3] at 2018-06-10 14:01:53 on branch trunk — This scripts converts Raw SID such as 010500000000000515000000A065CF7E784B9B5FE77C8770091C0100 into a standard SID output such as S-1-5-21-2127521184-1604012920-1887927527-72713 (user: S-1-5-21-2127521 size: 2074)

# encoding: ascii
# api: powershell
# title: Convert Raw SID to SID
# description: This scripts converts Raw SID such as 010500000000000515000000A065CF7E784B9B5FE77C8770091C0100 into a standard SID output such as S-1-5-21-2127521184-1604012920-1887927527-72713
# version: 0.1
# type: function
# author: S-1-5-21-2127521
# license: CC0
# function: Convert-HEXtoDEC
# x-poshcode-id: 5812
# x-archived: 2015-04-05T04:14:43
# x-published: 2015-04-02T18:29:00
#
#
#For intel concerning how to convert raw hex SID to Standard  SID got to
#http://blogs.msdn.com/b/oldnewthing/archive/2004/03/15/89753.aspx

#to convert Hex to Dec
function Convert-HEXtoDEC
{
param($HEX)
ForEach ($value in $HEX)
{
[string][Convert]::ToInt32($value,16)
}
}

#to reassort decimal values to correct hex in order to cenvert them
function Reassort
{
param($chaine)
$a = $chaine.substring(0,2)
$b = $chaine.substring(2,2)
$c = $chaine.substring(4,2)
$d = $chaine.substring(6,2)
$d+$c+$b+$a
}

# this is the main function
# it splits the waxw sid into different parts and then converts the values
# finally it brings the converted SID value.
# you can supply an array of raw sid
function ConvertSID
{
param($chaine32)
foreach($chaine in $chaine32) {
    [INT]$SID_Revision = $chaine.substring(0,2)
    [INT]$Identifier_Authority = $chaine.substring(2,2)
    [INT]$Security_NT_Non_unique = Convert-HEXtoDEC(Reassort($chaine.substring(16,8)))
    $chaine1 = $chaine.substring(24,8)
    $chaine2 = $chaine.substring(32,8)
    $chaine3 = $chaine.substring(40,8)
    $chaine4 = $chaine.substring(48,8)
    [string]$MachineID_1=Convert-HextoDEC(Reassort($chaine1))
    [string]$MachineID_2=Convert-HextoDEC(Reassort($chaine2))
    [string]$MachineID_3=Convert-HextoDEC(Reassort($chaine3))
    [string]$UID=Convert-HextoDEC(Reassort($chaine4))
    #"S-1-5-21-" + $MachineID_1 + "-" + $MachineID_2 + "-" + $MachineID_3 + "-" + $UID
    "S-$SID_revision-$Identifier_Authority-$Security_NT_Non_unique-$MachineID_1-$MachineID_2-$MachineID_3-$UID"
    }
}