diff --git a/README.md b/README.md index 3f6343a..8107f2b 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ Although some of the challenges may run as is, it is recommended that you have d | Name | Author | | ---- | ------ | +| [Armored Up](./misc/armored-up) | neo | | [Metadata Matters](./misc/metadata-matters) | YetAnotherAlt123 | | [Password Keep](./misc/password-keep) | YetAnotherAlt123 | | [Superguesser Part 1](./misc/superguesser) | koks | diff --git a/misc/armored-up/README.md b/misc/armored-up/README.md new file mode 100644 index 0000000..07d81ac --- /dev/null +++ b/misc/armored-up/README.md @@ -0,0 +1,31 @@ +# Armored Up + +[![Try in PWD](https://raw.githubusercontent.com/play-with-docker/stacks/master/assets/images/button.png)](https://labs.play-with-docker.com/?stack=https://raw.githubusercontent.com/cybermouflons/CCSC-CTF-2023/master/misc/armored-up/docker-compose.yml) + + +**Category**: misc + +**Author**: neo + +## Description + +You managed to exfiltrate a super secret Project Echo file, but it's really +well protected. Can you figure out the correct password? + +Note: + $ python3 --version + Python 3.11.2 + + + +## Run locally + +Launch challenge: +``` +curl -sSL https://raw.githubusercontent.com/cybermouflons/CCSC-CTF-2023/master/misc/armored-up/docker-compose.yml | docker compose -f - up -d +``` + +Shutdown challenge: +``` +curl -sSL https://raw.githubusercontent.com/cybermouflons/CCSC-CTF-2023/master/misc/armored-up/docker-compose.yml | docker compose -f - down +```