Copy template/ folder and place inside challenge category folder.
<chall-name>
├── public/
│ └── ...
├── src/
│ └── ...
├── solution/
│ ├── README.md
│ └── ...
├── Dockerfile
├── docker-compose.yml
└── README.mdNotes:
public/: Contains files or resources that are publicly accessible, such as assets or binaries provided to participants as part of the challenge.src/: Contains the source code for the challenge, including the implementation of the challenge logic or services.solution/: Includes files related to the challenge solution, such as scripts or detailed write-ups on how to solve the challenge.Dockerfileanddocker-compose.yml: Used for containerizing the challenge environment, ensuring consistency and easy deployment. Please use github.com/redpwn/jail to isolated challenge service.README.md: Provides a description of the challenge, setup instructions, hints (if any), and any other relevant details for participants.