From 1c7ff0d515e2ea0ba9699e2278023e6fa072aa8b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 28 Apr 2024 23:02:35 +0000 Subject: [PATCH] [GitHub Action] Update challenges in README.md --- README.md | 1 + crypto/inverted-oracle/README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 crypto/inverted-oracle/README.md diff --git a/README.md b/README.md index a1471af..7194d90 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Although some of the challenges may run as is, it is recommended that you have d | [Andromeda Cloud Storage](./crypto/andromeda-cloud-storage) | feltf | | [Andromeda Cloud Storage v2](./crypto/andromeda-cloud-storage-v2) | feltf | | [Identity Thief](./crypto/identity-thief) | tratrafe2 | +| [Inverted Oracle](./crypto/inverted-oracle) | rok0s | diff --git a/crypto/inverted-oracle/README.md b/crypto/inverted-oracle/README.md new file mode 100644 index 0000000..01dfe47 --- /dev/null +++ b/crypto/inverted-oracle/README.md @@ -0,0 +1,28 @@ +# Inverted Oracle + +[![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/crypto/inverted-oracle/docker-compose.yml) + + +**Category**: crypto + +**Author**: rok0s + +## Description + +Infiltrating the Orion Secure Terminal is the only path forward in uncovering the secrets of Project Echo +This high-security terminal, designed to control and monitor key aspects of the project, uses +advanced cryptography to ensure that none of its secrets are leaked. Can you possible invert its security mechanisms? + + + +## Run locally + +Launch challenge: +``` +curl -sSL https://raw.githubusercontent.com/cybermouflons/CCSC-CTF-2023/master/crypto/inverted-oracle/docker-compose.yml | docker compose -f - up -d +``` + +Shutdown challenge: +``` +curl -sSL https://raw.githubusercontent.com/cybermouflons/CCSC-CTF-2023/master/crypto/inverted-oracle/docker-compose.yml | docker compose -f - down +```