Environment
| IP | HOSTNAME | NOTE |
|---|---|---|
| N/A | Win10 | Test host |
Related Script
| Content | Download |
|---|---|
| PowerShell script | Download |
Base64-encoded string


Decode a Base64 string with PowerShell
[System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String(dGVzdF9wb2M=))

Decode port 443 three times with PowerShell
$target_port = "VGtSUmVnPT0="
for ($x = 0; $x -lt 3; $x = $x + 1)
{
$target_port = [System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String($target_port))
}
echo $target_port
