首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
intermittent专题
[XYCTF]-PWN:Intermittent解析(pop栈内数据构造shellcode,自己编写shellcode)
查看ida 这里程序只会把输入的前12字节内容移到虚拟地址里,然后执行,大小不足以让执行shellcode,只能用pop寄存器调用read,再把gets hell的shellcode输入进去 完整exp: from pwn import*context(log_level='debug',arch='amd64')p=process('./interm')shellcode=''
阅读更多...