目录导航
安装/构建
git clone https://github.com/boogy/ctfbox.git cd ctfbox docker build -t ctfbox .
Docker Hub
The image is also present on docker hub
docker pull boogy/ctfbox
运行ctfbox
启动映像
docker run -it boogy/ctfbox
gdb或gdbserver如果有问题您可以运行在特权模式下容器和主机网络。
sudo docker run -it --privileged --net=host boogy/ctfbox
安装一些工具和示例列表
截图
binjitsu – CTF toolkit
from pwn import * context(arch = 'i386', os = 'linux') r = remote('exploitme.example.com', 31337) # EXPLOIT CODE GOES HERE r.send(asm(shellcraft.sh())) r.interactive()
Radare2
