Python framework for writing exploits and CTF solutions
CTF framework used by Gallopsled in every CTF
pwn$ pwn template ./vulnerable_binary > exploit.py$ python3 -c "from pwn import *; p = process('./binary'); p.interactive()"$ python3 -c "from pwn import *; r = remote('example.com', 1337); r.sendline(b'payload'); print(r.recvall())"