PolarCTF2026春季赛
one_hundred#导入所需库#--------------------------------------------------------------------------------from pwn import*from LibcSearcher import*from ctypes import*from struct import*import time#设置context#--------------------------------------------------------------------------------context(arch='i386', os='linux', log_level='debug')#, terminal=['tmux', 'splitw',...
pwn_小记
本文章会持续更新,用于记录pwn过程中,本人觉得值得记录的东西0v0 pwn的exp简化模板该部分记录使用lambda表达式与自定义函数简化exp,便于未来exp的编写。 #导入所需库#--------------------------------------------------------------------------------from pwn import*from LibcSearcher import*from ctypes import*from struct import*import time#设置context#--------------------------------------------------------------------------------context(arch='', os='linux', log_level='debug', terminal=['tmux', 'splitw',...
