├── .gitignore ├── AIS3PreExam_pekobot ├── description.yml ├── release_files │ ├── elliptic_curve.py │ └── server.py └── server_files │ ├── Dockerfile │ ├── elliptic_curve.py │ └── server.py ├── BreizhCTF2023_What-a-curve ├── description.yml ├── release_files │ └── chall.sage └── server_files │ ├── Dockerfile │ ├── chall.sage │ └── solve.sage ├── BreizhCTF2025_Authentification-1 ├── description.yml ├── release_files │ ├── authentification-1.zip │ └── template_authentification.py └── server_files │ ├── Dockerfile │ ├── authentification-1 │ ├── app.py │ ├── crypto.py │ ├── gcm │ │ ├── __init__.py │ │ ├── gcm.py │ │ └── utils.py │ ├── static │ │ ├── favicon.png │ │ ├── fonts │ │ │ └── ma-police.woff2 │ │ ├── logo.jpeg │ │ └── style.css │ └── templates │ │ ├── admin.html │ │ ├── base.html │ │ ├── index.html │ │ ├── login.html │ │ ├── register.html │ │ └── too_many_users.html │ └── requirements.txt ├── BreizhCTF2025_Authentification-2 ├── description.yml ├── release_files │ ├── authentification-2.zip │ └── template_authentification.py └── server_files │ ├── Dockerfile │ ├── authentification-2 │ ├── .zip │ ├── app.py │ ├── crypto.py │ ├── gcm │ │ ├── __init__.py │ │ ├── gcm.py │ │ └── utils.py │ ├── static │ │ ├── favicon.png │ │ ├── fonts │ │ │ └── ma-police.woff2 │ │ ├── logo.jpeg │ │ └── style.css │ └── templates │ │ ├── admin.html │ │ ├── base.html │ │ ├── index.html │ │ ├── login.html │ │ ├── register.html │ │ └── too_many_users.html │ └── requirements.txt ├── BreizhCTF2025_Do-you-have-good-eyes ├── description.yml ├── release_files │ └── do-you-have-good-eyes.zip └── server_files │ ├── Dockerfile │ └── do-you-have-good-eyes │ ├── chal.sage │ ├── parameters.sage │ ├── sanitize.sage │ └── utils.sage ├── BreizhCTF2025_U-turn ├── description.yml └── release_files │ └── u-turn.zip ├── CODEGATE2022_Dark_Arts ├── description.yml ├── release_files │ └── chal.py └── server_files │ ├── Dockerfile │ └── chal.py ├── CODEGATE2024_Greatest_Common_Multiple ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── src │ ├── banner.txt │ ├── chall.py │ ├── flag.txt │ └── secret.py ├── DCTF2022_key_recovery ├── description.yml ├── release_files │ └── key_recovery.py └── server_files │ ├── Dockerfile │ ├── key_recovery.py │ ├── key_recovery.xinetd │ └── solution.py ├── DUCTF2020_1337crypt ├── description.yml └── release_files │ ├── 1337crypt.sage │ └── output.txt ├── DUCTF2021_1337crypt-v2 ├── description.yml └── release_files │ ├── 1337crypt-v2.sage │ └── output.txt ├── DUCTF2021_substitution-cipher-iii ├── description.yml └── release_files │ ├── output.txt │ └── substitution-cipher-iii.sage ├── HITCONCTF-2023-Share ├── description.yml ├── release_files │ └── server.py └── server_files │ ├── Dockerfile │ └── server.py ├── HITCONCTF-2024-ECLCG ├── description.yml └── release_files │ ├── chall.py │ └── output.txt ├── HITCONCTF-2024-Hyper512 ├── description.yml └── release_files │ ├── chall.py │ └── output.txt ├── HTB2021_Spongebob ├── description.yml ├── release_files │ └── spongebob.py └── server_files │ ├── Dockerfile │ ├── spongebob.py │ └── spongebob.xinetd ├── HackTMCTF2023-GLP420 ├── description.yml ├── release_files │ └── server.sage └── server_files │ ├── Dockerfile │ ├── server.sage │ └── xinetd ├── HackTMCTF2023-broken-oracle ├── description.yml ├── release_files │ └── server.py └── server_files │ ├── Dockerfile │ ├── server.py │ └── xinetd ├── HackTMCTF2023-d-phi-enc ├── description.yml └── release_files │ ├── chall.py │ └── output.txt ├── HackTMCTF2023-kaitenzushi ├── description.yml └── release_files │ ├── chall.sage │ └── output.txt ├── HackTMCTF2023-unrandom-DSA ├── description.yml ├── release_files │ └── server.py └── server_files │ ├── Dockerfile │ ├── server.py │ └── xinetd ├── ICC2022_ed25519-magic ├── .gitignore ├── description.yml ├── release_files │ ├── Dockerfile │ ├── chal.py │ └── magic.xinetd └── server_files │ ├── Dockerfile │ ├── chal.py │ ├── magic.xinetd │ └── solution.py ├── ICC2022_functional ├── description.yml └── release_files │ ├── functional.sage │ └── output.txt ├── ICC2022_unbalanced ├── description.yml └── release_files │ ├── challenge.py │ └── output.txt ├── ImagianryCTF-Daily-Leet-Universe ├── description.yml ├── release_files │ └── server.py └── server_files │ ├── Dockerfile │ └── server.py ├── ImaginaryCTF2023-Sus ├── description.yml └── release_files │ ├── challenge.py │ └── output.txt ├── LICENSE ├── README.md ├── SEETF2022_probability ├── description.yml ├── release_files │ ├── Dockerfile │ └── probability.py └── server_files │ ├── Dockerfile │ ├── probability.py │ └── solve.ipynb ├── SekaiCTF_2022-FaILProof ├── description.yml ├── release_files │ ├── Dockerfile │ ├── ctf.xinetd │ └── source.py └── server_files │ ├── Dockerfile │ ├── ctf.xinetd │ └── source.py ├── SekaiCTF_2022-FaILProof_Revenge ├── description.yml ├── release_files │ ├── Dockerfile │ ├── ctf.xinetd │ └── source.py └── server_files │ ├── Dockerfile │ ├── ctf.xinetd │ ├── solve.py │ └── source.py ├── SekaiCTF_2022-diffecient ├── description.yml ├── release_files │ ├── Dockerfile │ ├── ctf.xinetd │ └── source.py └── server_files │ ├── Dockerfile │ ├── ctf.xinetd │ ├── solve.py │ └── source.py ├── TETCTF2020_2020 ├── description.yml ├── release_files │ ├── 2020.py │ └── Dockerfile └── server_files │ ├── 2020.py │ └── Dockerfile ├── TETCTF2021_unevaluated ├── description.yml └── release_files │ ├── output.txt │ └── source.py ├── TETCTF2021_unimplemented ├── description.yml └── release_files │ ├── output.txt │ └── source.py ├── TSJCTF2022_Signature ├── description.yml └── release_files │ ├── challenge.py │ └── output.txt ├── WACON2022_RSA_Permutation ├── description.yml ├── release_files │ └── chal.py └── server_files │ ├── Dockerfile │ └── chal.py ├── WACON2022_RSA_Secret_Sharing ├── description.yml ├── release_files │ └── chal.py └── server_files │ ├── Dockerfile │ └── chal.py ├── Zh3r0_CTF_V2_2021-1n_jection ├── description.yml └── release_files │ └── challenge.py ├── Zh3r0_CTF_V2_2021-Real_Mersenne ├── description.yml ├── release_files │ ├── Dockerfile │ ├── challenge.py │ └── real.xinetd └── server_files │ ├── Dockerfile │ ├── challenge.py │ └── real.xinetd ├── Zh3r0_CTF_V2_2021-Twist_and_Shout ├── description.yml ├── release_files │ ├── Dockerfile │ ├── challenge.py │ └── twist.xinetd └── server_files │ ├── Dockerfile │ ├── challenge.py │ └── twist.xinetd ├── Zh3r0_CTF_V2_2021-chaos ├── description.yml ├── release_files │ ├── Dockerfile │ ├── challenge.py │ └── chaos.xinetd └── server_files │ ├── Dockerfile │ ├── challenge.py │ └── chaos.xinetd ├── Zh3r0_CTF_V2_2021-import_numpy_as_MT ├── description.yml ├── release_files │ ├── Dockerfile │ ├── challenge.py │ └── numpymt.xinetd └── server_files │ ├── Dockerfile │ ├── challenge.py │ └── numpymt.xinetd ├── ch2024-sigma-fischlin ├── description.yml ├── release_files │ ├── chal.py │ ├── help.html │ └── params.py └── server_files │ ├── Dockerfile │ ├── chal.py │ └── params.py ├── ch2024-sigma-hamiltonicity ├── description.yml ├── release_files │ ├── chal.py │ ├── example.py │ └── hamiltonicity.py └── server_files │ ├── Dockerfile │ ├── chal.py │ └── hamiltonicity.py ├── ch2024-sigma-hamiltonicity2 ├── description.yml ├── release_files │ ├── chal.py │ ├── example.py │ └── hamiltonicity.py └── server_files │ ├── Dockerfile │ ├── chal.py │ └── hamiltonicity.py ├── ch2024-sigma-or ├── description.yml ├── release_files │ ├── chal.py │ └── params.py └── server_files │ ├── Dockerfile │ ├── chal.py │ └── params.py ├── ch2024-ticket-maestro ├── description.yml ├── release_files │ ├── Cargo.toml │ ├── Dockerfile │ ├── example.py │ ├── maestro.rs │ └── main.rs └── server_files │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Dockerfile │ ├── maestro.rs │ └── main.rs ├── cscbe2024-additional-problems ├── description.yml ├── release_files │ └── server.py └── server_files │ ├── Dockerfile │ ├── requirements.txt │ └── server.py ├── cyber-apocalypse-2025-verilicious ├── description.yml └── release_files │ ├── output.txt │ ├── pubkey.pem │ └── source.py ├── docker_deploy.py ├── ecsc2023-RRSSAA ├── description.yml └── release_files │ ├── RRSSAA.py │ └── output.txt ├── ecsc2023-blind ├── description.yml └── release_files │ ├── blind.sage │ └── output.txt ├── ecsc2023-hide-and-seek ├── description.yml └── release_files │ ├── hide_and_seek.sage │ └── output.txt ├── ecsc2023-irish-flan ├── description.yml └── release_files │ ├── irish_flan.py │ └── output.txt ├── ecsc2023-put-a-ring-on-it ├── description.yml └── release_files │ ├── chal.py │ ├── data.json │ └── ed25519.py ├── ecsc2023-tough-decisions ├── description.yml └── release_files │ ├── output.txt │ └── tough_decisions.py ├── ecsc2023-twist-and-shout ├── description.yml ├── release_files │ ├── Dockerfile │ ├── twist_and_shout.py │ └── twist_and_shout.xinetd └── server_files │ ├── Dockerfile │ ├── twist_and_shout.py │ └── twist_and_shout.xinetd ├── ecsc2024-OffTopic ├── description.yml ├── release_files │ └── offtopic.py └── server_files │ ├── Dockerfile │ ├── chall.py │ └── requirements.txt ├── ecsc2024-One-Round-Crypto ├── description.yml ├── release_files │ └── one_round_crypto.py └── server_files │ ├── Dockerfile │ ├── chall.py │ └── requirements.txt ├── ecsc2024-Quo-vadis ├── description.yml ├── release_files │ └── quo_vadis.sage └── server_files │ ├── Dockerfile │ ├── chall.sage │ ├── requirements.txt │ └── start.sh ├── ecsc2024-RSATogether ├── description.yml ├── release_files │ └── rsatogether.sage └── server_files │ ├── Dockerfile │ ├── requirements.txt │ ├── rsatogether.sage │ └── start.sh ├── ecsc2024-Smithing-contest ├── description.yml ├── release_files │ └── smithing.sage └── server_files │ ├── Dockerfile │ ├── chall.sage │ └── start.sh ├── firebird2021-oofbleck ├── description.yml └── release_files │ ├── chall.py │ ├── output.txt │ └── secret.py ├── firebird2022-authenticator ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── firebird2022-collider ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── firebird2022-lack-of-entropy ├── description.yml └── release_files │ ├── chall.py │ └── output.txt ├── googlectf2022-maybe-someday ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── hkcert2020-calm-down ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ ├── chall.py │ └── secret.py ├── hkcert2020-sign-in-please ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ ├── chall.py │ └── secret.py ├── hkcert2021-a-joke-cipher ├── description.yml └── release_files │ ├── chall.py │ └── output.txt ├── hkcert2021-freedom ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── hkcert2021-key-backup-service-1 ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── hkcert2021-key-backup-service-2 ├── description.yml └── release_files │ ├── chall.py │ └── transcript.zip ├── hkcert2021-sign-in-please-again ├── description.yml ├── release_files │ └── chall.py └── server_files │ ├── Dockerfile │ └── chall.py ├── hkcert2021-sratslla-sea ├── description.yml ├── release_files │ ├── aes.py │ └── chall.py └── server_files │ ├── Dockerfile │ ├── aes.py │ └── chall.py └── hkcert2021-tenet-the-plagarism ├── description.yml └── release_files └── challenge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/.gitignore -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/AIS3PreExam_pekobot/description.yml -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/release_files/elliptic_curve.py: -------------------------------------------------------------------------------- 1 | ../server_files/elliptic_curve.py -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/AIS3PreExam_pekobot/server_files/Dockerfile -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/server_files/elliptic_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/AIS3PreExam_pekobot/server_files/elliptic_curve.py -------------------------------------------------------------------------------- /AIS3PreExam_pekobot/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/AIS3PreExam_pekobot/server_files/server.py -------------------------------------------------------------------------------- /BreizhCTF2023_What-a-curve/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2023_What-a-curve/description.yml -------------------------------------------------------------------------------- /BreizhCTF2023_What-a-curve/release_files/chall.sage: -------------------------------------------------------------------------------- 1 | ../server_files/chall.sage -------------------------------------------------------------------------------- /BreizhCTF2023_What-a-curve/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2023_What-a-curve/server_files/Dockerfile -------------------------------------------------------------------------------- /BreizhCTF2023_What-a-curve/server_files/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2023_What-a-curve/server_files/chall.sage -------------------------------------------------------------------------------- /BreizhCTF2023_What-a-curve/server_files/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2023_What-a-curve/server_files/solve.sage -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/description.yml -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/release_files/authentification-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/release_files/authentification-1.zip -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/release_files/template_authentification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/release_files/template_authentification.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/Dockerfile -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/app.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/crypto.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/__init__.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/gcm.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/gcm/utils.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/static/favicon.png -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/static/fonts/ma-police.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/static/fonts/ma-police.woff2 -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/static/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/static/logo.jpeg -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/static/style.css -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/admin.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/base.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/index.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/login.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/register.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/too_many_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-1/server_files/authentification-1/templates/too_many_users.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-1/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | pycryptodome 3 | -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/description.yml -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/release_files/authentification-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/release_files/authentification-2.zip -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/release_files/template_authentification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/release_files/template_authentification.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/Dockerfile -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/.zip -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/app.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/crypto.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/__init__.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/gcm.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/gcm/utils.py -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/static/favicon.png -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/static/fonts/ma-police.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/static/fonts/ma-police.woff2 -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/static/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/static/logo.jpeg -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/static/style.css -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/admin.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/base.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/index.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/login.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/register.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/too_many_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Authentification-2/server_files/authentification-2/templates/too_many_users.html -------------------------------------------------------------------------------- /BreizhCTF2025_Authentification-2/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | pycryptodome 3 | -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/description.yml -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/release_files/do-you-have-good-eyes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/release_files/do-you-have-good-eyes.zip -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/server_files/Dockerfile -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/chal.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/chal.sage -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/parameters.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/parameters.sage -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/sanitize.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/sanitize.sage -------------------------------------------------------------------------------- /BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/utils.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_Do-you-have-good-eyes/server_files/do-you-have-good-eyes/utils.sage -------------------------------------------------------------------------------- /BreizhCTF2025_U-turn/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_U-turn/description.yml -------------------------------------------------------------------------------- /BreizhCTF2025_U-turn/release_files/u-turn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/BreizhCTF2025_U-turn/release_files/u-turn.zip -------------------------------------------------------------------------------- /CODEGATE2022_Dark_Arts/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2022_Dark_Arts/description.yml -------------------------------------------------------------------------------- /CODEGATE2022_Dark_Arts/release_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2022_Dark_Arts/release_files/chal.py -------------------------------------------------------------------------------- /CODEGATE2022_Dark_Arts/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2022_Dark_Arts/server_files/Dockerfile -------------------------------------------------------------------------------- /CODEGATE2022_Dark_Arts/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2022_Dark_Arts/server_files/chal.py -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/description.yml -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/release_files/chall.py -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/server_files/Dockerfile -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/server_files/src/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/server_files/src/banner.txt -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/server_files/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/server_files/src/chall.py -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/server_files/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/server_files/src/flag.txt -------------------------------------------------------------------------------- /CODEGATE2024_Greatest_Common_Multiple/server_files/src/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/CODEGATE2024_Greatest_Common_Multiple/server_files/src/secret.py -------------------------------------------------------------------------------- /DCTF2022_key_recovery/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DCTF2022_key_recovery/description.yml -------------------------------------------------------------------------------- /DCTF2022_key_recovery/release_files/key_recovery.py: -------------------------------------------------------------------------------- 1 | ../server_files/key_recovery.py -------------------------------------------------------------------------------- /DCTF2022_key_recovery/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DCTF2022_key_recovery/server_files/Dockerfile -------------------------------------------------------------------------------- /DCTF2022_key_recovery/server_files/key_recovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DCTF2022_key_recovery/server_files/key_recovery.py -------------------------------------------------------------------------------- /DCTF2022_key_recovery/server_files/key_recovery.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DCTF2022_key_recovery/server_files/key_recovery.xinetd -------------------------------------------------------------------------------- /DCTF2022_key_recovery/server_files/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DCTF2022_key_recovery/server_files/solution.py -------------------------------------------------------------------------------- /DUCTF2020_1337crypt/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2020_1337crypt/description.yml -------------------------------------------------------------------------------- /DUCTF2020_1337crypt/release_files/1337crypt.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2020_1337crypt/release_files/1337crypt.sage -------------------------------------------------------------------------------- /DUCTF2020_1337crypt/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2020_1337crypt/release_files/output.txt -------------------------------------------------------------------------------- /DUCTF2021_1337crypt-v2/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_1337crypt-v2/description.yml -------------------------------------------------------------------------------- /DUCTF2021_1337crypt-v2/release_files/1337crypt-v2.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_1337crypt-v2/release_files/1337crypt-v2.sage -------------------------------------------------------------------------------- /DUCTF2021_1337crypt-v2/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_1337crypt-v2/release_files/output.txt -------------------------------------------------------------------------------- /DUCTF2021_substitution-cipher-iii/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_substitution-cipher-iii/description.yml -------------------------------------------------------------------------------- /DUCTF2021_substitution-cipher-iii/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_substitution-cipher-iii/release_files/output.txt -------------------------------------------------------------------------------- /DUCTF2021_substitution-cipher-iii/release_files/substitution-cipher-iii.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/DUCTF2021_substitution-cipher-iii/release_files/substitution-cipher-iii.sage -------------------------------------------------------------------------------- /HITCONCTF-2023-Share/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2023-Share/description.yml -------------------------------------------------------------------------------- /HITCONCTF-2023-Share/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /HITCONCTF-2023-Share/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2023-Share/server_files/Dockerfile -------------------------------------------------------------------------------- /HITCONCTF-2023-Share/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2023-Share/server_files/server.py -------------------------------------------------------------------------------- /HITCONCTF-2024-ECLCG/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-ECLCG/description.yml -------------------------------------------------------------------------------- /HITCONCTF-2024-ECLCG/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-ECLCG/release_files/chall.py -------------------------------------------------------------------------------- /HITCONCTF-2024-ECLCG/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-ECLCG/release_files/output.txt -------------------------------------------------------------------------------- /HITCONCTF-2024-Hyper512/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-Hyper512/description.yml -------------------------------------------------------------------------------- /HITCONCTF-2024-Hyper512/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-Hyper512/release_files/chall.py -------------------------------------------------------------------------------- /HITCONCTF-2024-Hyper512/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HITCONCTF-2024-Hyper512/release_files/output.txt -------------------------------------------------------------------------------- /HTB2021_Spongebob/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HTB2021_Spongebob/description.yml -------------------------------------------------------------------------------- /HTB2021_Spongebob/release_files/spongebob.py: -------------------------------------------------------------------------------- 1 | ../server_files/spongebob.py -------------------------------------------------------------------------------- /HTB2021_Spongebob/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HTB2021_Spongebob/server_files/Dockerfile -------------------------------------------------------------------------------- /HTB2021_Spongebob/server_files/spongebob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HTB2021_Spongebob/server_files/spongebob.py -------------------------------------------------------------------------------- /HTB2021_Spongebob/server_files/spongebob.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HTB2021_Spongebob/server_files/spongebob.xinetd -------------------------------------------------------------------------------- /HackTMCTF2023-GLP420/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-GLP420/description.yml -------------------------------------------------------------------------------- /HackTMCTF2023-GLP420/release_files/server.sage: -------------------------------------------------------------------------------- 1 | ../server_files/server.sage -------------------------------------------------------------------------------- /HackTMCTF2023-GLP420/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-GLP420/server_files/Dockerfile -------------------------------------------------------------------------------- /HackTMCTF2023-GLP420/server_files/server.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-GLP420/server_files/server.sage -------------------------------------------------------------------------------- /HackTMCTF2023-GLP420/server_files/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-GLP420/server_files/xinetd -------------------------------------------------------------------------------- /HackTMCTF2023-broken-oracle/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-broken-oracle/description.yml -------------------------------------------------------------------------------- /HackTMCTF2023-broken-oracle/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /HackTMCTF2023-broken-oracle/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-broken-oracle/server_files/Dockerfile -------------------------------------------------------------------------------- /HackTMCTF2023-broken-oracle/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-broken-oracle/server_files/server.py -------------------------------------------------------------------------------- /HackTMCTF2023-broken-oracle/server_files/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-broken-oracle/server_files/xinetd -------------------------------------------------------------------------------- /HackTMCTF2023-d-phi-enc/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-d-phi-enc/description.yml -------------------------------------------------------------------------------- /HackTMCTF2023-d-phi-enc/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-d-phi-enc/release_files/chall.py -------------------------------------------------------------------------------- /HackTMCTF2023-d-phi-enc/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-d-phi-enc/release_files/output.txt -------------------------------------------------------------------------------- /HackTMCTF2023-kaitenzushi/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-kaitenzushi/description.yml -------------------------------------------------------------------------------- /HackTMCTF2023-kaitenzushi/release_files/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-kaitenzushi/release_files/chall.sage -------------------------------------------------------------------------------- /HackTMCTF2023-kaitenzushi/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-kaitenzushi/release_files/output.txt -------------------------------------------------------------------------------- /HackTMCTF2023-unrandom-DSA/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-unrandom-DSA/description.yml -------------------------------------------------------------------------------- /HackTMCTF2023-unrandom-DSA/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /HackTMCTF2023-unrandom-DSA/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-unrandom-DSA/server_files/Dockerfile -------------------------------------------------------------------------------- /HackTMCTF2023-unrandom-DSA/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-unrandom-DSA/server_files/server.py -------------------------------------------------------------------------------- /HackTMCTF2023-unrandom-DSA/server_files/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/HackTMCTF2023-unrandom-DSA/server_files/xinetd -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/.gitignore -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/description.yml -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/release_files/chal.py: -------------------------------------------------------------------------------- 1 | ../server_files/chal.py -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/release_files/magic.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/magic.xinetd -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/server_files/Dockerfile -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/server_files/chal.py -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/server_files/magic.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/server_files/magic.xinetd -------------------------------------------------------------------------------- /ICC2022_ed25519-magic/server_files/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_ed25519-magic/server_files/solution.py -------------------------------------------------------------------------------- /ICC2022_functional/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_functional/description.yml -------------------------------------------------------------------------------- /ICC2022_functional/release_files/functional.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_functional/release_files/functional.sage -------------------------------------------------------------------------------- /ICC2022_functional/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_functional/release_files/output.txt -------------------------------------------------------------------------------- /ICC2022_unbalanced/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_unbalanced/description.yml -------------------------------------------------------------------------------- /ICC2022_unbalanced/release_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_unbalanced/release_files/challenge.py -------------------------------------------------------------------------------- /ICC2022_unbalanced/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ICC2022_unbalanced/release_files/output.txt -------------------------------------------------------------------------------- /ImagianryCTF-Daily-Leet-Universe/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImagianryCTF-Daily-Leet-Universe/description.yml -------------------------------------------------------------------------------- /ImagianryCTF-Daily-Leet-Universe/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /ImagianryCTF-Daily-Leet-Universe/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImagianryCTF-Daily-Leet-Universe/server_files/Dockerfile -------------------------------------------------------------------------------- /ImagianryCTF-Daily-Leet-Universe/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImagianryCTF-Daily-Leet-Universe/server_files/server.py -------------------------------------------------------------------------------- /ImaginaryCTF2023-Sus/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImaginaryCTF2023-Sus/description.yml -------------------------------------------------------------------------------- /ImaginaryCTF2023-Sus/release_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImaginaryCTF2023-Sus/release_files/challenge.py -------------------------------------------------------------------------------- /ImaginaryCTF2023-Sus/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ImaginaryCTF2023-Sus/release_files/output.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/README.md -------------------------------------------------------------------------------- /SEETF2022_probability/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SEETF2022_probability/description.yml -------------------------------------------------------------------------------- /SEETF2022_probability/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /SEETF2022_probability/release_files/probability.py: -------------------------------------------------------------------------------- 1 | ../server_files/probability.py -------------------------------------------------------------------------------- /SEETF2022_probability/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SEETF2022_probability/server_files/Dockerfile -------------------------------------------------------------------------------- /SEETF2022_probability/server_files/probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SEETF2022_probability/server_files/probability.py -------------------------------------------------------------------------------- /SEETF2022_probability/server_files/solve.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SEETF2022_probability/server_files/solve.ipynb -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof/description.yml -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/release_files/ctf.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/release_files/source.py: -------------------------------------------------------------------------------- 1 | ../server_files/source.py -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof/server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/server_files/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof/server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof/server_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof/server_files/source.py -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof_Revenge/description.yml -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/release_files/ctf.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/release_files/source.py: -------------------------------------------------------------------------------- 1 | ../server_files/source.py -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof_Revenge/server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/server_files/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof_Revenge/server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/server_files/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof_Revenge/server_files/solve.py -------------------------------------------------------------------------------- /SekaiCTF_2022-FaILProof_Revenge/server_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-FaILProof_Revenge/server_files/source.py -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-diffecient/description.yml -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/release_files/ctf.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/release_files/source.py: -------------------------------------------------------------------------------- 1 | ../server_files/source.py -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-diffecient/server_files/Dockerfile -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/server_files/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-diffecient/server_files/ctf.xinetd -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/server_files/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-diffecient/server_files/solve.py -------------------------------------------------------------------------------- /SekaiCTF_2022-diffecient/server_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/SekaiCTF_2022-diffecient/server_files/source.py -------------------------------------------------------------------------------- /TETCTF2020_2020/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2020_2020/description.yml -------------------------------------------------------------------------------- /TETCTF2020_2020/release_files/2020.py: -------------------------------------------------------------------------------- 1 | ../server_files/2020.py -------------------------------------------------------------------------------- /TETCTF2020_2020/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /TETCTF2020_2020/server_files/2020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2020_2020/server_files/2020.py -------------------------------------------------------------------------------- /TETCTF2020_2020/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2020_2020/server_files/Dockerfile -------------------------------------------------------------------------------- /TETCTF2021_unevaluated/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unevaluated/description.yml -------------------------------------------------------------------------------- /TETCTF2021_unevaluated/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unevaluated/release_files/output.txt -------------------------------------------------------------------------------- /TETCTF2021_unevaluated/release_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unevaluated/release_files/source.py -------------------------------------------------------------------------------- /TETCTF2021_unimplemented/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unimplemented/description.yml -------------------------------------------------------------------------------- /TETCTF2021_unimplemented/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unimplemented/release_files/output.txt -------------------------------------------------------------------------------- /TETCTF2021_unimplemented/release_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TETCTF2021_unimplemented/release_files/source.py -------------------------------------------------------------------------------- /TSJCTF2022_Signature/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TSJCTF2022_Signature/description.yml -------------------------------------------------------------------------------- /TSJCTF2022_Signature/release_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TSJCTF2022_Signature/release_files/challenge.py -------------------------------------------------------------------------------- /TSJCTF2022_Signature/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/TSJCTF2022_Signature/release_files/output.txt -------------------------------------------------------------------------------- /WACON2022_RSA_Permutation/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Permutation/description.yml -------------------------------------------------------------------------------- /WACON2022_RSA_Permutation/release_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Permutation/release_files/chal.py -------------------------------------------------------------------------------- /WACON2022_RSA_Permutation/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Permutation/server_files/Dockerfile -------------------------------------------------------------------------------- /WACON2022_RSA_Permutation/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Permutation/server_files/chal.py -------------------------------------------------------------------------------- /WACON2022_RSA_Secret_Sharing/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Secret_Sharing/description.yml -------------------------------------------------------------------------------- /WACON2022_RSA_Secret_Sharing/release_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Secret_Sharing/release_files/chal.py -------------------------------------------------------------------------------- /WACON2022_RSA_Secret_Sharing/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Secret_Sharing/server_files/Dockerfile -------------------------------------------------------------------------------- /WACON2022_RSA_Secret_Sharing/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/WACON2022_RSA_Secret_Sharing/server_files/chal.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-1n_jection/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-1n_jection/description.yml -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-1n_jection/release_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-1n_jection/release_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Real_Mersenne/description.yml -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/release_files/challenge.py: -------------------------------------------------------------------------------- 1 | ../server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/release_files/real.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/real.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/real.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Real_Mersenne/server_files/real.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Twist_and_Shout/description.yml -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/release_files/challenge.py: -------------------------------------------------------------------------------- 1 | ../server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/release_files/twist.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/twist.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/twist.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-Twist_and_Shout/server_files/twist.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-chaos/description.yml -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/release_files/challenge.py: -------------------------------------------------------------------------------- 1 | ../server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/release_files/chaos.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/chaos.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-chaos/server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/server_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-chaos/server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-chaos/server_files/chaos.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-chaos/server_files/chaos.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-import_numpy_as_MT/description.yml -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/release_files/challenge.py: -------------------------------------------------------------------------------- 1 | ../server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/release_files/numpymt.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/numpymt.xinetd -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/Dockerfile -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/challenge.py -------------------------------------------------------------------------------- /Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/numpymt.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/Zh3r0_CTF_V2_2021-import_numpy_as_MT/server_files/numpymt.xinetd -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-fischlin/description.yml -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/release_files/chal.py: -------------------------------------------------------------------------------- 1 | ../server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/release_files/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-fischlin/release_files/help.html -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/release_files/params.py: -------------------------------------------------------------------------------- 1 | ../server_files/params.py -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-fischlin/server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-fischlin/server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-fischlin/server_files/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-fischlin/server_files/params.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity/description.yml -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/release_files/chal.py: -------------------------------------------------------------------------------- 1 | ../server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/release_files/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity/release_files/example.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/release_files/hamiltonicity.py: -------------------------------------------------------------------------------- 1 | ../server_files/hamiltonicity.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity/server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity/server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity/server_files/hamiltonicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity/server_files/hamiltonicity.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity2/description.yml -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/release_files/chal.py: -------------------------------------------------------------------------------- 1 | ../server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/release_files/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity2/release_files/example.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/release_files/hamiltonicity.py: -------------------------------------------------------------------------------- 1 | ../server_files/hamiltonicity.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity2/server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity2/server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-hamiltonicity2/server_files/hamiltonicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-hamiltonicity2/server_files/hamiltonicity.py -------------------------------------------------------------------------------- /ch2024-sigma-or/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-or/description.yml -------------------------------------------------------------------------------- /ch2024-sigma-or/release_files/chal.py: -------------------------------------------------------------------------------- 1 | ../server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-or/release_files/params.py: -------------------------------------------------------------------------------- 1 | ../server_files/params.py -------------------------------------------------------------------------------- /ch2024-sigma-or/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-or/server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-sigma-or/server_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-or/server_files/chal.py -------------------------------------------------------------------------------- /ch2024-sigma-or/server_files/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-sigma-or/server_files/params.py -------------------------------------------------------------------------------- /ch2024-ticket-maestro/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/description.yml -------------------------------------------------------------------------------- /ch2024-ticket-maestro/release_files/Cargo.toml: -------------------------------------------------------------------------------- 1 | ../server_files/Cargo.toml -------------------------------------------------------------------------------- /ch2024-ticket-maestro/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-ticket-maestro/release_files/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/release_files/example.py -------------------------------------------------------------------------------- /ch2024-ticket-maestro/release_files/maestro.rs: -------------------------------------------------------------------------------- 1 | ../server_files/maestro.rs -------------------------------------------------------------------------------- /ch2024-ticket-maestro/release_files/main.rs: -------------------------------------------------------------------------------- 1 | ../server_files/main.rs -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/server_files/Cargo.lock -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/server_files/Cargo.toml -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/server_files/Dockerfile -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/maestro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/server_files/maestro.rs -------------------------------------------------------------------------------- /ch2024-ticket-maestro/server_files/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ch2024-ticket-maestro/server_files/main.rs -------------------------------------------------------------------------------- /cscbe2024-additional-problems/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cscbe2024-additional-problems/description.yml -------------------------------------------------------------------------------- /cscbe2024-additional-problems/release_files/server.py: -------------------------------------------------------------------------------- 1 | ../server_files/server.py -------------------------------------------------------------------------------- /cscbe2024-additional-problems/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cscbe2024-additional-problems/server_files/Dockerfile -------------------------------------------------------------------------------- /cscbe2024-additional-problems/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | netifaces 2 | pycryptodome 3 | -------------------------------------------------------------------------------- /cscbe2024-additional-problems/server_files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cscbe2024-additional-problems/server_files/server.py -------------------------------------------------------------------------------- /cyber-apocalypse-2025-verilicious/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cyber-apocalypse-2025-verilicious/description.yml -------------------------------------------------------------------------------- /cyber-apocalypse-2025-verilicious/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cyber-apocalypse-2025-verilicious/release_files/output.txt -------------------------------------------------------------------------------- /cyber-apocalypse-2025-verilicious/release_files/pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cyber-apocalypse-2025-verilicious/release_files/pubkey.pem -------------------------------------------------------------------------------- /cyber-apocalypse-2025-verilicious/release_files/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/cyber-apocalypse-2025-verilicious/release_files/source.py -------------------------------------------------------------------------------- /docker_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/docker_deploy.py -------------------------------------------------------------------------------- /ecsc2023-RRSSAA/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-RRSSAA/description.yml -------------------------------------------------------------------------------- /ecsc2023-RRSSAA/release_files/RRSSAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-RRSSAA/release_files/RRSSAA.py -------------------------------------------------------------------------------- /ecsc2023-RRSSAA/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-RRSSAA/release_files/output.txt -------------------------------------------------------------------------------- /ecsc2023-blind/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-blind/description.yml -------------------------------------------------------------------------------- /ecsc2023-blind/release_files/blind.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-blind/release_files/blind.sage -------------------------------------------------------------------------------- /ecsc2023-blind/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-blind/release_files/output.txt -------------------------------------------------------------------------------- /ecsc2023-hide-and-seek/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-hide-and-seek/description.yml -------------------------------------------------------------------------------- /ecsc2023-hide-and-seek/release_files/hide_and_seek.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-hide-and-seek/release_files/hide_and_seek.sage -------------------------------------------------------------------------------- /ecsc2023-hide-and-seek/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-hide-and-seek/release_files/output.txt -------------------------------------------------------------------------------- /ecsc2023-irish-flan/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-irish-flan/description.yml -------------------------------------------------------------------------------- /ecsc2023-irish-flan/release_files/irish_flan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-irish-flan/release_files/irish_flan.py -------------------------------------------------------------------------------- /ecsc2023-irish-flan/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-irish-flan/release_files/output.txt -------------------------------------------------------------------------------- /ecsc2023-put-a-ring-on-it/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-put-a-ring-on-it/description.yml -------------------------------------------------------------------------------- /ecsc2023-put-a-ring-on-it/release_files/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-put-a-ring-on-it/release_files/chal.py -------------------------------------------------------------------------------- /ecsc2023-put-a-ring-on-it/release_files/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-put-a-ring-on-it/release_files/data.json -------------------------------------------------------------------------------- /ecsc2023-put-a-ring-on-it/release_files/ed25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-put-a-ring-on-it/release_files/ed25519.py -------------------------------------------------------------------------------- /ecsc2023-tough-decisions/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-tough-decisions/description.yml -------------------------------------------------------------------------------- /ecsc2023-tough-decisions/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-tough-decisions/release_files/output.txt -------------------------------------------------------------------------------- /ecsc2023-tough-decisions/release_files/tough_decisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-tough-decisions/release_files/tough_decisions.py -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-twist-and-shout/description.yml -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/release_files/Dockerfile: -------------------------------------------------------------------------------- 1 | ../server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/release_files/twist_and_shout.py: -------------------------------------------------------------------------------- 1 | ../server_files/twist_and_shout.py -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/release_files/twist_and_shout.xinetd: -------------------------------------------------------------------------------- 1 | ../server_files/twist_and_shout.xinetd -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-twist-and-shout/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/server_files/twist_and_shout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-twist-and-shout/server_files/twist_and_shout.py -------------------------------------------------------------------------------- /ecsc2023-twist-and-shout/server_files/twist_and_shout.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2023-twist-and-shout/server_files/twist_and_shout.xinetd -------------------------------------------------------------------------------- /ecsc2024-OffTopic/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-OffTopic/description.yml -------------------------------------------------------------------------------- /ecsc2024-OffTopic/release_files/offtopic.py: -------------------------------------------------------------------------------- 1 | ../server_files/chall.py -------------------------------------------------------------------------------- /ecsc2024-OffTopic/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-OffTopic/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2024-OffTopic/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-OffTopic/server_files/chall.py -------------------------------------------------------------------------------- /ecsc2024-OffTopic/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.20.0 -------------------------------------------------------------------------------- /ecsc2024-One-Round-Crypto/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-One-Round-Crypto/description.yml -------------------------------------------------------------------------------- /ecsc2024-One-Round-Crypto/release_files/one_round_crypto.py: -------------------------------------------------------------------------------- 1 | ../server_files/chall.py -------------------------------------------------------------------------------- /ecsc2024-One-Round-Crypto/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-One-Round-Crypto/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2024-One-Round-Crypto/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-One-Round-Crypto/server_files/chall.py -------------------------------------------------------------------------------- /ecsc2024-One-Round-Crypto/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.20.0 -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Quo-vadis/description.yml -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/release_files/quo_vadis.sage: -------------------------------------------------------------------------------- 1 | ../server_files/chall.sage -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Quo-vadis/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/server_files/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Quo-vadis/server_files/chall.sage -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | -------------------------------------------------------------------------------- /ecsc2024-Quo-vadis/server_files/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Quo-vadis/server_files/start.sh -------------------------------------------------------------------------------- /ecsc2024-RSATogether/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-RSATogether/description.yml -------------------------------------------------------------------------------- /ecsc2024-RSATogether/release_files/rsatogether.sage: -------------------------------------------------------------------------------- 1 | ../server_files/rsatogether.sage -------------------------------------------------------------------------------- /ecsc2024-RSATogether/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-RSATogether/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2024-RSATogether/server_files/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.17 -------------------------------------------------------------------------------- /ecsc2024-RSATogether/server_files/rsatogether.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-RSATogether/server_files/rsatogether.sage -------------------------------------------------------------------------------- /ecsc2024-RSATogether/server_files/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-RSATogether/server_files/start.sh -------------------------------------------------------------------------------- /ecsc2024-Smithing-contest/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Smithing-contest/description.yml -------------------------------------------------------------------------------- /ecsc2024-Smithing-contest/release_files/smithing.sage: -------------------------------------------------------------------------------- 1 | ../server_files/chall.sage -------------------------------------------------------------------------------- /ecsc2024-Smithing-contest/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Smithing-contest/server_files/Dockerfile -------------------------------------------------------------------------------- /ecsc2024-Smithing-contest/server_files/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Smithing-contest/server_files/chall.sage -------------------------------------------------------------------------------- /ecsc2024-Smithing-contest/server_files/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/ecsc2024-Smithing-contest/server_files/start.sh -------------------------------------------------------------------------------- /firebird2021-oofbleck/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2021-oofbleck/description.yml -------------------------------------------------------------------------------- /firebird2021-oofbleck/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2021-oofbleck/release_files/chall.py -------------------------------------------------------------------------------- /firebird2021-oofbleck/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2021-oofbleck/release_files/output.txt -------------------------------------------------------------------------------- /firebird2021-oofbleck/release_files/secret.py: -------------------------------------------------------------------------------- 1 | flag = 'firebird{**REDACTED**}' -------------------------------------------------------------------------------- /firebird2022-authenticator/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-authenticator/description.yml -------------------------------------------------------------------------------- /firebird2022-authenticator/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-authenticator/release_files/chall.py -------------------------------------------------------------------------------- /firebird2022-authenticator/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-authenticator/server_files/Dockerfile -------------------------------------------------------------------------------- /firebird2022-authenticator/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-authenticator/server_files/chall.py -------------------------------------------------------------------------------- /firebird2022-collider/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-collider/description.yml -------------------------------------------------------------------------------- /firebird2022-collider/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-collider/release_files/chall.py -------------------------------------------------------------------------------- /firebird2022-collider/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-collider/server_files/Dockerfile -------------------------------------------------------------------------------- /firebird2022-collider/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-collider/server_files/chall.py -------------------------------------------------------------------------------- /firebird2022-lack-of-entropy/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-lack-of-entropy/description.yml -------------------------------------------------------------------------------- /firebird2022-lack-of-entropy/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-lack-of-entropy/release_files/chall.py -------------------------------------------------------------------------------- /firebird2022-lack-of-entropy/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/firebird2022-lack-of-entropy/release_files/output.txt -------------------------------------------------------------------------------- /googlectf2022-maybe-someday/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/googlectf2022-maybe-someday/description.yml -------------------------------------------------------------------------------- /googlectf2022-maybe-someday/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/googlectf2022-maybe-someday/release_files/chall.py -------------------------------------------------------------------------------- /googlectf2022-maybe-someday/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/googlectf2022-maybe-someday/server_files/Dockerfile -------------------------------------------------------------------------------- /googlectf2022-maybe-someday/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/googlectf2022-maybe-someday/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2020-calm-down/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-calm-down/description.yml -------------------------------------------------------------------------------- /hkcert2020-calm-down/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-calm-down/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2020-calm-down/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-calm-down/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2020-calm-down/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-calm-down/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2020-calm-down/server_files/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-calm-down/server_files/secret.py -------------------------------------------------------------------------------- /hkcert2020-sign-in-please/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-sign-in-please/description.yml -------------------------------------------------------------------------------- /hkcert2020-sign-in-please/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-sign-in-please/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2020-sign-in-please/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-sign-in-please/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2020-sign-in-please/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2020-sign-in-please/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2020-sign-in-please/server_files/secret.py: -------------------------------------------------------------------------------- 1 | flag = 'hkcert20{d0_y0u_feel_s3cur3_wh3n_s19nin9_in?}' -------------------------------------------------------------------------------- /hkcert2021-a-joke-cipher/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-a-joke-cipher/description.yml -------------------------------------------------------------------------------- /hkcert2021-a-joke-cipher/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-a-joke-cipher/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-a-joke-cipher/release_files/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-a-joke-cipher/release_files/output.txt -------------------------------------------------------------------------------- /hkcert2021-freedom/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-freedom/description.yml -------------------------------------------------------------------------------- /hkcert2021-freedom/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-freedom/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-freedom/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-freedom/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2021-freedom/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-freedom/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-1/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-1/description.yml -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-1/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-1/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-1/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-1/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-1/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-1/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-2/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-2/description.yml -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-2/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-2/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-key-backup-service-2/release_files/transcript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-key-backup-service-2/release_files/transcript.zip -------------------------------------------------------------------------------- /hkcert2021-sign-in-please-again/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sign-in-please-again/description.yml -------------------------------------------------------------------------------- /hkcert2021-sign-in-please-again/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sign-in-please-again/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-sign-in-please-again/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sign-in-please-again/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2021-sign-in-please-again/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sign-in-please-again/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/description.yml -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/release_files/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/release_files/aes.py -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/release_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/release_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/server_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/server_files/Dockerfile -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/server_files/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/server_files/aes.py -------------------------------------------------------------------------------- /hkcert2021-sratslla-sea/server_files/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-sratslla-sea/server_files/chall.py -------------------------------------------------------------------------------- /hkcert2021-tenet-the-plagarism/description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-tenet-the-plagarism/description.yml -------------------------------------------------------------------------------- /hkcert2021-tenet-the-plagarism/release_files/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptohack/ctf_archive/HEAD/hkcert2021-tenet-the-plagarism/release_files/challenge.py --------------------------------------------------------------------------------