Base64 decode command.
Go to sans sift workstation:
echo "base64 payload data" | base64 -d | iconv -f UTF-16LE -t UTF-8
iconv command is used to convert double-byte Unicode to single-byte Unicode or ascii, making the output easier to read.
Avi
Base64 decode command.
Go to sans sift workstation:
echo "base64 payload data" | base64 -d | iconv -f UTF-16LE -t UTF-8
iconv command is used to convert double-byte Unicode to single-byte Unicode or ascii, making the output easier to read.
Avi
Comments
Post a Comment