├── .gitignore ├── Crypto ├── README.md ├── blind_guess │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── main.py │ │ ├── nsjail.cfg │ │ ├── redacted.py │ │ └── solve.py ├── elliptic │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── credit.txt │ │ ├── ecc.c │ │ ├── ecc.h │ │ ├── elliptic │ │ ├── elliptic.c │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ └── solve.py ├── emoticons │ ├── README.md │ └── challenge │ │ ├── gen.py │ │ ├── out.txt │ │ ├── sample.txt │ │ ├── solve.py │ │ └── text.txt ├── flagtor │ ├── README.md │ └── challenge │ │ ├── flag.txt │ │ ├── flagtor.factor │ │ ├── out.txt │ │ ├── solve.sage │ │ └── util.factor ├── imaginary_casino │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── csidh-latest.tar.xz │ │ ├── flag.txt │ │ ├── server.py │ │ └── solve.py ├── rsa │ ├── README.md │ └── challenge │ │ ├── flag.enc │ │ ├── private.pem │ │ ├── public.pem │ │ └── solve.py ├── signer │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── crchack │ │ ├── dummy │ │ ├── flag.txt │ │ ├── main.py │ │ ├── nsjail.cfg │ │ └── solve.py ├── sus │ ├── README.md │ └── challenge │ │ ├── challenge.py │ │ ├── flag.txt │ │ ├── output.txt │ │ └── solve.sage ├── tan │ ├── README.md │ └── challenge │ │ ├── flag.txt │ │ ├── solve.sage │ │ └── tan.sage └── wasteful │ ├── README.md │ └── challenge │ ├── chall.py │ ├── flag.txt │ ├── output.txt │ └── solve.sage ├── Forensics ├── README.md ├── blurry │ ├── README.md │ └── challenge │ │ ├── chall.png │ │ └── flag.txt ├── crypto │ ├── README.md │ └── challenge │ │ ├── core │ │ ├── core.raw │ │ ├── crypto.zip │ │ ├── flag.enc │ │ ├── flag.txt │ │ ├── gen.py │ │ ├── private.pem │ │ ├── public.pem │ │ ├── script.py │ │ └── solve.py ├── forensics │ ├── README.md │ ├── challenge │ │ ├── corrupt.py │ │ ├── flag.png │ │ ├── flag.txt │ │ ├── forensics.pcap │ │ ├── raw.pcap │ │ └── solve.py │ └── forensics.zip ├── pwn │ ├── README.md │ └── challenge │ │ ├── Makefile │ │ ├── chall.pcap │ │ ├── flag.txt │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── rev │ ├── README.md │ ├── challenge │ │ ├── flag.txt │ │ ├── img1 │ │ ├── img2 │ │ ├── img3 │ │ └── ransomware.go │ └── rev.zip ├── steganographic │ ├── README.md │ └── challenge │ │ ├── chall.png │ │ ├── flag.txt │ │ ├── gen.py │ │ ├── original.png │ │ └── solve.py ├── system-hardening-8 │ └── README.md └── web │ ├── README.md │ └── challenge │ ├── flag.txt │ └── web.zip ├── Misc ├── README.md ├── deletion │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── flag.txt │ │ ├── main.py │ │ ├── nsjail.cfg │ │ └── solve.py ├── discord │ ├── README.md │ └── flag.txt ├── get_and_set │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── payload.txt │ │ └── server.py ├── obscured │ ├── README.md │ ├── challenge.yaml │ ├── challenge │ │ ├── 49-polkit-pkla-compat.rules │ │ ├── Dockerfile │ │ ├── flag.txt │ │ ├── obf.js │ │ ├── orig.js │ │ └── solve.sh │ └── instancer │ │ ├── Dockerfile │ │ ├── cleanup.sh │ │ ├── docker-compose.yml │ │ ├── run.py │ │ └── setup_network.sh ├── sanity_check │ ├── README.md │ └── flag.txt ├── signpost │ ├── README.md │ ├── flag.txt │ └── signpost.png ├── temu │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── bobthoughts.bob │ │ ├── fl@g.txt │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── requirements.txt │ │ └── temu.py ├── you_shall_not_call-revenge │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── nsjail.cfg │ │ ├── readflag │ │ ├── readflag.c │ │ ├── server.py │ │ └── solve.py └── you_shall_not_call │ ├── README.md │ ├── challenge.yaml │ └── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── nsjail.cfg │ ├── server.py │ └── solve.py ├── Pwn ├── README.md ├── form │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── generic-rop-challenge │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── ld-linux-aarch64.so.1 │ │ ├── libc.so.6 │ │ ├── libseccomp.so.2 │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c │ └── generic-rop-challenge_release.zip ├── lcode │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── mailman │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── libc.so.6 │ │ ├── nsjail.cfg │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── minimal │ ├── README.md │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── ld-linux-x86-64.so.2 │ │ ├── libc.so.6 │ │ ├── minimal.zip │ │ ├── nsjail.cfg │ │ ├── run.py │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── minimaler │ ├── README.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── flag.txt │ │ ├── ld-linux-x86-64.so.2 │ │ ├── libc.so.6 │ │ ├── preload.c │ │ ├── run.sh │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c │ └── minimaler.zip ├── ret2lose │ ├── README.md │ └── challenge │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── solve.py │ │ ├── the_other_flag_that_you_must_get_a_shell_to_find.txt │ │ ├── vuln │ │ └── vuln.c ├── ret2win │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── solve.py │ │ ├── the_other_flag_that_you_must_get_a_shell_to_find.txt │ │ ├── vuln │ │ └── vuln.c ├── vault │ ├── README.md │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aes.h │ │ ├── aes.py │ │ ├── flag.txt │ │ ├── libc.so.6 │ │ ├── solve.py │ │ ├── vuln │ │ └── vuln.c ├── vmdungeon │ ├── README.md │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── asm │ │ ├── compile.py │ │ ├── flag.txt │ │ ├── gen.py │ │ ├── nsjail.cfg │ │ ├── out │ │ ├── run.sh │ │ ├── solve.py │ │ └── vm │ └── vmdungeon.zip └── window-of-opportunity │ ├── README.md │ ├── challenge.yaml │ └── challenge │ ├── Dockerfile │ ├── a.sh │ ├── bzImage │ ├── decompress.sh │ ├── exploit │ ├── flag.txt │ ├── gdb.sh │ ├── initramfs.cpio │ ├── opportunity_dist.zip │ ├── run.py │ ├── run.sh │ ├── solve │ ├── Makefile │ ├── exploit │ └── exploit.c │ └── src │ ├── Makefile │ ├── chall.c │ └── chall.ko ├── README.md ├── Reversing ├── README.md ├── chaos │ ├── README.md │ └── challenge │ │ ├── chall.py │ │ ├── flag.txt │ │ ├── gen.py │ │ └── solve.py ├── goated │ ├── README.md │ └── challenge │ │ ├── gen.py │ │ ├── goated.py │ │ ├── lambda_calc.py │ │ └── x.py ├── scrambled │ ├── README.md │ └── challenge │ │ ├── flag.txt │ │ ├── main │ │ └── main.cpp ├── sheepish │ ├── README.md │ └── challenge │ │ ├── gen.py │ │ ├── lambda_calc.py │ │ ├── sheepish.py │ │ └── x.py ├── snailchecker │ ├── README.md │ └── challenge │ │ ├── check.py │ │ ├── flag.txt │ │ ├── gen │ │ ├── gen.c │ │ └── solve.py ├── typechecker │ ├── README.md │ └── challenge │ │ ├── solve.sage │ │ ├── source.ts │ │ ├── transform.js │ │ └── ts.ts ├── unfactored │ ├── README.md │ ├── deploy.factor │ ├── extract-image.py │ ├── ictf.unfactored │ ├── solve.sage │ └── unfactored.factor └── vmcastle │ ├── README.md │ └── challenge │ ├── Makefile │ ├── asm │ ├── compile.py │ ├── flag.txt │ ├── gen.py │ ├── out │ ├── program │ ├── vm │ └── vm.c └── Web ├── README.md ├── amogus ├── README.md ├── admin-bot │ ├── challenge.yaml │ └── challenge │ │ ├── Dockerfile │ │ ├── bot.js │ │ └── run.sh ├── amogus_dist.zip ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── auth │ ├── app.py │ ├── static │ │ └── style.css │ └── templates │ │ └── login.html │ ├── entrypoint.sh │ ├── mail │ ├── app.py │ ├── flag.txt │ ├── secret.txt │ ├── static │ │ └── style.css │ └── templates │ │ ├── emails.html │ │ └── index.html │ ├── nginx │ ├── auth-service │ ├── default │ ├── index.html │ └── mail-service │ ├── requirements.txt │ ├── solve.html │ └── solve.py ├── blank ├── README.md ├── blank_dist.zip ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── app.js │ ├── flag.txt │ ├── package-lock.json │ ├── package.json │ ├── static │ └── styles.css │ └── views │ ├── index.ejs │ └── login.ejs ├── idoriot-revenge ├── README.md ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── index.php │ ├── login.php │ ├── logout.php │ └── register.php ├── idoriot ├── README.md ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── index.php │ ├── login.php │ ├── logout.php │ └── register.php ├── inspection ├── README.md └── flag.txt ├── login ├── README.md ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── index.php │ ├── init.php │ └── solve.php ├── perfect_picture ├── README.md ├── challenge.yaml ├── challenge │ ├── Dockerfile │ ├── app.py │ ├── flag.txt │ ├── requirements.txt │ ├── solve.png │ ├── solve.py │ ├── static │ │ └── style.css │ └── templates │ │ └── index.html └── perfect_picture.zip ├── roks ├── README.md ├── challenge.yaml ├── challenge │ ├── Dockerfile │ ├── file.php │ ├── flag.png │ ├── flag.txt │ ├── images │ │ ├── image1 │ │ ├── image10 │ │ ├── image2 │ │ ├── image3 │ │ ├── image4 │ │ ├── image5 │ │ ├── image6 │ │ ├── image7 │ │ ├── image8 │ │ └── image9 │ ├── index.php │ ├── stopHacking.png │ └── styles.css └── roks.zip ├── sanitized-revenge ├── README.md ├── challenge.yaml └── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── package.json │ ├── solve.js │ ├── src │ ├── app.js │ └── static │ │ ├── index.xhtml │ │ ├── main.js │ │ ├── purify.min.js │ │ ├── report.js │ │ └── simple.css │ └── yarn.lock └── sanitized ├── README.md ├── challenge.yaml └── challenge ├── Dockerfile ├── flag.txt ├── package.json ├── solve.js ├── src ├── app.js └── static │ ├── index.xhtml │ ├── main.js │ ├── purify.min.js │ ├── report.js │ └── simple.css ├── unintended_solution.txt └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /Crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crypto/blind_guess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/README.md -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/challenge.yaml -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/challenge/Dockerfile -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/challenge/main.py -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge/redacted.py: -------------------------------------------------------------------------------- 1 | FLAG = "ictf{Why_gu355_wh3n_y0u_c4n_j0rd4n}" -------------------------------------------------------------------------------- /Crypto/blind_guess/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/blind_guess/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/elliptic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/README.md -------------------------------------------------------------------------------- /Crypto/elliptic/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge.yaml -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/Dockerfile -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/Makefile -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/credit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/credit.txt -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/ecc.c -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/ecc.h -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/elliptic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/elliptic -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/elliptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/elliptic.c -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{truly_a_n0nce_manipulation_m4ster_144fe68f} 2 | -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Crypto/elliptic/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/elliptic/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/emoticons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/README.md -------------------------------------------------------------------------------- /Crypto/emoticons/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/challenge/gen.py -------------------------------------------------------------------------------- /Crypto/emoticons/challenge/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/challenge/out.txt -------------------------------------------------------------------------------- /Crypto/emoticons/challenge/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/challenge/sample.txt -------------------------------------------------------------------------------- /Crypto/emoticons/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/emoticons/challenge/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/emoticons/challenge/text.txt -------------------------------------------------------------------------------- /Crypto/flagtor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/flagtor/README.md -------------------------------------------------------------------------------- /Crypto/flagtor/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{1_r34lly_h0p3_yoU_d1dn't_z3_th!s...} 2 | -------------------------------------------------------------------------------- /Crypto/flagtor/challenge/flagtor.factor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/flagtor/challenge/flagtor.factor -------------------------------------------------------------------------------- /Crypto/flagtor/challenge/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/flagtor/challenge/out.txt -------------------------------------------------------------------------------- /Crypto/flagtor/challenge/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/flagtor/challenge/solve.sage -------------------------------------------------------------------------------- /Crypto/flagtor/challenge/util.factor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/flagtor/challenge/util.factor -------------------------------------------------------------------------------- /Crypto/imaginary_casino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/README.md -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/challenge.yaml -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/challenge/Dockerfile -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge/csidh-latest.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/challenge/csidh-latest.tar.xz -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{a_backdoored_rng_in_the_post_quantum_era} 2 | -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/challenge/server.py -------------------------------------------------------------------------------- /Crypto/imaginary_casino/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/imaginary_casino/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/rsa/README.md -------------------------------------------------------------------------------- /Crypto/rsa/challenge/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/rsa/challenge/flag.enc -------------------------------------------------------------------------------- /Crypto/rsa/challenge/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/rsa/challenge/private.pem -------------------------------------------------------------------------------- /Crypto/rsa/challenge/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/rsa/challenge/public.pem -------------------------------------------------------------------------------- /Crypto/rsa/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/rsa/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/signer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/README.md -------------------------------------------------------------------------------- /Crypto/signer/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge.yaml -------------------------------------------------------------------------------- /Crypto/signer/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge/Dockerfile -------------------------------------------------------------------------------- /Crypto/signer/challenge/crchack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge/crchack -------------------------------------------------------------------------------- /Crypto/signer/challenge/dummy: -------------------------------------------------------------------------------- 1 | fffff -------------------------------------------------------------------------------- /Crypto/signer/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{m4ybe_crc32_wasnt_that_secure_after_all_1ab93213} 2 | -------------------------------------------------------------------------------- /Crypto/signer/challenge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge/main.py -------------------------------------------------------------------------------- /Crypto/signer/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Crypto/signer/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/signer/challenge/solve.py -------------------------------------------------------------------------------- /Crypto/sus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/sus/README.md -------------------------------------------------------------------------------- /Crypto/sus/challenge/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/sus/challenge/challenge.py -------------------------------------------------------------------------------- /Crypto/sus/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/sus/challenge/flag.txt -------------------------------------------------------------------------------- /Crypto/sus/challenge/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/sus/challenge/output.txt -------------------------------------------------------------------------------- /Crypto/sus/challenge/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/sus/challenge/solve.sage -------------------------------------------------------------------------------- /Crypto/tan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/tan/README.md -------------------------------------------------------------------------------- /Crypto/tan/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{can_you_break_sin_or_cos_too?} 2 | -------------------------------------------------------------------------------- /Crypto/tan/challenge/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/tan/challenge/solve.sage -------------------------------------------------------------------------------- /Crypto/tan/challenge/tan.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/tan/challenge/tan.sage -------------------------------------------------------------------------------- /Crypto/wasteful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/wasteful/README.md -------------------------------------------------------------------------------- /Crypto/wasteful/challenge/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/wasteful/challenge/chall.py -------------------------------------------------------------------------------- /Crypto/wasteful/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{just_an_obligatory_coppersmith_challenge} 2 | -------------------------------------------------------------------------------- /Crypto/wasteful/challenge/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/wasteful/challenge/output.txt -------------------------------------------------------------------------------- /Crypto/wasteful/challenge/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Crypto/wasteful/challenge/solve.sage -------------------------------------------------------------------------------- /Forensics/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Forensics/blurry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/blurry/README.md -------------------------------------------------------------------------------- /Forensics/blurry/challenge/chall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/blurry/challenge/chall.png -------------------------------------------------------------------------------- /Forensics/blurry/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{blurR1ng_is_n0_m4tch_4_u_2ab140c2} 2 | -------------------------------------------------------------------------------- /Forensics/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/README.md -------------------------------------------------------------------------------- /Forensics/crypto/challenge/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/core -------------------------------------------------------------------------------- /Forensics/crypto/challenge/core.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/core.raw -------------------------------------------------------------------------------- /Forensics/crypto/challenge/crypto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/crypto.zip -------------------------------------------------------------------------------- /Forensics/crypto/challenge/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/flag.enc -------------------------------------------------------------------------------- /Forensics/crypto/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/flag.txt -------------------------------------------------------------------------------- /Forensics/crypto/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/gen.py -------------------------------------------------------------------------------- /Forensics/crypto/challenge/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/private.pem -------------------------------------------------------------------------------- /Forensics/crypto/challenge/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/public.pem -------------------------------------------------------------------------------- /Forensics/crypto/challenge/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/script.py -------------------------------------------------------------------------------- /Forensics/crypto/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/crypto/challenge/solve.py -------------------------------------------------------------------------------- /Forensics/forensics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/README.md -------------------------------------------------------------------------------- /Forensics/forensics/challenge/corrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/challenge/corrupt.py -------------------------------------------------------------------------------- /Forensics/forensics/challenge/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/challenge/flag.png -------------------------------------------------------------------------------- /Forensics/forensics/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{n0_corruption_can_stop_u_1b53d8c4} 2 | -------------------------------------------------------------------------------- /Forensics/forensics/challenge/forensics.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/challenge/forensics.pcap -------------------------------------------------------------------------------- /Forensics/forensics/challenge/raw.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/challenge/raw.pcap -------------------------------------------------------------------------------- /Forensics/forensics/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/challenge/solve.py -------------------------------------------------------------------------------- /Forensics/forensics/forensics.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/forensics/forensics.zip -------------------------------------------------------------------------------- /Forensics/pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/README.md -------------------------------------------------------------------------------- /Forensics/pwn/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/challenge/Makefile -------------------------------------------------------------------------------- /Forensics/pwn/challenge/chall.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/challenge/chall.pcap -------------------------------------------------------------------------------- /Forensics/pwn/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{expl0it_replicati0n_m4ster_b2c360e9} 2 | -------------------------------------------------------------------------------- /Forensics/pwn/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/challenge/solve.py -------------------------------------------------------------------------------- /Forensics/pwn/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/challenge/vuln -------------------------------------------------------------------------------- /Forensics/pwn/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/pwn/challenge/vuln.c -------------------------------------------------------------------------------- /Forensics/rev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/README.md -------------------------------------------------------------------------------- /Forensics/rev/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{revver_is_a_palindrome} 2 | -------------------------------------------------------------------------------- /Forensics/rev/challenge/img1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/challenge/img1 -------------------------------------------------------------------------------- /Forensics/rev/challenge/img2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/challenge/img2 -------------------------------------------------------------------------------- /Forensics/rev/challenge/img3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/challenge/img3 -------------------------------------------------------------------------------- /Forensics/rev/challenge/ransomware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/challenge/ransomware.go -------------------------------------------------------------------------------- /Forensics/rev/rev.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/rev/rev.zip -------------------------------------------------------------------------------- /Forensics/steganographic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/steganographic/README.md -------------------------------------------------------------------------------- /Forensics/steganographic/challenge/chall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/steganographic/challenge/chall.png -------------------------------------------------------------------------------- /Forensics/steganographic/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{the_original_image_reveals_all_b1f9a293} 2 | -------------------------------------------------------------------------------- /Forensics/steganographic/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/steganographic/challenge/gen.py -------------------------------------------------------------------------------- /Forensics/steganographic/challenge/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/steganographic/challenge/original.png -------------------------------------------------------------------------------- /Forensics/steganographic/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/steganographic/challenge/solve.py -------------------------------------------------------------------------------- /Forensics/system-hardening-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/system-hardening-8/README.md -------------------------------------------------------------------------------- /Forensics/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/web/README.md -------------------------------------------------------------------------------- /Forensics/web/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{behold_th3_forensics_g4untlet_827b3f13} 2 | -------------------------------------------------------------------------------- /Forensics/web/challenge/web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Forensics/web/challenge/web.zip -------------------------------------------------------------------------------- /Misc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Misc/deletion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/README.md -------------------------------------------------------------------------------- /Misc/deletion/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/challenge.yaml -------------------------------------------------------------------------------- /Misc/deletion/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/deletion/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{exc3pti0n4l_f41L_b11d23c9} 2 | -------------------------------------------------------------------------------- /Misc/deletion/challenge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/challenge/main.py -------------------------------------------------------------------------------- /Misc/deletion/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Misc/deletion/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/deletion/challenge/solve.py -------------------------------------------------------------------------------- /Misc/discord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/discord/README.md -------------------------------------------------------------------------------- /Misc/discord/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{welcome_to_imaginaryctf_2023!} 2 | -------------------------------------------------------------------------------- /Misc/get_and_set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/README.md -------------------------------------------------------------------------------- /Misc/get_and_set/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/challenge.yaml -------------------------------------------------------------------------------- /Misc/get_and_set/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/get_and_set/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{in_python_[get,set]x[attr,item]_is_all_you_need} 2 | -------------------------------------------------------------------------------- /Misc/get_and_set/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Misc/get_and_set/challenge/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/challenge/payload.txt -------------------------------------------------------------------------------- /Misc/get_and_set/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/get_and_set/challenge/server.py -------------------------------------------------------------------------------- /Misc/obscured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/README.md -------------------------------------------------------------------------------- /Misc/obscured/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge.yaml -------------------------------------------------------------------------------- /Misc/obscured/challenge/49-polkit-pkla-compat.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge/49-polkit-pkla-compat.rules -------------------------------------------------------------------------------- /Misc/obscured/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/obscured/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge/flag.txt -------------------------------------------------------------------------------- /Misc/obscured/challenge/obf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge/obf.js -------------------------------------------------------------------------------- /Misc/obscured/challenge/orig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/challenge/orig.js -------------------------------------------------------------------------------- /Misc/obscured/challenge/solve.sh: -------------------------------------------------------------------------------- 1 | pkexec sh -cc 'yes --version;sh;JdGZySPjvzAzAdciwjEBhfQTHvecLs' 2 | -------------------------------------------------------------------------------- /Misc/obscured/instancer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/instancer/Dockerfile -------------------------------------------------------------------------------- /Misc/obscured/instancer/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/instancer/cleanup.sh -------------------------------------------------------------------------------- /Misc/obscured/instancer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/instancer/docker-compose.yml -------------------------------------------------------------------------------- /Misc/obscured/instancer/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/instancer/run.py -------------------------------------------------------------------------------- /Misc/obscured/instancer/setup_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/obscured/instancer/setup_network.sh -------------------------------------------------------------------------------- /Misc/sanity_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/sanity_check/README.md -------------------------------------------------------------------------------- /Misc/sanity_check/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{welcome_to_imaginaryctf_2023!} 2 | -------------------------------------------------------------------------------- /Misc/signpost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/signpost/README.md -------------------------------------------------------------------------------- /Misc/signpost/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{37.778,-122.388} 2 | -------------------------------------------------------------------------------- /Misc/signpost/signpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/signpost/signpost.png -------------------------------------------------------------------------------- /Misc/temu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/README.md -------------------------------------------------------------------------------- /Misc/temu/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge.yaml -------------------------------------------------------------------------------- /Misc/temu/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/temu/challenge/bobthoughts.bob: -------------------------------------------------------------------------------- 1 | bob 2 | -------------------------------------------------------------------------------- /Misc/temu/challenge/fl@g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge/fl@g.txt -------------------------------------------------------------------------------- /Misc/temu/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge/flag.txt -------------------------------------------------------------------------------- /Misc/temu/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Misc/temu/challenge/requirements.txt: -------------------------------------------------------------------------------- 1 | console 2 | -------------------------------------------------------------------------------- /Misc/temu/challenge/temu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/temu/challenge/temu.py -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/README.md -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge.yaml -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/readflag -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/readflag.c -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/server.py -------------------------------------------------------------------------------- /Misc/you_shall_not_call-revenge/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call-revenge/challenge/solve.py -------------------------------------------------------------------------------- /Misc/you_shall_not_call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/README.md -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/challenge.yaml -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/challenge/Dockerfile -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{C4lL3d_1t...} -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/challenge/server.py -------------------------------------------------------------------------------- /Misc/you_shall_not_call/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Misc/you_shall_not_call/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pwn/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/README.md -------------------------------------------------------------------------------- /Pwn/form/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge.yaml -------------------------------------------------------------------------------- /Pwn/form/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/form/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/form/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{ngl_kinda_bored_of_these} 2 | -------------------------------------------------------------------------------- /Pwn/form/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/form/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/form/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/vuln -------------------------------------------------------------------------------- /Pwn/form/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/form/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/README.md -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/docker-compose.yml -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{n0t_s0_generic_aft3r_all?_d83a9b1c} 2 | -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/ld-linux-aarch64.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/ld-linux-aarch64.so.1 -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/libc.so.6 -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/libseccomp.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/libseccomp.so.2 -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/vuln -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/generic-rop-challenge/generic-rop-challenge_release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/generic-rop-challenge/generic-rop-challenge_release.zip -------------------------------------------------------------------------------- /Pwn/lcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/README.md -------------------------------------------------------------------------------- /Pwn/lcode/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge.yaml -------------------------------------------------------------------------------- /Pwn/lcode/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/lcode/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/lcode/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/flag.txt -------------------------------------------------------------------------------- /Pwn/lcode/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/lcode/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/lcode/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/vuln -------------------------------------------------------------------------------- /Pwn/lcode/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/lcode/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/mailman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/README.md -------------------------------------------------------------------------------- /Pwn/mailman/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge.yaml -------------------------------------------------------------------------------- /Pwn/mailman/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/mailman/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/mailman/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/flag.txt -------------------------------------------------------------------------------- /Pwn/mailman/challenge/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/libc.so.6 -------------------------------------------------------------------------------- /Pwn/mailman/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/mailman/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/mailman/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/vuln -------------------------------------------------------------------------------- /Pwn/mailman/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/mailman/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/README.md -------------------------------------------------------------------------------- /Pwn/minimal/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/minimal/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/minimal/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/docker-compose.yml -------------------------------------------------------------------------------- /Pwn/minimal/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/flag.txt -------------------------------------------------------------------------------- /Pwn/minimal/challenge/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /Pwn/minimal/challenge/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/libc.so.6 -------------------------------------------------------------------------------- /Pwn/minimal/challenge/minimal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/minimal.zip -------------------------------------------------------------------------------- /Pwn/minimal/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/minimal/challenge/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/run.py -------------------------------------------------------------------------------- /Pwn/minimal/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/minimal/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/vuln -------------------------------------------------------------------------------- /Pwn/minimal/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimal/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/minimaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/README.md -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/docker-compose.yml -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{n0_0ne_c4n_st0p_my_r0p_f3ng_shu1_7fe34c52} 2 | -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/libc.so.6 -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/preload.c -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | LD_PRELOAD=./preload.so ./vuln 4 | -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/vuln -------------------------------------------------------------------------------- /Pwn/minimaler/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/minimaler/minimaler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/minimaler/minimaler.zip -------------------------------------------------------------------------------- /Pwn/ret2lose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/README.md -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{r3turn_0f_th3_k1ng?} 2 | -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/the_other_flag_that_you_must_get_a_shell_to_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/challenge/the_other_flag_that_you_must_get_a_shell_to_find.txt -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/challenge/vuln -------------------------------------------------------------------------------- /Pwn/ret2lose/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2lose/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/ret2win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/README.md -------------------------------------------------------------------------------- /Pwn/ret2win/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge.yaml -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{r3turn_0f_th3_k1ng?} 2 | -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/the_other_flag_that_you_must_get_a_shell_to_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/the_other_flag_that_you_must_get_a_shell_to_find.txt -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/vuln -------------------------------------------------------------------------------- /Pwn/ret2win/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/ret2win/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/README.md -------------------------------------------------------------------------------- /Pwn/vault/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge.yaml -------------------------------------------------------------------------------- /Pwn/vault/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/vault/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/Makefile -------------------------------------------------------------------------------- /Pwn/vault/challenge/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/aes.c -------------------------------------------------------------------------------- /Pwn/vault/challenge/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/aes.h -------------------------------------------------------------------------------- /Pwn/vault/challenge/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/aes.py -------------------------------------------------------------------------------- /Pwn/vault/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/flag.txt -------------------------------------------------------------------------------- /Pwn/vault/challenge/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/libc.so.6 -------------------------------------------------------------------------------- /Pwn/vault/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/vault/challenge/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/vuln -------------------------------------------------------------------------------- /Pwn/vault/challenge/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vault/challenge/vuln.c -------------------------------------------------------------------------------- /Pwn/vmdungeon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/README.md -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge.yaml -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/asm -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/compile.py -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{m4ster_vm_esc4pist_82773e5e} 2 | -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/gen.py -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/nsjail.cfg -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/out -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./vm - 4 | -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/solve.py -------------------------------------------------------------------------------- /Pwn/vmdungeon/challenge/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/challenge/vm -------------------------------------------------------------------------------- /Pwn/vmdungeon/vmdungeon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/vmdungeon/vmdungeon.zip -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/README.md -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge.yaml -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/Dockerfile -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/a.sh -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/bzImage -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/decompress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/decompress.sh -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/exploit -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/flag.txt -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/gdb.sh: -------------------------------------------------------------------------------- 1 | target remote localhost:1234 2 | -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/initramfs.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/initramfs.cpio -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/opportunity_dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/opportunity_dist.zip -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/run.py -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/run.sh -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/solve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/solve/Makefile -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/solve/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/solve/exploit -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/solve/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/solve/exploit.c -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/src/Makefile -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/src/chall.c -------------------------------------------------------------------------------- /Pwn/window-of-opportunity/challenge/src/chall.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Pwn/window-of-opportunity/challenge/src/chall.ko -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/README.md -------------------------------------------------------------------------------- /Reversing/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reversing/chaos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/chaos/README.md -------------------------------------------------------------------------------- /Reversing/chaos/challenge/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/chaos/challenge/chall.py -------------------------------------------------------------------------------- /Reversing/chaos/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{pYthOn_obFuScAtION_iS_N0_M4TCH_f0r_U_9e1b23f9} 2 | -------------------------------------------------------------------------------- /Reversing/chaos/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/chaos/challenge/gen.py -------------------------------------------------------------------------------- /Reversing/chaos/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/chaos/challenge/solve.py -------------------------------------------------------------------------------- /Reversing/goated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/goated/README.md -------------------------------------------------------------------------------- /Reversing/goated/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/goated/challenge/gen.py -------------------------------------------------------------------------------- /Reversing/goated/challenge/goated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/goated/challenge/goated.py -------------------------------------------------------------------------------- /Reversing/goated/challenge/lambda_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/goated/challenge/lambda_calc.py -------------------------------------------------------------------------------- /Reversing/goated/challenge/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/goated/challenge/x.py -------------------------------------------------------------------------------- /Reversing/scrambled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/scrambled/README.md -------------------------------------------------------------------------------- /Reversing/scrambled/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{$cr@mbl1ngfl@g$1sc00l} 2 | -------------------------------------------------------------------------------- /Reversing/scrambled/challenge/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/scrambled/challenge/main -------------------------------------------------------------------------------- /Reversing/scrambled/challenge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/scrambled/challenge/main.cpp -------------------------------------------------------------------------------- /Reversing/sheepish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/sheepish/README.md -------------------------------------------------------------------------------- /Reversing/sheepish/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/sheepish/challenge/gen.py -------------------------------------------------------------------------------- /Reversing/sheepish/challenge/lambda_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/sheepish/challenge/lambda_calc.py -------------------------------------------------------------------------------- /Reversing/sheepish/challenge/sheepish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/sheepish/challenge/sheepish.py -------------------------------------------------------------------------------- /Reversing/sheepish/challenge/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/sheepish/challenge/x.py -------------------------------------------------------------------------------- /Reversing/snailchecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/README.md -------------------------------------------------------------------------------- /Reversing/snailchecker/challenge/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/challenge/check.py -------------------------------------------------------------------------------- /Reversing/snailchecker/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/challenge/flag.txt -------------------------------------------------------------------------------- /Reversing/snailchecker/challenge/gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/challenge/gen -------------------------------------------------------------------------------- /Reversing/snailchecker/challenge/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/challenge/gen.c -------------------------------------------------------------------------------- /Reversing/snailchecker/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/snailchecker/challenge/solve.py -------------------------------------------------------------------------------- /Reversing/typechecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/typechecker/README.md -------------------------------------------------------------------------------- /Reversing/typechecker/challenge/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/typechecker/challenge/solve.sage -------------------------------------------------------------------------------- /Reversing/typechecker/challenge/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/typechecker/challenge/source.ts -------------------------------------------------------------------------------- /Reversing/typechecker/challenge/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/typechecker/challenge/transform.js -------------------------------------------------------------------------------- /Reversing/typechecker/challenge/ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/typechecker/challenge/ts.ts -------------------------------------------------------------------------------- /Reversing/unfactored/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/README.md -------------------------------------------------------------------------------- /Reversing/unfactored/deploy.factor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/deploy.factor -------------------------------------------------------------------------------- /Reversing/unfactored/extract-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/extract-image.py -------------------------------------------------------------------------------- /Reversing/unfactored/ictf.unfactored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/ictf.unfactored -------------------------------------------------------------------------------- /Reversing/unfactored/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/solve.sage -------------------------------------------------------------------------------- /Reversing/unfactored/unfactored.factor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/unfactored/unfactored.factor -------------------------------------------------------------------------------- /Reversing/vmcastle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/README.md -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc vm.c -o vm -s 3 | -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/asm -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/compile.py -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/flag.txt -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/gen.py -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/out -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/program -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/vm -------------------------------------------------------------------------------- /Reversing/vmcastle/challenge/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Reversing/vmcastle/challenge/vm.c -------------------------------------------------------------------------------- /Web/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/amogus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/README.md -------------------------------------------------------------------------------- /Web/amogus/admin-bot/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/admin-bot/challenge.yaml -------------------------------------------------------------------------------- /Web/amogus/admin-bot/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/admin-bot/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/amogus/admin-bot/challenge/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/admin-bot/challenge/bot.js -------------------------------------------------------------------------------- /Web/amogus/admin-bot/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/admin-bot/challenge/run.sh -------------------------------------------------------------------------------- /Web/amogus/amogus_dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/amogus_dist.zip -------------------------------------------------------------------------------- /Web/amogus/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge.yaml -------------------------------------------------------------------------------- /Web/amogus/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/amogus/challenge/auth/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/auth/app.py -------------------------------------------------------------------------------- /Web/amogus/challenge/auth/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/auth/static/style.css -------------------------------------------------------------------------------- /Web/amogus/challenge/auth/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/auth/templates/login.html -------------------------------------------------------------------------------- /Web/amogus/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/entrypoint.sh -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/mail/app.py -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{i_guess_the_impostor_leaked_all_our_data_29f1ba23} 2 | -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/secret.txt: -------------------------------------------------------------------------------- 1 | CiYIYrgUeKkYPlkJbSXdlIrTNhpVSmQbvexnbwrrtRABuZMuql 2 | -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/mail/static/style.css -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/templates/emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/mail/templates/emails.html -------------------------------------------------------------------------------- /Web/amogus/challenge/mail/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/mail/templates/index.html -------------------------------------------------------------------------------- /Web/amogus/challenge/nginx/auth-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/nginx/auth-service -------------------------------------------------------------------------------- /Web/amogus/challenge/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/nginx/default -------------------------------------------------------------------------------- /Web/amogus/challenge/nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/nginx/index.html -------------------------------------------------------------------------------- /Web/amogus/challenge/nginx/mail-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/nginx/mail-service -------------------------------------------------------------------------------- /Web/amogus/challenge/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/requirements.txt -------------------------------------------------------------------------------- /Web/amogus/challenge/solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/solve.html -------------------------------------------------------------------------------- /Web/amogus/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/amogus/challenge/solve.py -------------------------------------------------------------------------------- /Web/blank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/README.md -------------------------------------------------------------------------------- /Web/blank/blank_dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/blank_dist.zip -------------------------------------------------------------------------------- /Web/blank/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge.yaml -------------------------------------------------------------------------------- /Web/blank/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/blank/challenge/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/app.js -------------------------------------------------------------------------------- /Web/blank/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{sqli_too_powerful_9b36140a} 2 | -------------------------------------------------------------------------------- /Web/blank/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/package-lock.json -------------------------------------------------------------------------------- /Web/blank/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/package.json -------------------------------------------------------------------------------- /Web/blank/challenge/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/static/styles.css -------------------------------------------------------------------------------- /Web/blank/challenge/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/views/index.ejs -------------------------------------------------------------------------------- /Web/blank/challenge/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/blank/challenge/views/login.ejs -------------------------------------------------------------------------------- /Web/idoriot-revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/README.md -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge.yaml -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{this_ch4lleng3_creator_1s_really_an_idoriot} -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge/index.php -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge/login.php -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge/logout.php -------------------------------------------------------------------------------- /Web/idoriot-revenge/challenge/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot-revenge/challenge/register.php -------------------------------------------------------------------------------- /Web/idoriot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/README.md -------------------------------------------------------------------------------- /Web/idoriot/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge.yaml -------------------------------------------------------------------------------- /Web/idoriot/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/idoriot/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/flag.txt -------------------------------------------------------------------------------- /Web/idoriot/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/index.php -------------------------------------------------------------------------------- /Web/idoriot/challenge/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/login.php -------------------------------------------------------------------------------- /Web/idoriot/challenge/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/logout.php -------------------------------------------------------------------------------- /Web/idoriot/challenge/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/idoriot/challenge/register.php -------------------------------------------------------------------------------- /Web/inspection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/inspection/README.md -------------------------------------------------------------------------------- /Web/inspection/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{m4rkdown_parser_fail_1a211b44} 2 | -------------------------------------------------------------------------------- /Web/login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/README.md -------------------------------------------------------------------------------- /Web/login/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/challenge.yaml -------------------------------------------------------------------------------- /Web/login/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/login/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{why_are_bcrypt_truncating_my_passwords?!} 2 | -------------------------------------------------------------------------------- /Web/login/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/challenge/index.php -------------------------------------------------------------------------------- /Web/login/challenge/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/challenge/init.php -------------------------------------------------------------------------------- /Web/login/challenge/solve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/login/challenge/solve.php -------------------------------------------------------------------------------- /Web/perfect_picture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/README.md -------------------------------------------------------------------------------- /Web/perfect_picture/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge.yaml -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/app.py -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{7ruly_th3_n3x7_p1c4ss0_753433} 2 | -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==2.3.2 2 | pillow==10.0.0 3 | pyexiftool==0.5.5 4 | -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/solve.png -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/solve.py -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/static/style.css -------------------------------------------------------------------------------- /Web/perfect_picture/challenge/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/challenge/templates/index.html -------------------------------------------------------------------------------- /Web/perfect_picture/perfect_picture.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/perfect_picture/perfect_picture.zip -------------------------------------------------------------------------------- /Web/roks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/README.md -------------------------------------------------------------------------------- /Web/roks/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge.yaml -------------------------------------------------------------------------------- /Web/roks/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/roks/challenge/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/file.php -------------------------------------------------------------------------------- /Web/roks/challenge/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/flag.png -------------------------------------------------------------------------------- /Web/roks/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | ictf{tr4nsv3rs1ng_0v3r_r0k5_6a3367} 2 | -------------------------------------------------------------------------------- /Web/roks/challenge/images/image1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image1 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image10 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image2 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image3 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image4 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image5 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image6 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image7 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image8 -------------------------------------------------------------------------------- /Web/roks/challenge/images/image9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/images/image9 -------------------------------------------------------------------------------- /Web/roks/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/index.php -------------------------------------------------------------------------------- /Web/roks/challenge/stopHacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/stopHacking.png -------------------------------------------------------------------------------- /Web/roks/challenge/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/challenge/styles.css -------------------------------------------------------------------------------- /Web/roks/roks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/roks/roks.zip -------------------------------------------------------------------------------- /Web/sanitized-revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/README.md -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge.yaml -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/flag.txt -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/package.json -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/solve.js -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/app.js -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/static/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/static/index.xhtml -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/static/main.js -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/static/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/static/purify.min.js -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/static/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/static/report.js -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/src/static/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/src/static/simple.css -------------------------------------------------------------------------------- /Web/sanitized-revenge/challenge/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized-revenge/challenge/yarn.lock -------------------------------------------------------------------------------- /Web/sanitized/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/README.md -------------------------------------------------------------------------------- /Web/sanitized/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge.yaml -------------------------------------------------------------------------------- /Web/sanitized/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/Dockerfile -------------------------------------------------------------------------------- /Web/sanitized/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/flag.txt -------------------------------------------------------------------------------- /Web/sanitized/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/package.json -------------------------------------------------------------------------------- /Web/sanitized/challenge/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/solve.js -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/app.js -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/static/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/static/index.xhtml -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/static/main.js -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/static/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/static/purify.min.js -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/static/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/static/report.js -------------------------------------------------------------------------------- /Web/sanitized/challenge/src/static/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/src/static/simple.css -------------------------------------------------------------------------------- /Web/sanitized/challenge/unintended_solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/unintended_solution.txt -------------------------------------------------------------------------------- /Web/sanitized/challenge/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaginaryCTF/ImaginaryCTF-2023-Challenges/HEAD/Web/sanitized/challenge/yarn.lock --------------------------------------------------------------------------------