├── .gitignore ├── AIS3 EOF 2023 └── koh-jeopardy │ ├── NotLFSR │ ├── chall.py │ ├── chall.tar.gz │ ├── flag.txt │ ├── output.txt │ └── solve.py │ ├── magicRSA │ ├── chall.py │ ├── chall.tar.gz │ ├── output.txt │ ├── secret.py │ └── solve.py │ ├── neo_rsa │ ├── chall.py │ ├── chall.tar.gz │ ├── output.txt │ ├── secret.py │ └── solve.sage │ ├── onelinecrypto │ ├── Dockerfile │ ├── chall.tar.gz │ ├── docker-compose.yml │ ├── server.py │ └── solve.py │ └── shamiko_no_fukushuu │ ├── Dockerfile │ ├── chall.tar.gz │ ├── docker-compose.yml │ ├── server.py │ ├── solve.py │ └── test.py ├── AIS3 EOF 2024 ├── Baby ECDLP │ ├── README.md │ ├── chall.py │ ├── output.py │ ├── secret.py │ └── solve.py ├── Baby Side Channel Attack │ ├── README.md │ ├── chall.py │ ├── solve.py │ └── trace.txt.gz ├── Baby XOR │ ├── README.md │ ├── chall.py │ ├── full_solve.py │ ├── output.txt │ └── solve.py └── Internal │ ├── README.md │ └── service │ ├── Dockerfile │ ├── docker-compose.yml │ ├── flag.txt │ ├── flagstego.py │ ├── instancer.py │ └── share │ ├── default.conf │ └── server.py ├── AIS3 EOF 2025 ├── prsa │ ├── README.md │ ├── solve.py │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── server.py └── zkdlp │ ├── README.md │ ├── solve.py │ └── src │ ├── Dockerfile │ ├── docker-compose.yml │ └── server.py ├── AIS3 Pre-exam 2022 ├── B64DLE │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ └── solve.py ├── Fast Cipher │ ├── README.md │ ├── chall.tar.gz │ └── fast.png ├── Flag Checker │ ├── README.md │ ├── flag_checker │ └── src │ │ ├── build.sh │ │ ├── main.cpp │ │ ├── obfuscate.h │ │ └── test.py ├── JeetQode │ ├── README.md │ ├── chall.tar.gz │ └── deploy.tar.gz ├── Private Browsing │ ├── README.md │ ├── deploy.tar.gz │ └── exp │ │ ├── exp.py │ │ └── gen.php ├── Really Strange orAcle │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ └── solve.py ├── SAAS │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ └── solve.py ├── SC │ ├── README.md │ └── chall.tar.gz ├── UTF-8 Editor │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ └── solve.py ├── pekobot │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ ├── find_curves.sage │ └── solve.sage ├── pettan │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ ├── manachan.png │ └── solve.py └── shamiko │ ├── README.md │ ├── chall.tar.gz │ ├── deploy.tar.gz │ ├── shamiko.png │ └── solve.py ├── AIS3 Pre-exam 2023 ├── ECC │ ├── README.md │ ├── ecc.tar.gz │ └── solve.py ├── Gitly │ ├── README.md │ └── gitly_dist.tar.gz ├── Media Server │ ├── README.md │ ├── media_server_dist.tar.gz │ └── solve.py ├── Not Wiener │ ├── README.md │ ├── not_wiener.tar.gz │ ├── output.txt │ └── solve.sage └── Password Generator │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── libc.so.6 │ ├── solve.py │ └── src │ ├── Makefile │ ├── chall │ └── chall.c ├── ASIS CTF Finals 2024 └── LiveMD │ ├── README.md │ ├── dist │ ├── .gitignore │ ├── .prettierrc │ ├── bot │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bot.js │ │ ├── package.json │ │ ├── turnstile.js │ │ └── yarn.lock │ ├── chrome.json │ ├── compose.yaml │ └── web │ │ ├── Dockerfile │ │ ├── app.vue │ │ ├── components │ │ └── markdown.vue │ │ ├── error.vue │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── pages │ │ ├── index.client.vue │ │ └── print.server.vue │ │ ├── purify.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── exp.html ├── AlpacaHack Round 9 └── ffmac │ ├── README.md │ ├── server.py │ ├── solve.py │ └── solve2.py ├── HITCON CTF 2022 ├── BabySSS │ ├── README.md │ ├── chall.py │ ├── output.txt │ └── solve.py ├── Chimera │ ├── README.md │ ├── chall.sage │ ├── output.txt │ └── solve.sage ├── LemMinX │ ├── Dockerfile │ ├── README.md │ └── exp │ │ ├── hello.xml │ │ ├── init.json │ │ ├── init2.json │ │ ├── solve_part1.py │ │ ├── solve_part2.py │ │ └── xxe.xsd ├── Secure Paste │ ├── README.md │ ├── chall │ │ ├── README.md │ │ ├── app │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── package.json │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ └── simple.css │ │ │ │ ├── js │ │ │ │ │ ├── crypto.js │ │ │ │ │ ├── fputils.js │ │ │ │ │ ├── jsonplus.js │ │ │ │ │ └── utils.js │ │ │ │ └── lib │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ ├── marked.min.js │ │ │ │ │ └── purify.min.js │ │ │ ├── utils.js │ │ │ ├── views │ │ │ │ ├── index.ejs │ │ │ │ └── paste.ejs │ │ │ └── yarn.lock │ │ ├── bot │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── bot.js │ │ │ ├── package.json │ │ │ ├── secret.md │ │ │ └── yarn.lock │ │ ├── bot_web │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── hcaptcha.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ └── docker-compose.yml │ ├── exp │ │ ├── exp.html │ │ └── expserver.py │ └── secure_paste-e0e88febf2e29de3b65338ea169d812577c08d40.tar.gz └── Superprime │ ├── README.md │ ├── chall.py │ ├── output.txt │ └── solve.py ├── HITCON CTF 2023 ├── Canvas │ ├── README.md │ ├── dist │ │ ├── .prettierrc │ │ ├── bot │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── bot.js │ │ │ ├── package.json │ │ │ ├── turnstile.js │ │ │ └── yarn.lock │ │ ├── chrome.json │ │ ├── docker-compose.yml │ │ ├── nginx │ │ │ └── default.conf │ │ └── web │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── style.css │ │ │ └── worker.js │ ├── exp │ │ ├── exp.html │ │ └── exp2.html │ └── flag.txt ├── Collision │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── run.sh │ │ └── server.py │ ├── flag.txt │ └── solve │ │ ├── collide_lambda.cpp │ │ ├── gen_tbl.c │ │ └── solve.py ├── EZRSA │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── server.py │ ├── flag.txt │ ├── neobeo_alt_solution.png │ └── solve.py ├── Echo │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── server.py │ ├── flag.txt │ └── solve │ │ ├── do_precompute.sage │ │ ├── precomputed.sobj │ │ └── solve.sage ├── Harmony │ ├── README.md │ ├── dist │ │ ├── README.md │ │ ├── bot │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── readflag.c │ │ │ └── run.sh │ │ ├── client │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── README.md │ │ │ ├── electron-builder.json5 │ │ │ ├── electron │ │ │ │ ├── config.ts │ │ │ │ ├── electron-env.d.ts │ │ │ │ ├── main.ts │ │ │ │ └── preload.ts │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── electron-vite.animate.svg │ │ │ │ ├── electron-vite.svg │ │ │ │ ├── prompt.html │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ │ └── vue.svg │ │ │ │ ├── common.ts │ │ │ │ ├── components │ │ │ │ │ ├── Chat.vue │ │ │ │ │ ├── FileMessage.vue │ │ │ │ │ ├── LoginForm.vue │ │ │ │ │ ├── Message.vue │ │ │ │ │ └── TextMessage.vue │ │ │ │ ├── config.ts │ │ │ │ ├── dompurify.ts │ │ │ │ ├── main.ts │ │ │ │ ├── style.css │ │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ ├── vite.config.ts │ │ │ └── yarn.lock │ │ ├── docker-compose.yml │ │ ├── server │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ └── spawner │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── update.sh │ │ │ └── www │ │ │ ├── app.js │ │ │ ├── package.json │ │ │ ├── run.sh │ │ │ ├── turnstile.js │ │ │ └── yarn.lock │ ├── exp │ │ ├── index.js │ │ ├── package.json │ │ └── yarn.lock │ └── flag.txt ├── Lisp.js │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── readflag.c │ │ └── src │ │ │ ├── main.js │ │ │ ├── parser.js │ │ │ ├── run.sh │ │ │ ├── runtime.js │ │ │ └── tokenizer.js │ ├── exp.lisp │ └── flag.txt ├── Login System │ ├── README.md │ ├── dist │ │ ├── docker-compose.yml │ │ ├── spawner │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── update.sh │ │ │ └── www │ │ │ │ ├── app.js │ │ │ │ ├── package.json │ │ │ │ ├── run.sh │ │ │ │ ├── turnstile.js │ │ │ │ └── yarn.lock │ │ └── web │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ ├── package.json │ │ │ ├── readflag.c │ │ │ ├── run.sh │ │ │ ├── src │ │ │ ├── app.js │ │ │ ├── login_sys.nim │ │ │ ├── privilege │ │ │ │ ├── admin.yaml │ │ │ │ ├── guest.yaml │ │ │ │ └── user.yaml │ │ │ ├── public │ │ │ │ ├── json-form.js │ │ │ │ └── simple.css │ │ │ └── views │ │ │ │ ├── index.ejs │ │ │ │ ├── login.ejs │ │ │ │ ├── nav.ejs │ │ │ │ ├── profile.ejs │ │ │ │ └── register.ejs │ │ │ └── yarn.lock │ ├── flag.txt │ └── solve.py ├── Random Shuffling Algorithm │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ ├── flag.txt │ └── solve.py └── Share │ ├── README.md │ ├── dist │ ├── Dockerfile │ ├── docker-compose.yml │ └── server.py │ ├── flag.txt │ └── solve.py ├── HITCON CTF 2024 ├── BrokenShare │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ └── solution │ │ ├── output.py │ │ └── solve.py ├── ECLCG │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ └── solution │ │ ├── chall.py │ │ ├── output.py │ │ ├── solve.py │ │ ├── solve2.py │ │ ├── solve3.py │ │ └── solve_lance_roy.sage ├── Flag Reader │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── server.py │ └── solution │ │ ├── exp.py │ │ ├── exp.tar │ │ └── server.py ├── Hyper512 │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ └── solution │ │ ├── chall.py │ │ ├── lwpm.sage │ │ ├── output.txt │ │ └── solve.py ├── MatProd │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.sobj │ └── solution │ │ ├── chall.py │ │ ├── output.sobj │ │ ├── solve.py │ │ ├── solve_alternting.py │ │ └── solve_direct.py ├── Private Browsing+ │ ├── README.md │ ├── dist │ │ ├── bot │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── bot.js │ │ │ ├── package.json │ │ │ ├── turnstile.js │ │ │ └── yarn.lock │ │ ├── chrome.json │ │ ├── docker-compose.yml │ │ └── web │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── note.js │ │ │ ├── purify.js │ │ │ ├── start.sh │ │ │ ├── viewer.html │ │ │ └── viewer.js │ └── solution │ │ └── solve.js ├── RClonE │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── bot │ │ │ ├── Dockerfile │ │ │ ├── app.js │ │ │ ├── bot.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── chrome.json │ │ └── docker-compose.yml │ └── solution │ │ ├── delay.php │ │ └── solve.html ├── Truth of NPM │ ├── README.md │ ├── dist │ │ ├── .prettierrc │ │ ├── Dockerfile │ │ ├── deno.json │ │ ├── deno.lock │ │ ├── docker-compose.yml │ │ ├── main.ts │ │ ├── pages │ │ │ ├── index.tsx │ │ │ ├── page.tsx │ │ │ └── query.tsx │ │ ├── start.sh │ │ └── utils.ts │ └── solution │ │ ├── exp.js │ │ └── exppkg │ │ ├── exp�.tsx │ │ ├── index.js │ │ └── package.json └── ZKPoF │ ├── README.md │ ├── dist │ ├── Dockerfile │ ├── docker-compose.yml │ └── server.py │ └── solution │ └── solve.py ├── HITCON CTF 2025 ├── BabyLWE │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ ├── exp │ │ ├── output.py │ │ └── solve.py │ └── src │ │ ├── chall.py │ │ ├── flag.txt │ │ └── output.txt ├── MRSA │ ├── README.md │ ├── dist │ │ ├── chall.py │ │ └── output.txt │ ├── exp │ │ ├── output.py │ │ └── solve.py │ └── src │ │ ├── chall.py │ │ ├── flag.txt │ │ └── output.txt ├── Paranoid │ ├── README.md │ ├── dist │ │ ├── README.md │ │ └── server.py.age │ ├── exp │ │ ├── server.py │ │ ├── solution_with_z.txt.gz │ │ ├── solve.py │ │ └── solver │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── sol_util.go │ └── src │ │ ├── Dockerfile │ │ ├── flag.txt │ │ └── server.py ├── Pedantic │ ├── README.md │ ├── dist │ │ └── server.py │ ├── exp │ │ ├── server.py │ │ └── solve.py │ └── src │ │ ├── Dockerfile │ │ ├── flag.txt │ │ └── server.py └── wp-admin │ ├── README.md │ ├── dist │ ├── Dockerfile │ ├── docker-compose.yml │ ├── install.php │ ├── readflag │ └── setup-wordpress │ ├── exp │ └── solve.py │ ├── imgs │ └── edit-slug.png │ └── src │ ├── Dockerfile │ ├── docker-compose.yml │ ├── install.php │ ├── readflag │ ├── readflag.s │ └── setup-wordpress ├── ImaginaryCTF 2023 ├── Get and set │ ├── Dockerfile │ ├── README.md │ ├── flag.txt │ ├── nsjail.cfg │ ├── payload.txt │ └── server.py ├── Imaginary Casino │ ├── Dockerfile │ ├── README.md │ ├── csidh-latest.tar.xz │ ├── flag.txt │ ├── server.py │ └── solve.py ├── Login │ ├── Dockerfile │ ├── README.md │ ├── flag.txt │ ├── index.php │ ├── init.php │ └── solve.php ├── Sanitized Revenge │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── flag.txt │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ └── static │ │ │ │ ├── index.xhtml │ │ │ │ ├── main.js │ │ │ │ ├── purify.min.js │ │ │ │ ├── report.js │ │ │ │ └── simple.css │ │ └── yarn.lock │ └── solve.js ├── Sanitized │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── flag.txt │ │ ├── package.json │ │ ├── src │ │ │ ├── app.js │ │ │ └── static │ │ │ │ ├── index.xhtml │ │ │ │ ├── main.js │ │ │ │ ├── purify.min.js │ │ │ │ ├── report.js │ │ │ │ └── simple.css │ │ └── yarn.lock │ └── solve.js ├── Sus │ ├── README.md │ ├── challenge.py │ ├── flag.txt │ ├── output.txt │ └── solve.sage ├── Tan │ ├── README.md │ ├── flag.txt │ ├── solve.sage │ └── tan.sage ├── Typechecker │ ├── README.md │ ├── solve.sage │ ├── source.ts │ ├── transform.js │ └── ts.ts └── Wasteful │ ├── README.md │ ├── chall.py │ ├── flag.txt │ ├── output.txt │ └── solve.sage ├── ImaginaryCTF 2024 ├── calc │ ├── Dockerfile │ ├── README.md │ ├── exp.py │ ├── flag.txt │ └── server.py ├── coast │ ├── README.md │ ├── chall.sage │ ├── flag.txt │ ├── output.py │ ├── output.txt │ └── solve.sage ├── lf3r │ ├── README.md │ ├── chall.py │ ├── output.py │ ├── output.txt │ └── solve.py ├── notitle │ ├── README.md │ ├── chall.py │ ├── flag.txt │ ├── output.py │ ├── output.txt │ └── solve.py ├── pacap │ ├── README.md │ ├── chall.sage │ ├── flag.py │ ├── output.txt │ └── solve.sage ├── readme │ ├── README.md │ └── dist │ │ ├── Dockerfile │ │ ├── default.conf │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── public │ │ └── index.html │ │ ├── src │ │ └── app.js │ │ ├── start.sh │ │ └── yarn.lock ├── readme2 │ ├── README.md │ └── dist │ │ ├── Dockerfile │ │ └── app.js └── vokram │ ├── README.md │ ├── check_flag.vokram │ ├── gen.py │ ├── solve.py │ └── vm.py ├── ImaginaryCTF ├── Minimal │ ├── README.md │ ├── solve.py │ ├── src │ │ ├── Makefile │ │ └── vuln.S │ └── vuln ├── Really Simple Algorithm │ ├── README.md │ ├── chal.py │ ├── output.txt │ └── solve.sage ├── Round 26 │ ├── box │ │ ├── README.md │ │ ├── challenge.py │ │ ├── flag.txt │ │ └── solve.py │ ├── first_rsa │ │ ├── README.md │ │ ├── __pycache__ │ │ │ ├── secret.cpython-310.pyc │ │ │ └── secret.cpython-38.pyc │ │ ├── chall.py │ │ ├── extra │ │ │ ├── binsolve.py │ │ │ ├── secret.py │ │ │ └── test.py │ │ ├── output.txt │ │ └── solve.sage │ ├── freeshell │ │ ├── README.md │ │ ├── deploy.tar.gz │ │ ├── solution │ │ │ ├── Makefile │ │ │ ├── another_sol │ │ │ ├── run.c │ │ │ ├── run.so │ │ │ └── solve.py │ │ └── src │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── readflag.c │ │ │ └── shell.c │ ├── heres_some_rev_v2 │ │ ├── README.md │ │ ├── chall.pyc │ │ ├── output.txt │ │ ├── solve.py │ │ └── src │ │ │ ├── flag.txt │ │ │ └── rev.py │ ├── heres_some_rev_v3 │ │ ├── README.md │ │ ├── chall │ │ ├── solve.c │ │ ├── solve.py │ │ └── src │ │ │ ├── chall.c │ │ │ └── flag.txt │ ├── login_please │ │ ├── README.md │ │ └── src │ │ │ ├── app.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ ├── no_modulus │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.txt │ │ └── solve.sage │ ├── not_a_kernel_pwn │ │ ├── .gitignore │ │ ├── README.md │ │ ├── not_a_kernel_pwn.tar.gz │ │ └── src │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ └── run.sh │ ├── pqqp │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.txt │ │ └── solve.sage │ └── read │ │ ├── README.md │ │ ├── chall │ │ ├── solve.py │ │ └── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── chall.c │ │ └── flag.txt ├── Round 27 │ ├── baby_shell │ │ ├── README.md │ │ ├── chall │ │ └── main.cpp │ ├── haas │ │ ├── Dockerfile │ │ ├── Hello.java │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── exp.java │ │ ├── flag.txt │ │ ├── server.py │ │ └── solve.sh │ ├── mobius │ │ ├── README.md │ │ ├── checker.py │ │ ├── solve.sage │ │ ├── test.sage │ │ └── tet.py │ ├── rsa-cbc-v2 │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.txt │ │ └── solve.sage │ └── rsa-cbc │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.txt │ │ └── solve.py ├── Round 28 │ ├── Filter Master │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ └── src │ │ │ └── index.php │ ├── Half FFT │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.npy │ │ ├── solve.py │ │ ├── solve2.py │ │ └── solve3.py │ ├── Substitution │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ └── solve.py │ └── Unchanged │ │ ├── README.md │ │ ├── chall │ │ └── src │ │ ├── gen.py │ │ └── main.c ├── Round 29 │ ├── Generic Flag Checker │ │ ├── README.md │ │ ├── chall │ │ ├── solve.py │ │ └── src │ │ │ ├── gen.py │ │ │ └── main.c │ ├── Req Bin │ │ ├── README.md │ │ ├── deploy.tar.gz │ │ └── exp.py │ ├── Strong Prime │ │ ├── README.md │ │ ├── solve.sage │ │ └── src │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ └── server.py │ ├── Web3 │ │ ├── README.md │ │ ├── solve.py │ │ └── solve2.py │ └── xkcd 835 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── chall.tar.gz │ │ ├── dockerup.sh │ │ ├── main │ │ ├── solve.py │ │ └── src │ │ ├── flag.txt │ │ └── main.c ├── Round 30 │ ├── Easy DSA: LCG │ │ ├── README.md │ │ ├── solve.py │ │ └── src │ │ │ ├── chall.py │ │ │ ├── flag.txt │ │ │ └── output.txt │ ├── Echo │ │ ├── README.md │ │ ├── solve.py │ │ └── src │ │ │ ├── Dockerfile │ │ │ ├── api.py │ │ │ ├── app.py │ │ │ └── start.sh │ ├── Fake flags │ │ ├── README.md │ │ └── src │ │ │ ├── gen.py │ │ │ ├── index.html │ │ │ └── index.js │ └── Power RSA │ │ ├── README.md │ │ ├── solve.py │ │ └── src │ │ ├── chall.py │ │ ├── flag.txt │ │ └── output.txt ├── Round 31 │ └── KVIN │ │ ├── README.md │ │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── index.js │ │ ├── package.json │ │ └── yarn.lock ├── Round 32 │ ├── Old School │ │ ├── README.md │ │ ├── chall.tar.gz │ │ ├── solve.sh │ │ └── src │ │ │ ├── cgi-bin │ │ │ ├── getlogs │ │ │ ├── match │ │ │ └── utils │ │ │ ├── docker-compose.yml │ │ │ ├── flag │ │ │ ├── htdocs │ │ │ └── index.html │ │ │ ├── httpd.conf │ │ │ ├── readflag │ │ │ ├── readflag.c │ │ │ └── start.sh │ └── Poly RSA │ │ ├── README.md │ │ ├── chall.sage │ │ ├── flag.txt │ │ └── solve.sage ├── Round 33 │ └── Vault │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── exp │ │ └── solve.sh │ │ ├── nginx │ │ └── default.conf │ │ ├── vault.tar.gz │ │ └── web │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bot.py │ │ ├── index.html │ │ ├── server.py │ │ └── simple.min.css ├── Round 34 │ └── Integrity │ │ ├── README.md │ │ ├── chall.py │ │ └── solve.sage ├── Round 35 │ └── Encrypted Command Executor │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── flag │ │ ├── server.py │ │ └── solve.py ├── Round 37 │ └── You can't reverse me │ │ ├── README.md │ │ ├── sol │ │ ├── dump.bin │ │ ├── dump.py │ │ ├── hook.c │ │ ├── hook.so │ │ ├── memory_dump.bin │ │ ├── sol.tar.gz │ │ └── solve.py │ │ └── src │ │ ├── Dockerfile │ │ ├── checker.c │ │ ├── docker-compose.yml │ │ └── flag.txt ├── Round 39 │ └── Safe Pickle │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ └── server.py ├── Round 40 │ └── Leet Universe │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yml │ │ └── server.py ├── Round 43 │ └── Three Pieces │ │ ├── README.md │ │ ├── challenge.py │ │ └── flag.txt ├── Round 44 │ ├── FLT-1337 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docker-compose.yaml │ │ └── server.sage │ └── Flag Server │ │ ├── .env │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app.py │ │ ├── docker-compose.yml │ │ └── exp.html ├── Round 48 │ └── readme3 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app.js │ │ └── docker-compose.yml ├── Round 49 │ ├── MDLP v2 │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── solve.py │ │ └── test.py │ └── MDLP │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── solve.py │ │ └── solve2.py ├── Round 54 │ └── MLFSR │ │ ├── README.md │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── output.py │ │ ├── solve.py │ │ ├── solve_140.py │ │ └── solve_lyndon.py └── Round 55 │ └── MagicHash │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── server.py │ └── solve.py ├── README.md ├── Security BSides Ahmedabad CTF 2022 └── A complex number │ ├── README.md │ ├── chall.sage │ ├── output.txt │ └── solve.sage └── TSJ CTF 2022 ├── Cipher Switching Service ├── README.md ├── challenge.py └── deploy.tar.gz ├── Futago ├── README.md └── chall │ ├── README.md │ ├── stage1 │ ├── flag.txt.key1.enc │ ├── flag.txt.key2.enc │ ├── key1.pub │ └── key2.pub │ ├── stage2 │ ├── flag.txt.key1.enc │ ├── flag.txt.key2.enc │ ├── key1.pub │ └── key2.pub │ └── stage3 │ ├── flag.txt.key1.enc │ ├── flag.txt.key2.enc │ ├── key1.pub │ └── key2.pub ├── Genie ├── README.md ├── chall.tar.gz └── deploy.tar.gz ├── Just a pyjail ├── README.md ├── challenge.py ├── deploy.tar.gz └── sol │ ├── payload.py │ └── solve.py ├── Nim Notes ├── README.md ├── chall.tar.gz ├── chall │ ├── bot │ │ ├── Dockerfile │ │ ├── bot.js │ │ └── package.json │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ ├── app.nim │ │ ├── default.conf │ │ ├── public │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── app.js │ │ │ ├── marked.min.js │ │ │ └── purify.min.js │ │ ├── start.sh │ │ └── templates │ │ ├── error.html │ │ ├── index.html │ │ └── login.html └── exp.py ├── RNG+++ ├── README.md └── chall │ ├── challenge.py │ └── output.txt ├── RNG++ ├── README.md └── chall │ ├── challenge.py │ └── output.txt ├── Signature ├── README.md └── chall │ ├── challenge.py │ └── output.txt ├── Top Secret ├── README.md └── chall │ ├── challenge.py │ └── flag.png.enc └── babyRSA ├── README.md ├── chall ├── challenge.sage └── output.txt └── meme.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.sage.py 2 | *.pyc 3 | -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/NotLFSR/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/NotLFSR/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/NotLFSR/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/NotLFSR/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/NotLFSR/flag.txt: -------------------------------------------------------------------------------- 1 | EOF{affine_is_bascially_linear} 2 | -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/NotLFSR/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/NotLFSR/output.txt -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/NotLFSR/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/NotLFSR/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/magicRSA/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/magicRSA/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/magicRSA/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/magicRSA/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/magicRSA/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/magicRSA/output.txt -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/magicRSA/secret.py: -------------------------------------------------------------------------------- 1 | flag = b'EOF{just_some_basic_math}' 2 | -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/magicRSA/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/magicRSA/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/neo_rsa/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/neo_rsa/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/neo_rsa/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/neo_rsa/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/neo_rsa/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/neo_rsa/output.txt -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/neo_rsa/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/neo_rsa/secret.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/neo_rsa/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/neo_rsa/solve.sage -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/onelinecrypto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/onelinecrypto/Dockerfile -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/onelinecrypto/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/onelinecrypto/server.py -------------------------------------------------------------------------------- /AIS3 EOF 2023/koh-jeopardy/onelinecrypto/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2023/koh-jeopardy/onelinecrypto/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby ECDLP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby ECDLP/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby ECDLP/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby ECDLP/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby ECDLP/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby ECDLP/output.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby ECDLP/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby ECDLP/secret.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby ECDLP/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby ECDLP/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby Side Channel Attack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby Side Channel Attack/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby Side Channel Attack/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby Side Channel Attack/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby Side Channel Attack/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby Side Channel Attack/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby Side Channel Attack/trace.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby Side Channel Attack/trace.txt.gz -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby XOR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby XOR/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby XOR/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby XOR/chall.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby XOR/full_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby XOR/full_solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby XOR/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby XOR/output.txt -------------------------------------------------------------------------------- /AIS3 EOF 2024/Baby XOR/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Baby XOR/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/Dockerfile -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/docker-compose.yml -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/flag.txt: -------------------------------------------------------------------------------- 1 | test_flag 2 | -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/flagstego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/flagstego.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/instancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/instancer.py -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/share/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/share/default.conf -------------------------------------------------------------------------------- /AIS3 EOF 2024/Internal/service/share/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2024/Internal/service/share/server.py -------------------------------------------------------------------------------- /AIS3 EOF 2025/prsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/prsa/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2025/prsa/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/prsa/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2025/prsa/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/prsa/src/Dockerfile -------------------------------------------------------------------------------- /AIS3 EOF 2025/prsa/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/prsa/src/docker-compose.yml -------------------------------------------------------------------------------- /AIS3 EOF 2025/prsa/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/prsa/src/server.py -------------------------------------------------------------------------------- /AIS3 EOF 2025/zkdlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/zkdlp/README.md -------------------------------------------------------------------------------- /AIS3 EOF 2025/zkdlp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/zkdlp/solve.py -------------------------------------------------------------------------------- /AIS3 EOF 2025/zkdlp/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/zkdlp/src/Dockerfile -------------------------------------------------------------------------------- /AIS3 EOF 2025/zkdlp/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/zkdlp/src/docker-compose.yml -------------------------------------------------------------------------------- /AIS3 EOF 2025/zkdlp/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 EOF 2025/zkdlp/src/server.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/B64DLE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/B64DLE/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/B64DLE/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/B64DLE/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/B64DLE/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/B64DLE/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/B64DLE/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/B64DLE/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Fast Cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Fast Cipher/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Fast Cipher/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Fast Cipher/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Fast Cipher/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Fast Cipher/fast.png -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/flag_checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/flag_checker -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/src/build.sh -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/src/main.cpp -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/src/obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/src/obfuscate.h -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Flag Checker/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Flag Checker/src/test.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/JeetQode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/JeetQode/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/JeetQode/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/JeetQode/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/JeetQode/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/JeetQode/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Private Browsing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Private Browsing/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Private Browsing/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Private Browsing/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Private Browsing/exp/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Private Browsing/exp/exp.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Private Browsing/exp/gen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Private Browsing/exp/gen.php -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Really Strange orAcle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Really Strange orAcle/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/Really Strange orAcle/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/Really Strange orAcle/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SAAS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SAAS/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SAAS/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SAAS/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SAAS/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SAAS/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SAAS/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SAAS/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SC/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/SC/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/SC/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/UTF-8 Editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/UTF-8 Editor/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/UTF-8 Editor/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/UTF-8 Editor/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/UTF-8 Editor/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/UTF-8 Editor/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/UTF-8 Editor/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/UTF-8 Editor/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pekobot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pekobot/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pekobot/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pekobot/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pekobot/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pekobot/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pekobot/find_curves.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pekobot/find_curves.sage -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pekobot/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pekobot/solve.sage -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pettan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pettan/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pettan/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pettan/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pettan/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pettan/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pettan/manachan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pettan/manachan.png -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/pettan/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/pettan/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/shamiko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/shamiko/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/shamiko/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/shamiko/chall.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/shamiko/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/shamiko/deploy.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/shamiko/shamiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/shamiko/shamiko.png -------------------------------------------------------------------------------- /AIS3 Pre-exam 2022/shamiko/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2022/shamiko/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/ECC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/ECC/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/ECC/ecc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/ECC/ecc.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/ECC/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/ECC/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Gitly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Gitly/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Gitly/gitly_dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Gitly/gitly_dist.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Media Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Media Server/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Media Server/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Media Server/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Not Wiener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Not Wiener/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Not Wiener/not_wiener.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Not Wiener/not_wiener.tar.gz -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Not Wiener/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Not Wiener/output.txt -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Not Wiener/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Not Wiener/solve.sage -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/Dockerfile -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/README.md -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/flag.txt: -------------------------------------------------------------------------------- 1 | AIS3{there_is_no_randomness_after_all} 2 | -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/libc.so.6 -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/solve.py -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/src/Makefile -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/src/chall -------------------------------------------------------------------------------- /AIS3 Pre-exam 2023/Password Generator/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AIS3 Pre-exam 2023/Password Generator/src/chall.c -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/README.md -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/.gitignore -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/.prettierrc -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/Dockerfile -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/app.js -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/bot.js -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/package.json -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/turnstile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/turnstile.js -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/bot/yarn.lock -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/chrome.json -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/compose.yaml -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/Dockerfile -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/app.vue -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/error.vue -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/nuxt.config.ts -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/package.json -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/purify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/purify.ts -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/tsconfig.json -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/dist/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/dist/web/yarn.lock -------------------------------------------------------------------------------- /ASIS CTF Finals 2024/LiveMD/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ASIS CTF Finals 2024/LiveMD/exp.html -------------------------------------------------------------------------------- /AlpacaHack Round 9/ffmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AlpacaHack Round 9/ffmac/README.md -------------------------------------------------------------------------------- /AlpacaHack Round 9/ffmac/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AlpacaHack Round 9/ffmac/server.py -------------------------------------------------------------------------------- /AlpacaHack Round 9/ffmac/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AlpacaHack Round 9/ffmac/solve.py -------------------------------------------------------------------------------- /AlpacaHack Round 9/ffmac/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/AlpacaHack Round 9/ffmac/solve2.py -------------------------------------------------------------------------------- /HITCON CTF 2022/BabySSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/BabySSS/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/BabySSS/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/BabySSS/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2022/BabySSS/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/BabySSS/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2022/BabySSS/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/BabySSS/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2022/Chimera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Chimera/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/Chimera/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Chimera/chall.sage -------------------------------------------------------------------------------- /HITCON CTF 2022/Chimera/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Chimera/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2022/Chimera/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Chimera/solve.sage -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/hello.xml -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/init.json -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/init2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/init2.json -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/solve_part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/solve_part1.py -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/solve_part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/solve_part2.py -------------------------------------------------------------------------------- /HITCON CTF 2022/LemMinX/exp/xxe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/LemMinX/exp/xxe.xsd -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/app/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/app/app.js -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/app/package.json -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/app/utils.js -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/app/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/app.js -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/bot.js -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/package.json -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/secret.md -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot_web/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot_web/app.js -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/chall/bot_web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/chall/bot_web/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/exp/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/exp/exp.html -------------------------------------------------------------------------------- /HITCON CTF 2022/Secure Paste/exp/expserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Secure Paste/exp/expserver.py -------------------------------------------------------------------------------- /HITCON CTF 2022/Superprime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Superprime/README.md -------------------------------------------------------------------------------- /HITCON CTF 2022/Superprime/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Superprime/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2022/Superprime/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Superprime/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2022/Superprime/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2022/Superprime/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/.prettierrc -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/app.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/bot.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/package.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/turnstile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/turnstile.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/bot/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/chrome.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/nginx/default.conf -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/web/index.html -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/web/main.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/web/style.css -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/dist/web/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/dist/web/worker.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/exp/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/exp/exp.html -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/exp/exp2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/exp/exp2.html -------------------------------------------------------------------------------- /HITCON CTF 2023/Canvas/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Canvas/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/dist/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/dist/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{PYTHONHASHSEED_has_less_entropy_than_it_should_be} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/solve/collide_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/solve/collide_lambda.cpp -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/solve/gen_tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/solve/gen_tbl.c -------------------------------------------------------------------------------- /HITCON CTF 2023/Collision/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Collision/solve/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{the_single_catastrophic_else_branch_:(} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/neobeo_alt_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/neobeo_alt_solution.png -------------------------------------------------------------------------------- /HITCON CTF 2023/EZRSA/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/EZRSA/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/solve/do_precompute.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/solve/do_precompute.sage -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/solve/precomputed.sobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/solve/precomputed.sobj -------------------------------------------------------------------------------- /HITCON CTF 2023/Echo/solve/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Echo/solve/solve.sage -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/bot/.gitignore: -------------------------------------------------------------------------------- 1 | readflag 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/bot/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/bot/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/bot/readflag.c -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/bot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/bot/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/.editorconfig -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/.gitignore -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/.prettierrc -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/electron/main.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/index.html -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/package.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/public/vite.svg -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/App.vue -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/common.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/config.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/dompurify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/dompurify.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/main.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/src/style.css -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/tsconfig.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/vite.config.ts -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/client/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/server/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/server/app.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/server/package.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/server/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/.gitignore: -------------------------------------------------------------------------------- 1 | bot 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/spawner/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/spawner/update.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/spawner/www/app.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/www/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/spawner/www/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/dist/spawner/www/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/dist/spawner/www/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/exp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/exp/index.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/exp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/exp/package.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/exp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/exp/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Harmony/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Harmony/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/readflag.c -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/src/main.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/src/parser.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/src/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/src/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/src/runtime.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/dist/src/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/dist/src/tokenizer.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/exp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Lisp.js/exp.lisp -------------------------------------------------------------------------------- /HITCON CTF 2023/Lisp.js/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{it_is_actually_a_node.js_jail_in_disguise!!} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/spawner/.gitignore: -------------------------------------------------------------------------------- 1 | image 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/spawner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/spawner/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/spawner/update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd "$(dirname "$0")" || exit 1 3 | cp -Tr ../web ./image 4 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/spawner/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/spawner/www/app.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/spawner/www/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/spawner/www/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/.gitignore: -------------------------------------------------------------------------------- 1 | readflag 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/package.json -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/readflag.c -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/run.sh -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/src/app.js -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/dist/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/dist/web/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2023/Login System/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Login System/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Random Shuffling Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Random Shuffling Algorithm/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Random Shuffling Algorithm/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Random Shuffling Algorithm/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2023/Random Shuffling Algorithm/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Random Shuffling Algorithm/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Share/README.md -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Share/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Share/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Share/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{even_off_by_one_is_leaky_in_SSS} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2023/Share/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2023/Share/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2024/BrokenShare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/BrokenShare/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/BrokenShare/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/BrokenShare/dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/BrokenShare/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/BrokenShare/dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/BrokenShare/solution/output.py: -------------------------------------------------------------------------------- 1 | ../dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/BrokenShare/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/BrokenShare/solution/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/chall.py: -------------------------------------------------------------------------------- 1 | ../dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/output.py: -------------------------------------------------------------------------------- 1 | ../dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/solution/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/solution/solve2.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/solve3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/solution/solve3.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ECLCG/solution/solve_lance_roy.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ECLCG/solution/solve_lance_roy.sage -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/solution/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/solution/exp.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/solution/exp.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Flag Reader/solution/exp.tar -------------------------------------------------------------------------------- /HITCON CTF 2024/Flag Reader/solution/server.py: -------------------------------------------------------------------------------- 1 | ../dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Hyper512/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Hyper512/dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Hyper512/dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/solution/chall.py: -------------------------------------------------------------------------------- 1 | ../dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/solution/lwpm.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Hyper512/solution/lwpm.sage -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/solution/output.txt: -------------------------------------------------------------------------------- 1 | ../dist/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2024/Hyper512/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Hyper512/solution/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/dist/output.sobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/dist/output.sobj -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/solution/chall.py: -------------------------------------------------------------------------------- 1 | ../dist/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/solution/output.sobj: -------------------------------------------------------------------------------- 1 | ../dist/output.sobj -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/solution/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/solution/solve_alternting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/solution/solve_alternting.py -------------------------------------------------------------------------------- /HITCON CTF 2024/MatProd/solution/solve_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/MatProd/solution/solve_direct.py -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/bot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/bot/app.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/bot/bot.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/bot/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/chrome.json -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/web/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/web/app.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/web/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/web/note.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/web/purify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/web/purify.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/web/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/web/start.sh -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/dist/web/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/dist/web/viewer.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Private Browsing+/solution/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Private Browsing+/solution/solve.js -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/bot/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/bot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/bot/app.js -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/bot/bot.js -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/bot/package.json -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/bot/yarn.lock -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/chrome.json -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/solution/delay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/solution/delay.php -------------------------------------------------------------------------------- /HITCON CTF 2024/RClonE/solution/solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/RClonE/solution/solve.html -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/.prettierrc -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/deno.json -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/deno.lock -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/main.ts -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/pages/index.tsx -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/pages/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/pages/page.tsx -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/pages/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/pages/query.tsx -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/start.sh -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/dist/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/dist/utils.ts -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/solution/exp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/Truth of NPM/solution/exp.js -------------------------------------------------------------------------------- /HITCON CTF 2024/Truth of NPM/solution/exppkg/index.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World') 2 | -------------------------------------------------------------------------------- /HITCON CTF 2024/ZKPoF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ZKPoF/README.md -------------------------------------------------------------------------------- /HITCON CTF 2024/ZKPoF/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ZKPoF/dist/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2024/ZKPoF/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ZKPoF/dist/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2024/ZKPoF/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ZKPoF/dist/server.py -------------------------------------------------------------------------------- /HITCON CTF 2024/ZKPoF/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2024/ZKPoF/solution/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/BabyLWE/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/dist/chall.py: -------------------------------------------------------------------------------- 1 | ../src/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/dist/output.txt: -------------------------------------------------------------------------------- 1 | ../src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/exp/output.py: -------------------------------------------------------------------------------- 1 | ../src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/exp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/BabyLWE/exp/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/BabyLWE/src/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/src/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{why_does_not_hiding_the_set_of_errors_help_QAQ} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2025/BabyLWE/src/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/BabyLWE/src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/MRSA/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/dist/chall.py: -------------------------------------------------------------------------------- 1 | ../src/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/dist/output.txt: -------------------------------------------------------------------------------- 1 | ../src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/exp/output.py: -------------------------------------------------------------------------------- 1 | ../src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/exp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/MRSA/exp/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/MRSA/src/chall.py -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/src/flag.txt: -------------------------------------------------------------------------------- 1 | hitcon{neither_e_nor_n_matters_here_lol} 2 | -------------------------------------------------------------------------------- /HITCON CTF 2025/MRSA/src/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/MRSA/src/output.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/dist/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/dist/server.py.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/dist/server.py.age -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/server.py: -------------------------------------------------------------------------------- 1 | ../src/server.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solution_with_z.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solution_with_z.txt.gz -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solver/go.mod -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solver/go.sum -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solver/main.go -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/exp/solver/sol_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/exp/solver/sol_util.go -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/src/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/src/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/Paranoid/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Paranoid/src/server.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Pedantic/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/dist/server.py: -------------------------------------------------------------------------------- 1 | ../src/server.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/exp/server.py: -------------------------------------------------------------------------------- 1 | ../src/server.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/exp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Pedantic/exp/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Pedantic/src/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Pedantic/src/flag.txt -------------------------------------------------------------------------------- /HITCON CTF 2025/Pedantic/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/Pedantic/src/server.py -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/README.md -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/dist/Dockerfile: -------------------------------------------------------------------------------- 1 | ../src/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/dist/docker-compose.yml: -------------------------------------------------------------------------------- 1 | ../src/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/dist/install.php: -------------------------------------------------------------------------------- 1 | ../src/install.php -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/dist/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/dist/readflag -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/dist/setup-wordpress: -------------------------------------------------------------------------------- 1 | ../src/setup-wordpress -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/exp/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/exp/solve.py -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/imgs/edit-slug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/imgs/edit-slug.png -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/Dockerfile -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/docker-compose.yml -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/install.php -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/readflag -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/readflag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/readflag.s -------------------------------------------------------------------------------- /HITCON CTF 2025/wp-admin/src/setup-wordpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/HITCON CTF 2025/wp-admin/src/setup-wordpress -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Get and set/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Get and set/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{in_python_[get,set]x[attr,item]_is_all_you_need} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Get and set/nsjail.cfg -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Get and set/payload.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Get and set/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Get and set/server.py -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Imaginary Casino/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Imaginary Casino/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Imaginary Casino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Imaginary Casino/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Imaginary Casino/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{a_backdoored_rng_in_the_post_quantum_era} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Imaginary Casino/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Imaginary Casino/server.py -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Imaginary Casino/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Imaginary Casino/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Login/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Login/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{why_are_bcrypt_truncating_my_passwords?!} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Login/index.php -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Login/init.php -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Login/solve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Login/solve.php -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized Revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized Revenge/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized Revenge/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized Revenge/solve.js -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/challenge/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/challenge/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/challenge/package.json -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/challenge/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/challenge/src/app.js -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/challenge/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/challenge/yarn.lock -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sanitized/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sanitized/solve.js -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sus/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sus/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sus/challenge.py -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sus/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sus/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sus/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sus/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Sus/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Sus/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Tan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Tan/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Tan/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{can_you_break_sin_or_cos_too?} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Tan/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Tan/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Tan/tan.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Tan/tan.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Typechecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Typechecker/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Typechecker/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Typechecker/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Typechecker/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Typechecker/source.ts -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Typechecker/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Typechecker/transform.js -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Typechecker/ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Typechecker/ts.ts -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Wasteful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Wasteful/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Wasteful/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Wasteful/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Wasteful/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{just_an_obligatory_coppersmith_challenge} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Wasteful/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Wasteful/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2023/Wasteful/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2023/Wasteful/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2024/calc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/calc/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2024/calc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/calc/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/calc/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/calc/exp.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/calc/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/calc/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/calc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/calc/server.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/coast/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/coast/chall.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{just_a_very_broken_implementation_of_csidh} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/output.py: -------------------------------------------------------------------------------- 1 | output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/coast/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/coast/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/coast/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2024/lf3r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/lf3r/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/lf3r/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/lf3r/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/lf3r/output.py: -------------------------------------------------------------------------------- 1 | output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/lf3r/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/lf3r/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/lf3r/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/lf3r/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/notitle/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/notitle/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/notitle/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/output.py: -------------------------------------------------------------------------------- 1 | output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/notitle/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/notitle/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/notitle/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/pacap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/pacap/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/pacap/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/pacap/chall.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2024/pacap/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/pacap/flag.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/pacap/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/pacap/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF 2024/pacap/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/pacap/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/default.conf -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/package.json -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/public/index.html -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/src/app.js -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/start.sh -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme/dist/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme/dist/yarn.lock -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme2/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme2/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme2/dist/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF 2024/readme2/dist/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/readme2/dist/app.js -------------------------------------------------------------------------------- /ImaginaryCTF 2024/vokram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/vokram/README.md -------------------------------------------------------------------------------- /ImaginaryCTF 2024/vokram/check_flag.vokram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/vokram/check_flag.vokram -------------------------------------------------------------------------------- /ImaginaryCTF 2024/vokram/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/vokram/gen.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/vokram/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/vokram/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF 2024/vokram/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF 2024/vokram/vm.py -------------------------------------------------------------------------------- /ImaginaryCTF/Minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Minimal/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Minimal/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Minimal/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Minimal/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Minimal/src/Makefile -------------------------------------------------------------------------------- /ImaginaryCTF/Minimal/src/vuln.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Minimal/src/vuln.S -------------------------------------------------------------------------------- /ImaginaryCTF/Minimal/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Minimal/vuln -------------------------------------------------------------------------------- /ImaginaryCTF/Really Simple Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Really Simple Algorithm/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Really Simple Algorithm/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Really Simple Algorithm/chal.py -------------------------------------------------------------------------------- /ImaginaryCTF/Really Simple Algorithm/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Really Simple Algorithm/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Really Simple Algorithm/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Really Simple Algorithm/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/box/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/box/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/box/challenge.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/box/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{wow_such_linear_so_easy} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/box/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/box/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/extra/binsolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/extra/binsolve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/extra/secret.py: -------------------------------------------------------------------------------- 1 | flag = b'ictf{^_is_not_the_power_operator...}' 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/extra/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/extra/test.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/first_rsa/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/first_rsa/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/deploy.tar.gz -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/solution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/solution/Makefile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/solution/another_sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/solution/another_sol -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/solution/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/solution/run.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/solution/run.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/solution/run.so -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/solution/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/src/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/src/Makefile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/src/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/src/readflag.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/freeshell/src/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/freeshell/src/shell.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/chall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/chall.pyc -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/src/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v2/src/rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v2/src/rev.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v3/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v3/chall -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v3/solve.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v3/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/heres_some_rev_v3/src/chall.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/heres_some_rev_v3/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{sorry_for_today's_boring_challenge} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/login_please/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/login_please/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/login_please/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/login_please/src/app.js -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/login_please/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/login_please/src/package.json -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/login_please/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/login_please/src/yarn.lock -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/no_modulus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/no_modulus/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/no_modulus/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/no_modulus/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/no_modulus/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{when_in_doubt_use_LLL} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/no_modulus/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/no_modulus/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/no_modulus/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/no_modulus/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/not_a_kernel_pwn/.gitignore: -------------------------------------------------------------------------------- 1 | vm/mount 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/not_a_kernel_pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/not_a_kernel_pwn/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/not_a_kernel_pwn/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/not_a_kernel_pwn/src/Makefile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/not_a_kernel_pwn/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/not_a_kernel_pwn/src/run.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/pqqp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/pqqp/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/pqqp/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/pqqp/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/pqqp/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{can_you_proof_that_p^q+q^p_is_actually_p+q?} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/pqqp/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/pqqp/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/pqqp/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/pqqp/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/chall -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/src/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/src/Makefile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 26/read/src/chall.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 26/read/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{leak_the_flag_with_side_channel} -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/baby_shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/baby_shell/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/baby_shell/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/baby_shell/chall -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/baby_shell/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/baby_shell/main.cpp -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/Hello.java -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/exp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/exp.java -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/haas/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/haas/solve.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/mobius/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/mobius/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/mobius/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/mobius/checker.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/mobius/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/mobius/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/mobius/test.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/mobius/test.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/mobius/tet.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc-v2/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc-v2/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc-v2/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc-v2/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc-v2/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc-v2/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc-v2/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc-v2/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc-v2/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{not_really_different_from_rsa_ecb_isn't_it?} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 27/rsa-cbc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 27/rsa-cbc/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Filter Master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Filter Master/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Filter Master/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{maybe_this_is_the_last_php_7.4_challenge_before_its_EOL} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Filter Master/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Filter Master/src/index.php -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{when_in_doubt_it_is_always_LLL!!!_57056c1038e453721794785a6bc57a65} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/output.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/output.npy -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/solve2.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Half FFT/solve3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Half FFT/solve3.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Substitution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Substitution/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Substitution/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Substitution/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Substitution/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Substitution/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Substitution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Substitution/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Unchanged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Unchanged/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Unchanged/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Unchanged/chall -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Unchanged/src/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Unchanged/src/gen.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 28/Unchanged/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 28/Unchanged/src/main.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Generic Flag Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Generic Flag Checker/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Generic Flag Checker/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Generic Flag Checker/chall -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Generic Flag Checker/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Generic Flag Checker/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Req Bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Req Bin/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Req Bin/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Req Bin/deploy.tar.gz -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Req Bin/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Req Bin/exp.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Strong Prime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Strong Prime/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Strong Prime/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Strong Prime/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Strong Prime/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Strong Prime/src/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Strong Prime/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Strong Prime/src/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Web3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Web3/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Web3/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Web3/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/Web3/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/Web3/solve2.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/chall.tar.gz -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/dockerup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/dockerup.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/main -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{the_best_christmas_present_is_a_shell!} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 29/xkcd 835/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 29/xkcd 835/src/main.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Easy DSA: LCG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Easy DSA: LCG/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Easy DSA: LCG/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Easy DSA: LCG/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Easy DSA: LCG/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Easy DSA: LCG/src/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Easy DSA: LCG/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Easy DSA: LCG/src/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Easy DSA: LCG/src/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Easy DSA: LCG/src/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/src/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/src/api.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/src/app.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Echo/src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Echo/src/start.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Fake flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Fake flags/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Fake flags/src/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Fake flags/src/gen.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Fake flags/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Fake flags/src/index.html -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Fake flags/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Fake flags/src/index.js -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Power RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Power RSA/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Power RSA/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Power RSA/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Power RSA/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Power RSA/src/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Power RSA/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{just_some_easy_math} -------------------------------------------------------------------------------- /ImaginaryCTF/Round 30/Power RSA/src/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 30/Power RSA/src/output.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/src/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/src/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{insecure_deserialization_strikes_again} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/src/index.js -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/src/package.json -------------------------------------------------------------------------------- /ImaginaryCTF/Round 31/KVIN/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 31/KVIN/src/yarn.lock -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/chall.tar.gz -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/solve.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/cgi-bin/getlogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/cgi-bin/getlogs -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/cgi-bin/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/cgi-bin/match -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/cgi-bin/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/cgi-bin/utils -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/flag: -------------------------------------------------------------------------------- 1 | ictf{just_some_common_bash_pitfalls} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/httpd.conf -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/readflag -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/readflag.c -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Old School/src/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Old School/src/start.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Poly RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Poly RSA/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Poly RSA/chall.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Poly RSA/chall.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Poly RSA/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Poly RSA/flag.txt -------------------------------------------------------------------------------- /ImaginaryCTF/Round 32/Poly RSA/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 32/Poly RSA/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/exp/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/exp/solve.sh -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/nginx/default.conf -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/vault.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/vault.tar.gz -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/app.js -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/bot.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/index.html -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 33/Vault/web/simple.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 33/Vault/web/simple.min.css -------------------------------------------------------------------------------- /ImaginaryCTF/Round 34/Integrity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 34/Integrity/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 34/Integrity/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 34/Integrity/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 34/Integrity/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 34/Integrity/solve.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 35/Encrypted Command Executor/flag: -------------------------------------------------------------------------------- 1 | ictf{maybe_ecb_is_not_a_good_idea} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 37/You can't reverse me/src/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{what?!_how_did_you_get_my_binary} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 39/Safe Pickle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 39/Safe Pickle/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 39/Safe Pickle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 39/Safe Pickle/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 39/Safe Pickle/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{what_about_not_using_pickle_in_the_first_place?} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 39/Safe Pickle/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 39/Safe Pickle/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 40/Leet Universe/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 40/Leet Universe/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 40/Leet Universe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 40/Leet Universe/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 40/Leet Universe/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 40/Leet Universe/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 43/Three Pieces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 43/Three Pieces/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 43/Three Pieces/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 43/Three Pieces/challenge.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 43/Three Pieces/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{https://youtu.be/iLYVqdekt6s} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/FLT-1337/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/FLT-1337/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/FLT-1337/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/FLT-1337/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/FLT-1337/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/FLT-1337/docker-compose.yaml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/FLT-1337/server.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/FLT-1337/server.sage -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/Flag Server/.env: -------------------------------------------------------------------------------- 1 | FLAG=ictf{getting_cookie_to_work_correctly_is_so_hard} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/Flag Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/Flag Server/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/Flag Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/Flag Server/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/Flag Server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/Flag Server/app.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 44/Flag Server/exp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 44/Flag Server/exp.html -------------------------------------------------------------------------------- /ImaginaryCTF/Round 48/readme3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 48/readme3/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 48/readme3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 48/readme3/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 48/readme3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 48/readme3/app.js -------------------------------------------------------------------------------- /ImaginaryCTF/Round 48/readme3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 48/readme3/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP v2/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP v2/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP v2/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP v2/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{smoo7h_and_copp3rsm1ths} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP v2/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP v2/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP v2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP v2/test.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{dlp_4nd_lll_5o_e4sy_lol} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 49/MDLP/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 49/MDLP/solve2.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/chall.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{lfsr_is_approximately_equal_to_lcg_right?} 2 | -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/output.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/solve.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/solve_140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/solve_140.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 54/MLFSR/solve_lyndon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 54/MLFSR/solve_lyndon.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 55/MagicHash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 55/MagicHash/Dockerfile -------------------------------------------------------------------------------- /ImaginaryCTF/Round 55/MagicHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 55/MagicHash/README.md -------------------------------------------------------------------------------- /ImaginaryCTF/Round 55/MagicHash/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 55/MagicHash/docker-compose.yml -------------------------------------------------------------------------------- /ImaginaryCTF/Round 55/MagicHash/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 55/MagicHash/server.py -------------------------------------------------------------------------------- /ImaginaryCTF/Round 55/MagicHash/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/ImaginaryCTF/Round 55/MagicHash/solve.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Cipher Switching Service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Cipher Switching Service/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Cipher Switching Service/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Cipher Switching Service/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage1/flag.txt.key1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage1/flag.txt.key1.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage1/flag.txt.key2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage1/flag.txt.key2.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage1/key1.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage1/key1.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage1/key2.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage1/key2.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage2/flag.txt.key1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage2/flag.txt.key1.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage2/flag.txt.key2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage2/flag.txt.key2.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage2/key1.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage2/key1.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage2/key2.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage2/key2.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage3/flag.txt.key1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage3/flag.txt.key1.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage3/flag.txt.key2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage3/flag.txt.key2.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage3/key1.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage3/key1.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Futago/chall/stage3/key2.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Futago/chall/stage3/key2.pub -------------------------------------------------------------------------------- /TSJ CTF 2022/Genie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Genie/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Genie/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Genie/chall.tar.gz -------------------------------------------------------------------------------- /TSJ CTF 2022/Genie/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Genie/deploy.tar.gz -------------------------------------------------------------------------------- /TSJ CTF 2022/Just a pyjail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Just a pyjail/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Just a pyjail/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Just a pyjail/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Just a pyjail/deploy.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Just a pyjail/deploy.tar.gz -------------------------------------------------------------------------------- /TSJ CTF 2022/Just a pyjail/sol/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Just a pyjail/sol/payload.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Just a pyjail/sol/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Just a pyjail/sol/solve.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall.tar.gz -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/bot/Dockerfile -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/bot/bot.js -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/bot/package.json -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/docker-compose.yml -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/web/Dockerfile -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/web/app.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/web/app.nim -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/web/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/web/default.conf -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/web/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/web/public/js/app.js -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/chall/web/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/chall/web/start.sh -------------------------------------------------------------------------------- /TSJ CTF 2022/Nim Notes/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Nim Notes/exp.py -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG+++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG+++/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG+++/chall/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG+++/chall/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG+++/chall/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG+++/chall/output.txt -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG++/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG++/chall/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG++/chall/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/RNG++/chall/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/RNG++/chall/output.txt -------------------------------------------------------------------------------- /TSJ CTF 2022/Signature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Signature/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Signature/chall/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Signature/chall/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Signature/chall/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Signature/chall/output.txt -------------------------------------------------------------------------------- /TSJ CTF 2022/Top Secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Top Secret/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/Top Secret/chall/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Top Secret/chall/challenge.py -------------------------------------------------------------------------------- /TSJ CTF 2022/Top Secret/chall/flag.png.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/Top Secret/chall/flag.png.enc -------------------------------------------------------------------------------- /TSJ CTF 2022/babyRSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/babyRSA/README.md -------------------------------------------------------------------------------- /TSJ CTF 2022/babyRSA/chall/challenge.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/babyRSA/chall/challenge.sage -------------------------------------------------------------------------------- /TSJ CTF 2022/babyRSA/chall/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/babyRSA/chall/output.txt -------------------------------------------------------------------------------- /TSJ CTF 2022/babyRSA/meme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maple3142/My-CTF-Challenges/HEAD/TSJ CTF 2022/babyRSA/meme.png --------------------------------------------------------------------------------