项目作者: Palmcivet

项目描述 :
🐳 A Docker environment for CTF
高级语言: Shell
项目地址: git://github.com/Palmcivet/CTF-Box.git
创建时间: 2020-09-14T16:01:19Z
项目社区:https://github.com/Palmcivet/CTF-Box

开源协议:

下载


CTF Box

This is a Docker environment for CTF and vulnerability research based on ubuntu 20.04.

Installation

0. Download CTF-Box

  1. $ export CTF_BOX=~/.config/CTF-Box
  2. $ git clone --depth=1 https://github.com/Palmcivet/CTF-Box.git $CTF_BOX
  3. $ cd ./CTF-Box

$CTF_BOX is a folder, you can name it any way you want.

NOTICE: Of course, you don’t have to create $CTF_BOX, but we strongly recommend setting up a folder in which to store this project and your configurations. This makes it easier to start container with alias.

1. Edit .env

Before launch, you should edit .env so that you can access your own files in the container.

  1. $ vi .env

By default, the compose will pass ./ to those variables:

  • OUTER_FILE: files that used like a tool, this directory is added into $PATH
  • OUTER_WORK: your work directory, can be read and write frequently and temporarily

2. Build and run

  1. $ docker-compose up -d

When execuate docker-compose up, the image will be built automatically. Please wait and take a rest.

3. Customize and hack fun

  1. $ docker-compose exec ctf_box_app
  2. ╭─root@0ce6dc01b282 ~/work
  3. ╰─➤ ./HACK/custom.sh

NOTICE: Using docker-compose exec rather than docker exec, so the ctf_box_app is the name of CTF-Box service.

The script custom.sh aimed at installing some binaries analysis tools, which need a good network connection.

Instant container

You can launch an instant container:

  1. $ docker run \
  2. -it \
  3. --rm \
  4. --name temp_app \
  5. -v /other_dir:/other:rw \
  6. ctf_img \
  7. /bin/zsh

Using --rm so it will be cleaned after exit.

NOTICE: The arguments specified by -v should be absolute path.

Environment

  • HACK
    • exec: debuggers and executable files, copied during building
    • tool: installed by custom.sh
  • file: mapped from $OUTER_FILE
  • work: mapped from $OUTER_WORK

When you enter the CTF-Box, the pwd is ~/work by default. This is actually your working directory.

Alias

In order to launch the container quickly, you can add this to shell profile(such as ~/.bashrc, ~/.zshrc):

  1. CTF_BOX=~/.config/CTF-Box
  2. ctf_temp() {
  3. local CWD=$(cd $1; dirname $(pwd))
  4. if [ $# -eq 2 ]; then
  5. local VOL="-v $2"
  6. fi
  7. docker run \
  8. -it \
  9. --rm \
  10. --name temp_app \
  11. -e LANG=C.UTF-8 \
  12. -v $CWD:/root/work \
  13. $VOL \
  14. ctf_img \
  15. /bin/zsh
  16. }
  17. # eg: ctf_temp ./mywork ~/myapp:work
  18. CTF_BOX_CMD="docker-compose -f $CTF_BOX/docker-compose.yml --env-file $CTF_BOX/.env"
  19. alias ctf_enter="$CTF_BOX_CMD exec ctf_box_app /bin/zsh"
  20. alias ctf_break="$CTF_BOX_CMD stop ctf_box_app"
  21. alias ctf_start="$CTF_BOX_CMD start ctf_box_app && ctf_enter"

Tools

Essential

  • python3-pip
  • python3-dev
  • ruby
  • curl
  • wget
  • file
  • git
  • vim
  • zsh
  • oh-my-zsh
  • proxychains4

Misc

  • yafu
  • binwalk
  • pcapfix
  • foremost
  • steghide
  • pngcheck
  • outguess
  • imagemagick
  • multimon-ng

Binary

  • gcc
  • gdb
  • ncat
  • ltrace
  • gdb-multiarch
  • peda
  • pwndbg
  • radare2

Python Lib

  • gmpy2
  • pwntools
  • z3-solver(angr)
  • ROPGadget(pwndbg)
  • unicorn(pwndbg/gef)
  • capstone(pwndbg/gef)
  • keystone-engine(gef)

Ruby

  • zsteg
  • one_gadget