Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 219 Bytes

powershell_decode.md

File metadata and controls

11 lines (7 loc) · 219 Bytes
$obfuscated = 'obfuscated.code.here' 

# Decode the obfuscated string
$decoded = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($obfuscated))

# Print the decoded string
$decoded