File size: 7,290 Bytes
55401d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#TODO add env var obf
$split_string_verbose = $false

function ObfuscateString($string) {
    $splitting = $true
    if ($string.Length -lt 4) {
        $splitting = $false
    }
    if ($string.StartsWith("'") -and $string.EndsWith("'")) {
        $string = $string.Substring(1, $string.Length - 2)
    }
    if ($string.StartsWith('"') -and $string.EndsWith('"')) {
        $string = $string.Substring(1, $string.Length - 2)
    }
    $string = $string -replace "`'", "`'`'"
    if ($string -eq "") {
        return "''"
    }
    $out_content = ""

    if ($splitting -eq $false) {
        $string_pieces = @($string)
    } else {
        try {
            [string[]]$string_pieces = SplitStrings $string
        }
        catch {
            Write-Host "Error splitting string: $string"
            Read-Host "Press enter to exit..."
            exit 1
        }
    }

    for ($i = 0; $i -lt $string_pieces.Count; $i++) {
        $small_string = $string_pieces[$i]
        $obfuscationFunctions = @(
            #"ObfuscateStringReverse",
            "ObfuscateBase64String",
            #"ObfuscateReplaceString",
            "ObfuscateHexString",
            "ObfuscateByteArrayString",
            "ObfuscateMixedString"
        )
        $random = Get-Random -Minimum 0 -Maximum $obfuscationFunctions.Length
        $obfuscationFunction = $obfuscationFunctions[$random]
        $out_content2 = & $obfuscationFunction $small_string
        
        if ($i -lt ($string_pieces.Count - 1)) {
            $out_content += "$out_content2 + "
        } else {
            $out_content += $out_content2
        }
    }

    return "($out_content)"
}

function ObfuscateStringReverse($string) {
    #WORKING
    $split_string = $string -split ""
    [array]::Reverse($split_string)
    $reversed_string = $split_string -join ''
    $command = "('$reversed_string'[-1..-$($reversed_string.Length)] -join '')"
    return $command
}

function ObfuscateBase64String($string) {
    #WORKING
    $bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
    $encoded = [System.Convert]::ToBase64String($bytes)
    $command = "[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String('$encoded'))"
    return $command
}

function ObfuscateByteArrayString($string) {
    #WORKING
    $bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
    $good_bytes = "(" + ($bytes -join ', ') + ")"
    $command = "[System.Text.Encoding]::UTF8.GetString($good_bytes)"
    return $command
}

function ObfuscateHexString($string) {
    if ([string]::IsNullOrEmpty($string)) {
        return "''"
    }

    $bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
    $hexString = $bytes | ForEach-Object { "0x{0:x2}" -f $_ }
    $hexString = "($($hexString -join ', '))"
    $command = "[System.Text.Encoding]::UTF8.GetString($hexString)"
    return $command
}

function ObfuscateMixedString($string) {
    $bytes = [System.Text.Encoding]::UTF8.GetBytes($string)
    $hexArray = $bytes | ForEach-Object { "0x{0:x2}" -f $_ }

    if ($bytes.Length -eq 1) {
        $byteArrayString = $bytes[0]
    } else {
        $mixedArray = for ($i = 0; $i -lt $bytes.Length; $i++) {
            if ((Get-Random -Minimum 0 -Maximum 2) -eq 0) {
                $bytes[$i]
            } else {
                $hexArray[$i]
            }
        }
        $byteArrayString = "(" + ($mixedArray -join ', ') + ")"
    }

    $command = "[System.Text.Encoding]::UTF8.GetString($byteArrayString)"
    return $command
}

function SplitStrings {
    param (
        [string]$string
    )

    $string_length = $string.Length
    if ($string_length -lt 2) {
        return @($string)
    }

    # array to store chunks
    $result = @()
    $i = 0

    while ($i -lt $string_length) {
        if ($string_length -lt 10) {
            $chunk_length = Get-Random -Minimum 2 -Maximum 5
        } elseif ($string_length -lt 50) {
            $chunk_length = Get-Random -Minimum 15 -Maximum 25
        } elseif ($string_length -lt 100) {
            $chunk_length = Get-Random -Minimum 24 -Maximum 50
        } elseif ($string_length -lt 200) {
            $chunk_length = Get-Random -Minimum 50 -Maximum 100
        } elseif ($string_length -lt 500) {
            $chunk_length = Get-Random -Minimum 75 -Maximum 200
        } elseif ($string_length -lt 1000) {
            $chunk_length = Get-Random -Minimum 100 -Maximum 300
        } else {
            $chunk_length = Get-Random -Minimum 200 -Maximum 500
        }

        # make sure we got the remaining string length
        $length = [Math]::Min($chunk_length, $string_length - $i)

        # add it to the chunk array
        $result += $string.Substring($i, $length)
        
        # move the index forward of how far we've gone.
        $i += $length

        if ($split_string_verbose) {
            Write-Host "Chunk: $($result[-1])"
        }
    }

    #pretty print the chunks
    if ($split_string_verbose) {
        Write-Host "Chunks: $($result -join ', ')"
    }

    return $result
}

function ObfuscateReplaceString($string) {
    #BROKEN
    $split_str = SplitStrings $string
    $replaces_amount = $split_str.Length

    $set_dict = @{}

    for ($i = 0; $i -lt $replaces_amount; $i++) {
        $set_dict[$i] = $split_str[$i]
    }

    $shuffled_key_locations = @()
    for ($i = 0; $i -lt $replaces_amount; $i++) {
        $shuffled_key_locations += $i
    }

    #this is the order we will put the keys in the string.
    $shuffled_keys = $shuffled_key_locations | Sort-Object {Get-Random}

    $format_string = ""
    $arguments = @()

    #make the output look like "{1}{0}{2}" -f "b", "a", "c"
    for ($i = 0; $i -lt $shuffled_keys.Length; $i++) {
        $format_string += "{$($shuffled_keys[$i])}"
        $arguments += $set_dict[$i]
    }

    $format_string = '"' + $format_string + '"'
    $arguments = '"' + ($arguments -join '", "') + '"'

    $command = "($format_string -f $arguments)"

    Write-Host "Obfuscated: $command"
    Write-Host $shuffled_key_locations
    Write-Host $shuffled_keys
    Write-Host $format_string
    Write-Host $arguments

    return $command
}

function make_random_string($length) {
    $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
    return -join ((1..$length) | ForEach-Object { $chars[(Get-Random -Maximum $chars.Length)] })
}

## Test the obfuscation
#for ($i = 0; $i -lt 1000; $i++) {
#    $length = Get-Random -Minimum 1 -Maximum 10
#    $string = make_random_string $length
#    $obfuscated_string = ObfuscateReplaceString $string
#    $deobfuscated_string = Invoke-Expression $obfuscated_string
#    
#    if ($string -ne $deobfuscated_string) {
#        Write-Host "-------------------------------------"
#        Write-Host "$string"
#        Write-Host "$deobfuscated_string"
#        Write-Host "Failed to deobfuscate string: $string"
#        Write-Host "Obfuscated: $obfuscated_string"
#        Write-Host "Deobfuscated: $deobfuscated_string"
#        Write-Host "Press Enter to continue..."
#        Read-Host
#    }
#}