Pwn学习笔记24:其他一些技术
ucontextsetjmp/longjmp的最终演变
setjmp()/longjmp()
sigsetjmp()/siglongjmp()
getcontext()/makecontext()/setcontext()/swapcontext()
1. setjmp()/longjmp()
通过setjmp()设置一个保存点,可以通过longjmp()返回到那里
实现了函数间的got...
続きを読む…