From cb240ad03e40eccf12af2fb3c618e7fc883851da Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 17 Aug 2022 00:05:24 -0400 Subject: [PATCH] Updated readme with more correct info and less incorrect info --- README.md | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5b2ad80..8257c6c 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,30 @@ # LiveCTF 2022 -This is an initial release after the end of the CTF. We will clean up the cobwebs after we get some rest :) - Repository for storing challenges, infrastructure notes, streaming configuration and other version controlled bits of information for the DEF CON CTF final LiveCTF event. +## Challenges used in LiveCTF + +| # | Challenge Name | Competitors | Victor | +|---------------------|----------------------------------------------------|----------------------------------------|---------------------------| +| Round of 16: 1 | [syscall-me-maybe](./challenges/syscall-me-maybe) | Shellphish vs PTB_WTL | Shellphish | +| Round of 16: 2 | [open-to-interpretation](./challenges/open-to-interpretation) | StarBugs vs ./V /home/r/.bin/tw | StarBugs | +| Round of 16: 3 | [nopcoing](./challenges/nopcoing) | OSUSEC vs Maple Mallard Magistrates | Maple Mallard Magistrates | +| Round of 16: 4 | [nerd-sniped](./challenges/nerd-sniped) | the new organizers vs Balsn.217@TSJ.tw | the new organizers | +| Round of 16: 5 | [fairy-nuff](./challenges/fairy-nuff) | DiceGuesser vs Sauercloud | Sauercloud | +| Round of 16: 6 | [seek-and-destroy](./challenges/seek-and-destroy) | 侍‎ vs perfect r✪✪✪t | perfect r✪✪✪t | +| Round of 16: 7 | [nvulns](./challenges/nvulns) | r3kapig vs Water Paddler | r3kapig | +| Round of 16: 8 | [quick-cast](./challenges/quick-cast) | Katzebin vs Straw Hat | Straw Hat | +| Quarter-Finals: 1 | [story-time](./challenges/story-time) | StarBugs vs the new organizers | StarBugs | +| Quarter-Finals: 2 | [stacks](./challenges/stacks) | Shellphish vs Maple Mallard Magistrates| Maple Mallard Magistrates | +| Quarter-Finals: 3 | [pacman](./challenges/pacman) | r3kapig vs Sauercloud | [Went to sudden death] | +| Quarter-Finals: 3.5 | [over-easy](./challenges/over-easy) | r3kapig vs Sauercloud | r3kapig | +| Quarter-Finals: 4 | [no-roplem](./challenges/no-roplem) | Straw Hat vs perfect r✪✪✪t | perfect r✪✪✪t | +| Semi-Finals: 1 | [aes-of-spades](./challenges/aes-of-spades) | Maple Mallard Magistrates vs StarBugs | StarBugs | +| Semi-Finals: 2 | [loopy-brain](./challenges/loopy-brain) | r3kapig vs perfect r✪✪✪t | [Went to sudden death] | +| Semi-Finals: 2.5 | [fast-updater](./challenges/fast-updater) | r3kapig vs perfect r✪✪✪t | perfect r✪✪✪t | +| Finals | [f-in-the-stack](./challenges/f-in-the-stack) | StarBugs vs perfect r✪✪✪t | StarBugs | + + ## Challenge structure @@ -11,8 +32,8 @@ Repository for storing challenges, infrastructure notes, streaming configuration ├── │   ├── challenge │   │   ├── build.sh # Commands for building challenge binary/binaries and handout +│   │   ├── config.toml # Config file for flag submitter │   │   ├── Dockerfile # Dockerfile for building challenge image -│   │   ├── flag # If you don't know, you're probably in the wrong place │   │   ├── run.sh # Command(s) to start the challenge │   │   └── src # This is where the source for the challenge will go │   │   └── challenge.c @@ -22,8 +43,7 @@ Repository for storing challenges, infrastructure notes, streaming configuration ``` ## Building challenges -1. `make -C base-image` -2. `./livectf.py build ` +1. `./livectf.py build ` ## Managing challenges Challenge management (creation/building/starting/stopping) is done through `livectf.py`, which is a light wrapper around docker. See `./livectf.py --help` for usage. @@ -31,7 +51,7 @@ Challenge management (creation/building/starting/stopping) is done through `live ### Adding a challenge 1. `./livectf.py create ` will copy the template challenge to a new challenge directory. 2. Add your challenge source in `/challenge/src` -3. Change the flag in `/challenge/flag` +3. Update the solution script in `/solution/solve.py` (For challenges that include more than one source file + one binary): @@ -42,4 +62,4 @@ Challenge management (creation/building/starting/stopping) is done through `live ### Adding a solution for a challenge 1. Add any pip requirements to `/solution/requirements.txt` -2. Put your solution script in `/solution/solve.py` \ No newline at end of file +2. Put your solution script in `/solution/solve.py`