Skip to content

hust-open-atom-club/dojo

 
 

Repository files navigation

DOJO

Deploy a pwn.hust.college dojo instance while pwn.hust.college is forked from pwn.college!

Details

The pwn.hust.college dojo infrastructure is based on CTFd. CTFd provides for a concept of users, challenges, and users solving those challenges by submitting flags. From there, this repository provides an infrastructure which expands upon these capabilities.

The pwn.hust.college infrastructure allows users the ability to "start" challenges, which spins up a private docker container for that user. This docker container will have the associated challenge binary injected into the container as root-suid, as well as the flag to be submitted as readable only by the the root user. Users can enter this container via vscode in the browser (code-server), via XFCE desktop environment in the browser(noVNC), via ssh by supplying a public ssh key in their profile settings. The associated challenge binary may be either global, which means all users will get the same binary, or instanced, which means that different users will receive different variants of the same challenge.

Setup

export DOWNLOAD_URL="https://mirrors.hust.edu.cn/docker-ce" && curl -fsSL https://get.docker.com | /bin/sh
git clone https://github.com/hust-open-atom-club/dojo.git
docker build -t pwncollege/dojo dojo
docker run --privileged -d -v "dojo:/opt/pwn.college:shared" -p 22:22 -p 80:80 -p 443:443 --name dojo pwncollege/dojo

This will run the initial setup, including building the challenge docker image. It would build docker image based on the host architecture. You can deploy dojo by cloning this repository and running setup.sh.

Local Setup

By default, the dojo will initialize itself to listen on and serve from localhost.pwn.college (which resolves 127.0.0.1). This is fine for development, but to serve your dojo to the world, you will need to update this (see Production Setup).

It will take some time to initialize everything and build the challenge docker image. You can check on your container (and the progress of the initial build) with:

docker exec dojo dojo logs

Once things are setup, you should be able to access the dojo and login with username admin and password admin. You MUST change these admin credentials in the admin panel.

Production Setup

Customizing the setup process is done through -e KEY=value arguments to the docker run command. You can stop the already running dojo instance with docker stop dojo, and then re-run the docker run command with the appropriately modified flags.

In order to change where the host is serving from, you can modify DOJO_HOST, e.g., -e DOJO_HOST=localhost.pwn.college. In order for this to work correctly, you must correctly point the domain at the server's IP via DNS. If you don't have a domain name, you can enter your IP address in the DOJO_HOST parameter.

By default, a minimal challenge image is built. If you want more of the features you are used to, you can modify DOJO_CHALLENGE, e.g., -e DOJO_CHALLENGE=challenge-mini. The following options are available:

  • challenge-nano: A very minified setup.
  • challenge-micro: Adds VSCode.
  • challenge-mini: Adds a minified desktop (by default).
  • challenge-full: The full (70+ GB) setup.

When you want to deploy it on platforms with different architectures, you can use the ARCH parameter in the config.env file. The default parameter value is amd64, and if deploying on ARM architecture, the parameter value is arm64.

For more arguments, please refer to data/config.env created in the dojo directory.

Updating

When updating your dojo deployment, there is only one supported method in the dojo directory:

docker kill pwncollege/dojo
docker rm pwncollege/dojo
git pull
docker build -t pwncollege/dojo dojo
docker run --privileged -d -v "dojo:/opt/pwn.college:shared" -p 22:22 -p 80:80 -p 443:443 --name dojo pwncollege/dojo

This will cause downtime when the dojo is rebuilding.

Some changes can be applied without a complete restart, however this is not guaranteed.

If you really know what you're doing (the changes that you're pulling in are just to ctfd), inside the pwncollege/dojo container you can do the following:

dojo update

Note that dojo update is not guaranteed to be successful and should only be used if you fully understand each commit/change that you are updating.

Customization

All dojo data will be stored in the ./data directory.

Once logged in, you can add a dojo by visiting /dojos/create. Dojos are contained within git repositories. Refer to the example dojo for more information.

Contributing

We love Pull Requests! 🌟 Have a small update? Send a PR so everyone can benefit. For more substantial changes, open an issue to ensure we're on the same page. Together, we make this project better for all! 🚀

Please refer to CONTRIBUTING.md for more details.

You can run the dojo CI testcases locally using test/local-tester.sh.

About

Deploy and customize our own pwn.college - pwn.hust.college

Resources

License

Stars

Watchers

Forks

Languages

  • Python 40.3%
  • CSS 27.3%
  • HTML 16.7%
  • JavaScript 4.8%
  • Shell 3.7%
  • PowerShell 2.5%
  • Other 4.7%