xdctf 2015 pwn200 writeup 发表于 2018-01-06 更新于 2018-11-16 本文字数: 631 阅读时长 ≈ 1 分钟 为栈溢出,溢出点为buf,长度0x6C,read可输入0x100。溢出偏移为112。 1read(0, &buf, 0x100u); // buf length: 0x6C 阅读全文 »
Pwnable.tw start writeup 发表于 2018-01-05 更新于 2018-11-16 本文字数: 779 阅读时长 ≈ 1 分钟 使用ida查看程序,首先保存esp和_exit地址,随后将输出的字符串压栈: 123456789push esppush offset _exitxor eax, eax ; ebx, ecx, edxpush 'Let's start the CTF:'mov ecx esp ; addrmov dl, 14h ; lenmov bl, 1 ; fdmov al, 4 ; syscall num, writeint 80h 阅读全文 »