/ctfbox

CTF box with most tools installed

Primary LanguageShell

CTFBOX

When playing CTFs I like to have all the tools ready to rock when needed. This docker image will provide these tools installed on ubuntu:latest image.

The script(s) was forked from praetorian-inc/epictreasure

Similar configurations ctf-tools

Installation/ Build

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

Run the ctfbox

Start the image

docker run -it boogy/ctfbox

If you have problems with gdb or gdbserver you can run the container in privileged mode and with the host network.

sudo docker run -it --privileged --net=host boogy/ctfbox

List of some tools installed and examples

Screenshots

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

radare2 radare2 webui

Peda

start

ROPGadget

x64-ropgadget