├── .gitignore ├── README.md ├── crypto ├── easy - six bites │ └── readme.md ├── easy - vinegar │ └── readme.md ├── educational - case64ar │ ├── gen_ciphertext_admin.py │ ├── readme.md │ └── solve.py ├── hard - kleptomanic │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── FLAG │ │ ├── main.py │ │ └── nsjail.cfg │ ├── readme.md │ └── solve.py ├── hard - tasty crypto roll │ ├── .gitignore │ ├── cryptanalysis.py │ ├── encrypt-private.py │ ├── encrypt.py │ ├── flag.txt │ ├── idea.txt │ ├── readme.md │ ├── subs.txt │ └── test-subs.py └── medium - key recovery │ ├── decode.py │ ├── flag.txt │ ├── genkey.sh │ ├── id_rsa │ ├── id_rsa.corrupted │ ├── id_rsa.pub │ ├── ransomware.py │ ├── readme.md │ └── recover-original-key.py ├── forensics ├── easy - flag trafficker │ ├── 001.pcap │ └── readme.md ├── easy - susan album party │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── genstub.py │ ├── readme.md │ ├── sol.py │ └── stub ├── educational - needle in a haystack │ ├── haystack │ └── readme.md └── medium - flag hoarder │ ├── core.3504 │ ├── enc │ ├── flag.txt.bz2 │ ├── main.c │ └── readme.md ├── genfolders.py ├── jail ├── easy - rbash — warmup │ ├── challenge.yaml │ ├── challenge │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.c │ │ ├── jail.sh │ │ └── nsjail.cfg │ ├── poc.txt │ └── readme.md ├── easy - turing-complete safeeval │ ├── challenge.yaml │ ├── challenge │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.c │ │ ├── jail.sh │ │ └── nsjail.cfg │ ├── poc.txt │ └── readme.md ├── educational - haxlab │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── flag1.txt │ │ ├── flag2.txt │ │ ├── jail.py │ │ ├── nsjail.cfg │ │ └── proprietary.py │ ├── deploy-readme.txt │ ├── flag1-approach.txt │ ├── jail.py │ ├── possible-unintended-solve-flag2.txt │ ├── proprietary.py │ ├── readme.md │ ├── solve-flag1.txt │ ├── solve-flag2-builtin-not-dict.txt │ └── solve-flag2-py3.8.5.txt ├── hard - rbash — negotiation with the warden │ ├── challenge.yaml │ ├── challenge │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.c │ │ ├── jail.py │ │ ├── nsjail.cfg │ │ ├── run-nsjail.sh │ │ ├── trash │ │ │ └── document.txt │ │ └── workdir │ │ │ └── .gitignore │ ├── readme.md │ ├── solve.sh │ └── solve.txt ├── hard - symcalcjs │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── nsjail.cfg │ │ └── server.mjs │ ├── healthcheck │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── healthcheck.py │ │ ├── healthcheck_loop.sh │ │ └── healthz_webserver.py │ └── readme.md ├── medium - rbash — yet another calculator │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── flag-xEpAN7X3tGYjt4Y0p0FD.txt │ │ ├── jail.sh │ │ └── nsjail.cfg │ ├── readme.md │ └── solve.txt └── medium - symcalcpy │ ├── challenge.yaml │ ├── challenge │ ├── Dockerfile │ ├── flag.txt │ ├── nsjail.cfg │ └── symcalc.py │ ├── readme.md │ └── solve.py ├── misc ├── easy - ishihara test++ │ ├── flag.svg │ ├── flag_solved.svg │ ├── generator │ │ ├── config.md │ │ ├── gen.png │ │ └── gen.psd │ └── readme.md ├── hard - bishop duel │ ├── challenge.yaml │ ├── challenge │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ ├── nsjail.cfg │ │ └── src │ │ │ └── main.rs │ └── readme.md ├── hard - free flag │ ├── challenge.yaml │ ├── challenge │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── next-env.d.ts │ │ ├── next.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pages │ │ │ ├── _app.tsx │ │ │ ├── api │ │ │ │ └── hide.ts │ │ │ └── index.tsx │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── vercel.svg │ │ ├── styles │ │ │ └── globals.css │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── readme.md │ ├── solve.py │ ├── touched.png │ └── untouched.png └── medium - git bomb │ ├── challenge.yaml │ ├── challenge │ ├── .gitconfig │ ├── Dockerfile │ ├── flag │ ├── gcaas.sh │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── run.sh │ └── web-servers.nsjail.cfg │ ├── payload.sh │ ├── poc.sh │ ├── prepare-git-repo.sh │ ├── readme.md │ └── sample-poc-output.txt ├── osint ├── easy - google ransom │ └── readme.md ├── easy - part of the ship │ └── readme.md ├── educational - this flag has been stolen │ └── readme.md ├── hard - mann hunt │ └── readme.md ├── hard - paypal playboy │ └── readme.md ├── medium - samuel │ └── readme.md └── medium - turing test │ ├── challenge.yaml │ ├── challenge │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── components │ │ ├── Layout.tsx │ │ ├── List.tsx │ │ ├── ListDetail.tsx │ │ └── ListItem.tsx │ ├── interfaces │ │ └── index.ts │ ├── next-env.d.ts │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── check │ │ │ │ ├── birthday │ │ │ │ │ └── [key] │ │ │ │ │ │ └── index.ts │ │ │ │ ├── dogname │ │ │ │ │ └── [key] │ │ │ │ │ │ └── index.ts │ │ │ │ ├── flag │ │ │ │ │ └── [key] │ │ │ │ │ │ └── index.ts │ │ │ │ └── name │ │ │ │ │ └── index.ts │ │ │ └── login │ │ │ │ └── index.ts │ │ ├── flagviewer │ │ │ └── [flag].tsx │ │ └── index.tsx │ ├── postcss.config.js │ ├── styles │ │ └── index.css │ ├── tailwind.config.js │ └── tsconfig.json │ └── readme.md ├── pwn ├── easy - horoscope │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── horoscope │ │ ├── horoscope.c │ │ ├── nsjail.cfg │ │ └── sol.py │ └── readme.md ├── easy - oil spill │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── OilSpill │ │ ├── OilSpill.c │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ └── sol.py │ └── readme.md ├── educational - printfailed │ ├── backup │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── printFailed │ │ └── printFailed.c │ ├── healthcheck │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── healthcheck.py │ │ ├── healthcheck.py.save │ │ ├── healthcheck_loop.sh │ │ ├── healthz_webserver.py │ │ └── sol.py │ ├── printFailed.c │ ├── readme.md │ └── sol.py ├── hard - shamav │ ├── .gitignore │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── antivirus │ │ │ ├── launcher.sh │ │ │ ├── malware-hashes.txt │ │ │ └── server.py │ │ ├── ctf │ │ │ ├── bin │ │ │ │ └── scan │ │ │ └── virus-samples │ │ │ │ ├── phishing.py │ │ │ │ ├── phishing1.txt │ │ │ │ ├── phishing2.txt │ │ │ │ └── test-malware.txt │ │ ├── flag.txt │ │ ├── nsjail.cfg │ │ ├── run.sh │ │ ├── subgid │ │ └── subuid │ ├── cleanup.sh │ ├── exploit │ │ ├── exploit.txt │ │ └── filename-predict.py │ ├── idea.txt │ ├── local-testing.sh │ ├── read-flag.sh │ └── readme.md ├── medium - breakfast menu │ ├── challenge.yaml │ ├── challenge │ │ ├── BreakfastMenu │ │ ├── BreakfastMenu.c │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ └── nsjail.cfg │ └── readme.md └── medium - secure horoscope │ ├── challenge.yaml │ ├── challenge │ ├── Dockerfile │ ├── Makefile │ ├── flag.txt │ ├── nsjail.cfg │ ├── secureHoroscope │ ├── secureHoroscope.c │ └── solve5.py │ └── readme.md ├── revenge ├── easy - internprise encryption │ ├── gen │ │ ├── Config.js │ │ ├── generate.js │ │ ├── lib.js │ │ ├── solve.js │ │ └── unencrypted │ │ │ ├── flag.txt │ │ │ ├── q2_report.txt │ │ │ └── shareholder_meeting_script.txt │ ├── package.json │ ├── public │ │ ├── davecrypt.js │ │ ├── flag.txt │ │ ├── q2_report.txt │ │ └── shareholder_meeting_script.txt │ └── readme.md ├── easy - oracle │ ├── Oracle.java │ ├── Solve.java │ ├── flag.txt │ └── readme.md ├── educational - a bowl of pythons │ ├── chal-admin.py │ ├── chal-template.txt │ ├── chal.py │ ├── mkchal.py │ └── readme.md ├── hard - magic^3 │ ├── .gitignore │ ├── case-gen.py │ ├── challenge.yaml │ ├── challenge │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── flag.txt │ │ ├── magic3.cpp │ │ └── nsjail.cfg │ ├── cube-scrambler.py │ ├── cube.txt │ ├── magic_common.py │ └── readme.md ├── hard - osrev │ ├── .gitignore │ ├── Makefile │ ├── debug.mak │ ├── generator.py │ ├── idea.txt │ ├── obfuscator.py │ ├── program.c │ ├── readme.md │ ├── solve.txt │ └── unobfuscated.mak └── medium - bit flipping machine │ ├── .gitignore │ ├── challenge.yaml │ ├── challenge │ ├── Dockerfile │ ├── Makefile │ ├── flag-final.txt │ ├── flag-halfway.txt │ ├── flip.cpp │ └── nsjail.cfg │ ├── compute-flip-code.py │ ├── readme.md │ └── solve.in └── web ├── easy - jawt that down! ├── challenge.yaml ├── challenge │ ├── Dockerfile │ ├── build.bat │ ├── build.mjs │ ├── build.sh │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Config.ts │ │ ├── TokenGranter.ts │ │ ├── index.ts │ │ ├── ods.psd │ │ ├── public │ │ │ ├── about.tsx │ │ │ ├── components │ │ │ │ ├── ArticleSection.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── LoginBox.tsx │ │ │ │ └── TopBar.tsx │ │ │ ├── css │ │ │ │ ├── fonts.css │ │ │ │ └── styles.css │ │ │ ├── fonts │ │ │ │ ├── merriweather-v30-latin-700.woff │ │ │ │ ├── merriweather-v30-latin-700.woff2 │ │ │ │ ├── merriweather-v30-latin-regular.woff │ │ │ │ └── merriweather-v30-latin-regular.woff2 │ │ │ ├── img │ │ │ │ ├── banner.jpg │ │ │ │ ├── bedegrayne.jpg │ │ │ │ ├── coralia.jpg │ │ │ │ ├── goat.svg │ │ │ │ ├── gwyneth.jpg │ │ │ │ ├── hardigrass.jpg │ │ │ │ ├── hrapenly.jpg │ │ │ │ └── ods.png │ │ │ ├── login.tsx │ │ │ ├── main.tsx │ │ │ ├── robots.txt │ │ │ └── template.html │ │ └── solve.ts │ ├── tsconfig.json │ └── webpack.config.js ├── readme.md └── solve.mjs ├── easy - lots of logs ├── challenge.yaml ├── challenge │ ├── Dockerfile │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── README.txt │ │ ├── generate_logs.ts │ │ ├── index.ts │ │ └── public │ │ │ ├── components │ │ │ ├── About.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Post.tsx │ │ │ ├── PostContainer.tsx │ │ │ └── Splash.tsx │ │ │ ├── credits.tsx │ │ │ ├── css │ │ │ ├── fonts.css │ │ │ └── styles.css │ │ │ ├── fonts │ │ │ ├── merriweather-v28-latin-700.woff │ │ │ ├── merriweather-v28-latin-700.woff2 │ │ │ ├── merriweather-v28-latin-900.woff │ │ │ ├── merriweather-v28-latin-900.woff2 │ │ │ ├── merriweather-v28-latin-italic.woff │ │ │ ├── merriweather-v28-latin-italic.woff2 │ │ │ ├── merriweather-v28-latin-regular.woff │ │ │ ├── merriweather-v28-latin-regular.woff2 │ │ │ ├── milonga-v18-latin-regular.woff │ │ │ └── milonga-v18-latin-regular.woff2 │ │ │ ├── img │ │ │ ├── background.jpg │ │ │ ├── clock.svg │ │ │ ├── favicon.png │ │ │ ├── john.jpg │ │ │ ├── log1.jpg │ │ │ ├── log2.jpg │ │ │ └── log3.jpg │ │ │ ├── index.tsx │ │ │ ├── logs.tar │ │ │ ├── robots.txt │ │ │ └── template.html │ ├── tsconfig.json │ └── webpack.config.js ├── readme.md └── solve.mjs ├── educational - apollo 1337 ├── challenge.yaml ├── challenge │ ├── Dockerfile │ ├── README.md │ ├── data │ │ ├── flag.js │ │ ├── fuelPumps.js │ │ └── token.js │ ├── package-lock.json │ ├── package.json │ └── pages │ │ ├── api │ │ ├── fuel │ │ │ ├── [id].js │ │ │ └── index.js │ │ ├── rocketLaunch.js │ │ └── status.js │ │ └── index.js ├── healthcheck │ ├── Dockerfile │ ├── README.md │ ├── healthcheck.py │ ├── healthcheck_loop.sh │ └── healthz_webserver.py └── readme.md ├── hard - curl up and read ├── challenge.yaml ├── challenge │ ├── .gitignore │ ├── Dockerfile │ ├── next-env.d.ts │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── index.tsx │ │ └── read │ │ │ └── [page].tsx │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ └── vercel.svg │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ └── tsconfig.json ├── healthcheck │ ├── Dockerfile │ ├── README.md │ ├── healthcheck.py │ ├── healthcheck_loop.sh │ └── healthz_webserver.py └── readme.md ├── medium - gullible by dovesign ├── challenge.yaml ├── challenge │ ├── .gitignore │ ├── Dockerfile │ ├── Species.json │ ├── challenge.db │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── ImageProcessing.ts │ │ ├── index.ts │ │ └── public │ │ │ ├── Config.ts │ │ │ ├── about.tsx │ │ │ ├── components │ │ │ ├── CallToAction.tsx │ │ │ ├── Gallery.tsx │ │ │ ├── GalleryImage.tsx │ │ │ ├── Splash.tsx │ │ │ └── TopBar.tsx │ │ │ ├── css │ │ │ ├── fonts.css │ │ │ └── styles.css │ │ │ ├── fonts │ │ │ ├── neuton-v16-latin-700.woff │ │ │ ├── neuton-v16-latin-700.woff2 │ │ │ ├── neuton-v16-latin-regular.woff │ │ │ ├── neuton-v16-latin-regular.woff2 │ │ │ ├── norican-v12-latin-regular.woff │ │ │ └── norican-v12-latin-regular.woff2 │ │ │ ├── img │ │ │ ├── bird.svg │ │ │ ├── birds │ │ │ │ ├── american_goldfinch.jpg │ │ │ │ ├── atlantic_puffin.jpg │ │ │ │ ├── bald_eagle.jpg │ │ │ │ ├── blue_tailed_bee_eater.jpg │ │ │ │ ├── blue_tit.jpg │ │ │ │ ├── common_kingfisher.jpg │ │ │ │ ├── eurasian_tree_sparrow.jpg │ │ │ │ ├── european_bee_eater.jpg │ │ │ │ ├── european_robin.jpg │ │ │ │ ├── great_horned_owl.jpg │ │ │ │ ├── greater_racket_tailed_drongo.jpg │ │ │ │ ├── herring_gull.jpg │ │ │ │ ├── house_finch.jpg │ │ │ │ ├── lilac_breasted_roller.jpg │ │ │ │ ├── northern_cardinal.jpg │ │ │ │ ├── orange_chinned_parakeet.jpg │ │ │ │ ├── plumbeous_water_redstart.jpg │ │ │ │ ├── red_legged_honeycreeper.jpg │ │ │ │ ├── rock_dove.jpg │ │ │ │ ├── swinhoes_white_eye.jpg │ │ │ │ ├── tufted_titmouse.jpg │ │ │ │ ├── white_necked_jacobin.jpg │ │ │ │ ├── yellow_throated_toucan.jpg │ │ │ │ └── yellow_warbler.jpg │ │ │ └── logo.svg │ │ │ ├── index.tsx │ │ │ ├── robots.txt │ │ │ ├── template.html │ │ │ └── upload.tsx │ ├── tsconfig.json │ └── webpack.config.js ├── readme.md └── solution.jpg └── medium - humongous mistake ├── challenge.yaml ├── challenge ├── .gitignore ├── Dockerfile ├── package-lock.json ├── package.json ├── runchal.sh ├── src │ ├── CAR.ts │ ├── Code.ts │ ├── Config.ts │ ├── Database.ts │ ├── comms.ts │ ├── discordbot.ts │ ├── index.ts │ └── public │ │ ├── about.tsx │ │ ├── addfunds.tsx │ │ ├── boughtshell.tsx │ │ ├── buyshell.tsx │ │ ├── components │ │ ├── AcctMgmt.tsx │ │ ├── Backsplash.tsx │ │ ├── CenterBox.tsx │ │ ├── ItemCard.tsx │ │ └── TopBar.tsx │ │ ├── credits.tsx │ │ ├── css │ │ ├── fonts.css │ │ └── styles.css │ │ ├── fonts │ │ ├── arima-madurai-v12-latin-700.woff │ │ ├── arima-madurai-v12-latin-700.woff2 │ │ ├── arima-madurai-v12-latin-800.woff │ │ ├── arima-madurai-v12-latin-800.woff2 │ │ ├── arima-madurai-v12-latin-regular.woff │ │ ├── arima-madurai-v12-latin-regular.woff2 │ │ ├── solway-v13-latin-700.woff │ │ ├── solway-v13-latin-700.woff2 │ │ ├── solway-v13-latin-regular.woff │ │ └── solway-v13-latin-regular.woff2 │ │ ├── img │ │ ├── calico.jpg │ │ ├── dog.jpg │ │ ├── ffc.jpg │ │ ├── flagshell.png │ │ ├── giant_cockle.jpg │ │ ├── harp.jpg │ │ ├── horse.jpg │ │ ├── melon.jpg │ │ ├── murex.jpg │ │ ├── olive.jpg │ │ ├── persiancerith.jpg │ │ ├── shell.svg │ │ ├── sundial.jpg │ │ ├── venuscomb.jpg │ │ └── wentletrap.jpg │ │ ├── index.tsx │ │ ├── login.tsx │ │ ├── robots.txt │ │ ├── shop.tsx │ │ ├── template.html │ │ └── twofa.tsx ├── tsconfig.json └── webpack.config.js ├── package-lock.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/README.md -------------------------------------------------------------------------------- /crypto/easy - six bites/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/easy - six bites/readme.md -------------------------------------------------------------------------------- /crypto/easy - vinegar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/easy - vinegar/readme.md -------------------------------------------------------------------------------- /crypto/educational - case64ar/gen_ciphertext_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/educational - case64ar/gen_ciphertext_admin.py -------------------------------------------------------------------------------- /crypto/educational - case64ar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/educational - case64ar/readme.md -------------------------------------------------------------------------------- /crypto/educational - case64ar/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/educational - case64ar/solve.py -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/challenge.yaml -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/challenge/Dockerfile -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/challenge/FLAG: -------------------------------------------------------------------------------- 1 | sdctf{W0W_aR3_y0u_Th3_NSA} -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/challenge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/challenge/main.py -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/challenge/nsjail.cfg -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/readme.md -------------------------------------------------------------------------------- /crypto/hard - kleptomanic/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - kleptomanic/solve.py -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/.gitignore: -------------------------------------------------------------------------------- 1 | enc.bin 2 | -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/cryptanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/cryptanalysis.py -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/encrypt-private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/encrypt-private.py -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/encrypt.py -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{r0l1-uR~pWn.c6yPtO_wi7h,ECB:I5*b8d!KQvJmLxgX9DsaANMFSeU} 2 | -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/idea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/idea.txt -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/readme.md -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/subs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/subs.txt -------------------------------------------------------------------------------- /crypto/hard - tasty crypto roll/test-subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/hard - tasty crypto roll/test-subs.py -------------------------------------------------------------------------------- /crypto/medium - key recovery/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/decode.py -------------------------------------------------------------------------------- /crypto/medium - key recovery/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/flag.txt -------------------------------------------------------------------------------- /crypto/medium - key recovery/genkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/genkey.sh -------------------------------------------------------------------------------- /crypto/medium - key recovery/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/id_rsa -------------------------------------------------------------------------------- /crypto/medium - key recovery/id_rsa.corrupted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/id_rsa.corrupted -------------------------------------------------------------------------------- /crypto/medium - key recovery/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/id_rsa.pub -------------------------------------------------------------------------------- /crypto/medium - key recovery/ransomware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/ransomware.py -------------------------------------------------------------------------------- /crypto/medium - key recovery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/readme.md -------------------------------------------------------------------------------- /crypto/medium - key recovery/recover-original-key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/crypto/medium - key recovery/recover-original-key.py -------------------------------------------------------------------------------- /forensics/easy - flag trafficker/001.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - flag trafficker/001.pcap -------------------------------------------------------------------------------- /forensics/easy - flag trafficker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - flag trafficker/readme.md -------------------------------------------------------------------------------- /forensics/easy - susan album party/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/1.jpg -------------------------------------------------------------------------------- /forensics/easy - susan album party/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/2.jpg -------------------------------------------------------------------------------- /forensics/easy - susan album party/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/3.jpg -------------------------------------------------------------------------------- /forensics/easy - susan album party/genstub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/genstub.py -------------------------------------------------------------------------------- /forensics/easy - susan album party/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/readme.md -------------------------------------------------------------------------------- /forensics/easy - susan album party/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/sol.py -------------------------------------------------------------------------------- /forensics/easy - susan album party/stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/easy - susan album party/stub -------------------------------------------------------------------------------- /forensics/educational - needle in a haystack/haystack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/educational - needle in a haystack/haystack -------------------------------------------------------------------------------- /forensics/educational - needle in a haystack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/educational - needle in a haystack/readme.md -------------------------------------------------------------------------------- /forensics/medium - flag hoarder/core.3504: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/medium - flag hoarder/core.3504 -------------------------------------------------------------------------------- /forensics/medium - flag hoarder/enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/medium - flag hoarder/enc -------------------------------------------------------------------------------- /forensics/medium - flag hoarder/flag.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/medium - flag hoarder/flag.txt.bz2 -------------------------------------------------------------------------------- /forensics/medium - flag hoarder/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/medium - flag hoarder/main.c -------------------------------------------------------------------------------- /forensics/medium - flag hoarder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/forensics/medium - flag hoarder/readme.md -------------------------------------------------------------------------------- /genfolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/genfolders.py -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge.yaml -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | flag 2 | -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge/Makefile -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge/flag.c -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/jail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge/jail.sh -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/poc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/poc.txt -------------------------------------------------------------------------------- /jail/easy - rbash — warmup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - rbash — warmup/readme.md -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge.yaml -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | flag 2 | -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge/Makefile -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge/flag.c -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/jail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge/jail.sh -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/poc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/poc.txt -------------------------------------------------------------------------------- /jail/easy - turing-complete safeeval/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/easy - turing-complete safeeval/readme.md -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/challenge.yaml -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/flag1.txt: -------------------------------------------------------------------------------- 1 | sdctf{get@ttr_r3ads_3v3ryth1ng} 2 | -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/flag2.txt: -------------------------------------------------------------------------------- 1 | sdctf{Aud1T_H00ks_Ar3_th3_3aSY_S0lUti0n} 2 | -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/jail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/challenge/jail.py -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/educational - haxlab/challenge/proprietary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/challenge/proprietary.py -------------------------------------------------------------------------------- /jail/educational - haxlab/deploy-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/deploy-readme.txt -------------------------------------------------------------------------------- /jail/educational - haxlab/flag1-approach.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/flag1-approach.txt -------------------------------------------------------------------------------- /jail/educational - haxlab/jail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/jail.py -------------------------------------------------------------------------------- /jail/educational - haxlab/possible-unintended-solve-flag2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/possible-unintended-solve-flag2.txt -------------------------------------------------------------------------------- /jail/educational - haxlab/proprietary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/proprietary.py -------------------------------------------------------------------------------- /jail/educational - haxlab/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/readme.md -------------------------------------------------------------------------------- /jail/educational - haxlab/solve-flag1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/solve-flag1.txt -------------------------------------------------------------------------------- /jail/educational - haxlab/solve-flag2-builtin-not-dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/solve-flag2-builtin-not-dict.txt -------------------------------------------------------------------------------- /jail/educational - haxlab/solve-flag2-py3.8.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/educational - haxlab/solve-flag2-py3.8.5.txt -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge.yaml -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | flag 2 | -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/Makefile -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/flag.c -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/jail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/jail.py -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/run-nsjail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/challenge/run-nsjail.sh -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/trash/document.txt: -------------------------------------------------------------------------------- 1 | Dear Warden, 2 | 3 | Checkout my cool flag @ https://youtu.be/dQw4w9WgXcQ 4 | 5 | Best, 6 | Anonymous 7 | -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/challenge/workdir/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/readme.md -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/solve.sh -------------------------------------------------------------------------------- /jail/hard - rbash — negotiation with the warden/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - rbash — negotiation with the warden/solve.txt -------------------------------------------------------------------------------- /jail/hard - symcalcjs/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/challenge.yaml -------------------------------------------------------------------------------- /jail/hard - symcalcjs/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/hard - symcalcjs/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/hard - symcalcjs/challenge/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/challenge/server.mjs -------------------------------------------------------------------------------- /jail/hard - symcalcjs/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/healthcheck/Dockerfile -------------------------------------------------------------------------------- /jail/hard - symcalcjs/healthcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/healthcheck/README.md -------------------------------------------------------------------------------- /jail/hard - symcalcjs/healthcheck/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/healthcheck/healthcheck.py -------------------------------------------------------------------------------- /jail/hard - symcalcjs/healthcheck/healthcheck_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/healthcheck/healthcheck_loop.sh -------------------------------------------------------------------------------- /jail/hard - symcalcjs/healthcheck/healthz_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/healthcheck/healthz_webserver.py -------------------------------------------------------------------------------- /jail/hard - symcalcjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/hard - symcalcjs/readme.md -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/challenge.yaml -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/challenge/flag-xEpAN7X3tGYjt4Y0p0FD.txt: -------------------------------------------------------------------------------- 1 | sdctf{red1r3ct1ng_std1n_IS_p3rm1tt3d_1n_rb45h!} 2 | -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/challenge/jail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/challenge/jail.sh -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/readme.md -------------------------------------------------------------------------------- /jail/medium - rbash — yet another calculator/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - rbash — yet another calculator/solve.txt -------------------------------------------------------------------------------- /jail/medium - symcalcpy/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/challenge.yaml -------------------------------------------------------------------------------- /jail/medium - symcalcpy/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/challenge/Dockerfile -------------------------------------------------------------------------------- /jail/medium - symcalcpy/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/challenge/flag.txt -------------------------------------------------------------------------------- /jail/medium - symcalcpy/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/challenge/nsjail.cfg -------------------------------------------------------------------------------- /jail/medium - symcalcpy/challenge/symcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/challenge/symcalc.py -------------------------------------------------------------------------------- /jail/medium - symcalcpy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/readme.md -------------------------------------------------------------------------------- /jail/medium - symcalcpy/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/jail/medium - symcalcpy/solve.py -------------------------------------------------------------------------------- /misc/easy - ishihara test++/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/flag.svg -------------------------------------------------------------------------------- /misc/easy - ishihara test++/flag_solved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/flag_solved.svg -------------------------------------------------------------------------------- /misc/easy - ishihara test++/generator/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/generator/config.md -------------------------------------------------------------------------------- /misc/easy - ishihara test++/generator/gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/generator/gen.png -------------------------------------------------------------------------------- /misc/easy - ishihara test++/generator/gen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/generator/gen.psd -------------------------------------------------------------------------------- /misc/easy - ishihara test++/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/easy - ishihara test++/readme.md -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge.yaml -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge/Cargo.lock -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge/Cargo.toml -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge/Dockerfile -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge/nsjail.cfg -------------------------------------------------------------------------------- /misc/hard - bishop duel/challenge/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/challenge/src/main.rs -------------------------------------------------------------------------------- /misc/hard - bishop duel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - bishop duel/readme.md -------------------------------------------------------------------------------- /misc/hard - free flag/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge.yaml -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/.gitignore -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/Dockerfile -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/README.md -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/next-env.d.ts -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/next.config.js -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/package-lock.json -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/package.json -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/pages/_app.tsx -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/pages/api/hide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/pages/api/hide.ts -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/pages/index.tsx -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/postcss.config.js -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/public/favicon.ico -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/public/vercel.svg -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/styles/globals.css -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/tailwind.config.js -------------------------------------------------------------------------------- /misc/hard - free flag/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/challenge/tsconfig.json -------------------------------------------------------------------------------- /misc/hard - free flag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/readme.md -------------------------------------------------------------------------------- /misc/hard - free flag/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/solve.py -------------------------------------------------------------------------------- /misc/hard - free flag/touched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/touched.png -------------------------------------------------------------------------------- /misc/hard - free flag/untouched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/hard - free flag/untouched.png -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge.yaml -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/.gitconfig -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/Dockerfile -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/flag: -------------------------------------------------------------------------------- 1 | sdctf{4lw4y5_Us3_GIT_cl0nE_n3v3R_sn3ak_R3P0} 2 | -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/gcaas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/gcaas.sh -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/index.js -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/package-lock.json -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/package.json -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/run.sh -------------------------------------------------------------------------------- /misc/medium - git bomb/challenge/web-servers.nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/challenge/web-servers.nsjail.cfg -------------------------------------------------------------------------------- /misc/medium - git bomb/payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/payload.sh -------------------------------------------------------------------------------- /misc/medium - git bomb/poc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/poc.sh -------------------------------------------------------------------------------- /misc/medium - git bomb/prepare-git-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/prepare-git-repo.sh -------------------------------------------------------------------------------- /misc/medium - git bomb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/readme.md -------------------------------------------------------------------------------- /misc/medium - git bomb/sample-poc-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/misc/medium - git bomb/sample-poc-output.txt -------------------------------------------------------------------------------- /osint/easy - google ransom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/easy - google ransom/readme.md -------------------------------------------------------------------------------- /osint/easy - part of the ship/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/easy - part of the ship/readme.md -------------------------------------------------------------------------------- /osint/educational - this flag has been stolen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/educational - this flag has been stolen/readme.md -------------------------------------------------------------------------------- /osint/hard - mann hunt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/hard - mann hunt/readme.md -------------------------------------------------------------------------------- /osint/hard - paypal playboy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/hard - paypal playboy/readme.md -------------------------------------------------------------------------------- /osint/medium - samuel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - samuel/readme.md -------------------------------------------------------------------------------- /osint/medium - turing test/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge.yaml -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/.gitignore -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/Dockerfile -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/README.md -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/components/Layout.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/components/List.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/components/ListDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/components/ListDetail.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/components/ListItem.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/interfaces/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/next-env.d.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/package-lock.json -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/package.json -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/_app.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/api/check/birthday/[key]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/api/check/birthday/[key]/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/api/check/dogname/[key]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/api/check/dogname/[key]/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/api/check/flag/[key]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/api/check/flag/[key]/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/api/check/name/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/api/check/name/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/api/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/api/login/index.ts -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/flagviewer/[flag].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/flagviewer/[flag].tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/pages/index.tsx -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/postcss.config.js -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/styles/index.css -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/tailwind.config.js -------------------------------------------------------------------------------- /osint/medium - turing test/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/challenge/tsconfig.json -------------------------------------------------------------------------------- /osint/medium - turing test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/osint/medium - turing test/readme.md -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge.yaml -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/Makefile -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{S33ms_y0ur_h0rO5c0p3_W4s_g00d_1oD4y} -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/horoscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/horoscope -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/horoscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/horoscope.c -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/easy - horoscope/challenge/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/challenge/sol.py -------------------------------------------------------------------------------- /pwn/easy - horoscope/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - horoscope/readme.md -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge.yaml -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/Makefile -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/OilSpill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/OilSpill -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/OilSpill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/OilSpill.c -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{th4nks_f0r_S4V1nG_tH3_duCk5} -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/easy - oil spill/challenge/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/challenge/sol.py -------------------------------------------------------------------------------- /pwn/easy - oil spill/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/easy - oil spill/readme.md -------------------------------------------------------------------------------- /pwn/educational - printfailed/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/backup -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge.yaml -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge/Makefile -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{Th1S_C0d3_iSNT_a_Fa1lUR3_1tS_a_LEARNing_0pPORTun1ty} -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/printFailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge/printFailed -------------------------------------------------------------------------------- /pwn/educational - printfailed/challenge/printFailed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/challenge/printFailed.c -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/Dockerfile -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/README.md -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/healthcheck.py -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/healthcheck.py.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/healthcheck.py.save -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/healthcheck_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/healthcheck_loop.sh -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/healthz_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/healthz_webserver.py -------------------------------------------------------------------------------- /pwn/educational - printfailed/healthcheck/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/healthcheck/sol.py -------------------------------------------------------------------------------- /pwn/educational - printfailed/printFailed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/printFailed.c -------------------------------------------------------------------------------- /pwn/educational - printfailed/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/readme.md -------------------------------------------------------------------------------- /pwn/educational - printfailed/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/educational - printfailed/sol.py -------------------------------------------------------------------------------- /pwn/hard - shamav/.gitignore: -------------------------------------------------------------------------------- 1 | seed 2 | -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge.yaml -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/Makefile -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/antivirus/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/antivirus/launcher.sh -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/antivirus/malware-hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/antivirus/malware-hashes.txt -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/antivirus/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/antivirus/server.py -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/ctf/bin/scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/ctf/bin/scan -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/ctf/virus-samples/phishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/ctf/virus-samples/phishing.py -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/ctf/virus-samples/phishing1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/ctf/virus-samples/phishing1.txt -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/ctf/virus-samples/phishing2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/ctf/virus-samples/phishing2.txt -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/ctf/virus-samples/test-malware.txt: -------------------------------------------------------------------------------- 1 | Hello I am a test malware! 2 | -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{5ymL1Nks_ar3_4_curs3d_f3a7uRe_0f_*NIX} -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/challenge/run.sh -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/subgid: -------------------------------------------------------------------------------- 1 | user:1001:2 2 | -------------------------------------------------------------------------------- /pwn/hard - shamav/challenge/subuid: -------------------------------------------------------------------------------- 1 | user:1001:2 2 | -------------------------------------------------------------------------------- /pwn/hard - shamav/cleanup.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | cd "$(dirname -- "${BASH_SOURCE[0]}")/challenge/antivirus" || exit 4 | 5 | rm seed socket av.log 6 | -------------------------------------------------------------------------------- /pwn/hard - shamav/exploit/exploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/exploit/exploit.txt -------------------------------------------------------------------------------- /pwn/hard - shamav/exploit/filename-predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/exploit/filename-predict.py -------------------------------------------------------------------------------- /pwn/hard - shamav/idea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/idea.txt -------------------------------------------------------------------------------- /pwn/hard - shamav/local-testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/local-testing.sh -------------------------------------------------------------------------------- /pwn/hard - shamav/read-flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/read-flag.sh -------------------------------------------------------------------------------- /pwn/hard - shamav/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/hard - shamav/readme.md -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge.yaml -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/BreakfastMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge/BreakfastMenu -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/BreakfastMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge/BreakfastMenu.c -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge/Makefile -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{Th3_m05t_1Mp0Rt4nT_m34L_0f_th3_d4Y} 2 | -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/medium - breakfast menu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - breakfast menu/readme.md -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge.yaml -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/Dockerfile -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/Makefile -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{Th0s3_d4rN_P15C3s_g0t_m3} 2 | -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/nsjail.cfg -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/secureHoroscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/secureHoroscope -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/secureHoroscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/secureHoroscope.c -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/challenge/solve5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/challenge/solve5.py -------------------------------------------------------------------------------- /pwn/medium - secure horoscope/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/pwn/medium - secure horoscope/readme.md -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/Config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | FLAG: "sdctf{D0n't_b3_a_D4v3_ju5t_Use_AES_0r_S0me7h1ng}" 3 | } -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/generate.js -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/lib.js -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/solve.js -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/unencrypted/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/unencrypted/flag.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/unencrypted/q2_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/unencrypted/q2_report.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/gen/unencrypted/shareholder_meeting_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/gen/unencrypted/shareholder_meeting_script.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/package.json -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/public/davecrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/public/davecrypt.js -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/public/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/public/flag.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/public/q2_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/public/q2_report.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/public/shareholder_meeting_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/public/shareholder_meeting_script.txt -------------------------------------------------------------------------------- /revenge/easy - internprise encryption/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - internprise encryption/readme.md -------------------------------------------------------------------------------- /revenge/easy - oracle/Oracle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - oracle/Oracle.java -------------------------------------------------------------------------------- /revenge/easy - oracle/Solve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - oracle/Solve.java -------------------------------------------------------------------------------- /revenge/easy - oracle/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{u_f0und_th3_LANGu4ge_0f_th1s_0r4cl3} -------------------------------------------------------------------------------- /revenge/easy - oracle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/easy - oracle/readme.md -------------------------------------------------------------------------------- /revenge/educational - a bowl of pythons/chal-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/educational - a bowl of pythons/chal-admin.py -------------------------------------------------------------------------------- /revenge/educational - a bowl of pythons/chal-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/educational - a bowl of pythons/chal-template.txt -------------------------------------------------------------------------------- /revenge/educational - a bowl of pythons/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/educational - a bowl of pythons/chal.py -------------------------------------------------------------------------------- /revenge/educational - a bowl of pythons/mkchal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/educational - a bowl of pythons/mkchal.py -------------------------------------------------------------------------------- /revenge/educational - a bowl of pythons/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/educational - a bowl of pythons/readme.md -------------------------------------------------------------------------------- /revenge/hard - magic^3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/.gitignore -------------------------------------------------------------------------------- /revenge/hard - magic^3/case-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/case-gen.py -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/challenge.yaml -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/challenge/Dockerfile -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/challenge/Makefile -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | sdctf{U2_m4st3rED_thE_DarK_MAg1c_0f_cub1ng} 2 | -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge/magic3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/challenge/magic3.cpp -------------------------------------------------------------------------------- /revenge/hard - magic^3/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/challenge/nsjail.cfg -------------------------------------------------------------------------------- /revenge/hard - magic^3/cube-scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/cube-scrambler.py -------------------------------------------------------------------------------- /revenge/hard - magic^3/cube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/cube.txt -------------------------------------------------------------------------------- /revenge/hard - magic^3/magic_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/magic_common.py -------------------------------------------------------------------------------- /revenge/hard - magic^3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - magic^3/readme.md -------------------------------------------------------------------------------- /revenge/hard - osrev/.gitignore: -------------------------------------------------------------------------------- 1 | program 2 | -------------------------------------------------------------------------------- /revenge/hard - osrev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/Makefile -------------------------------------------------------------------------------- /revenge/hard - osrev/debug.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/debug.mak -------------------------------------------------------------------------------- /revenge/hard - osrev/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/generator.py -------------------------------------------------------------------------------- /revenge/hard - osrev/idea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/idea.txt -------------------------------------------------------------------------------- /revenge/hard - osrev/obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/obfuscator.py -------------------------------------------------------------------------------- /revenge/hard - osrev/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/program.c -------------------------------------------------------------------------------- /revenge/hard - osrev/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/readme.md -------------------------------------------------------------------------------- /revenge/hard - osrev/solve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/solve.txt -------------------------------------------------------------------------------- /revenge/hard - osrev/unobfuscated.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/hard - osrev/unobfuscated.mak -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/.gitignore -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/challenge.yaml -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/challenge/Dockerfile -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/challenge/Makefile -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/flag-final.txt: -------------------------------------------------------------------------------- 1 | sdctf{nu11_t3rmin4tED_C_str1ngs_ar3_4_p41nFuL_l3GaCY} 2 | -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/flag-halfway.txt: -------------------------------------------------------------------------------- 1 | sdctf{s3Cr3T_C0d3_15_RaDIx26_b1t_p0SIti0n5} 2 | -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/challenge/flip.cpp -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/challenge/nsjail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/challenge/nsjail.cfg -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/compute-flip-code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/compute-flip-code.py -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/readme.md -------------------------------------------------------------------------------- /revenge/medium - bit flipping machine/solve.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/revenge/medium - bit flipping machine/solve.in -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge.yaml -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/Dockerfile -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/build.bat -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/build.mjs -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/build.sh -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/package-lock.json -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/package.json -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/Config.ts -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/TokenGranter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/TokenGranter.ts -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/index.ts -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/ods.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/ods.psd -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/about.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/components/ArticleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/components/ArticleSection.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/components/Footer.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/components/LoginBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/components/LoginBox.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/components/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/components/TopBar.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/css/fonts.css -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/css/styles.css -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-700.woff -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-700.woff2 -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-regular.woff -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/fonts/merriweather-v30-latin-regular.woff2 -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/banner.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/bedegrayne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/bedegrayne.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/coralia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/coralia.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/goat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/goat.svg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/gwyneth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/gwyneth.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/hardigrass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/hardigrass.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/hrapenly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/hrapenly.jpg -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/img/ods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/img/ods.png -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/login.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/main.tsx -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/public/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/public/template.html -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/src/solve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/src/solve.ts -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/tsconfig.json -------------------------------------------------------------------------------- /web/easy - jawt that down!/challenge/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/challenge/webpack.config.js -------------------------------------------------------------------------------- /web/easy - jawt that down!/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/readme.md -------------------------------------------------------------------------------- /web/easy - jawt that down!/solve.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - jawt that down!/solve.mjs -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge.yaml -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/Dockerfile -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/package-lock.json -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/package.json -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/README.txt -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/generate_logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/generate_logs.ts -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/index.ts -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/components/About.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/components/Footer.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/components/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/components/Post.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/components/PostContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/components/PostContainer.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/components/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/components/Splash.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/credits.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/css/fonts.css -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/css/styles.css -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-700.woff -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-700.woff2 -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-900.woff -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-900.woff2 -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-italic.woff -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-italic.woff2 -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-regular.woff -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/merriweather-v28-latin-regular.woff2 -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/milonga-v18-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/milonga-v18-latin-regular.woff -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/fonts/milonga-v18-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/fonts/milonga-v18-latin-regular.woff2 -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/background.jpg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/clock.svg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/favicon.png -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/john.jpg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/log1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/log1.jpg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/log2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/log2.jpg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/img/log3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/img/log3.jpg -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/index.tsx -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/logs.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/logs.tar -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/src/public/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/src/public/template.html -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/tsconfig.json -------------------------------------------------------------------------------- /web/easy - lots of logs/challenge/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/challenge/webpack.config.js -------------------------------------------------------------------------------- /web/easy - lots of logs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/readme.md -------------------------------------------------------------------------------- /web/easy - lots of logs/solve.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/easy - lots of logs/solve.mjs -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge.yaml -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/Dockerfile -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/README.md -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/data/flag.js: -------------------------------------------------------------------------------- 1 | export default 'sdctf{0ne_GiANT_L3AP_4_tH3_NeXT_gENERa7i0n}'; 2 | -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/data/fuelPumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/data/fuelPumps.js -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/data/token.js: -------------------------------------------------------------------------------- 1 | export default 'yiLYDykacWp9sgPMluQeKkANeRFXyU3ZuxBrj2BQ'; 2 | -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/package-lock.json -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/package.json -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/pages/api/fuel/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/pages/api/fuel/[id].js -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/pages/api/fuel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/pages/api/fuel/index.js -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/pages/api/rocketLaunch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/pages/api/rocketLaunch.js -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/pages/api/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/pages/api/status.js -------------------------------------------------------------------------------- /web/educational - apollo 1337/challenge/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/challenge/pages/index.js -------------------------------------------------------------------------------- /web/educational - apollo 1337/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/healthcheck/Dockerfile -------------------------------------------------------------------------------- /web/educational - apollo 1337/healthcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/healthcheck/README.md -------------------------------------------------------------------------------- /web/educational - apollo 1337/healthcheck/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/healthcheck/healthcheck.py -------------------------------------------------------------------------------- /web/educational - apollo 1337/healthcheck/healthcheck_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/healthcheck/healthcheck_loop.sh -------------------------------------------------------------------------------- /web/educational - apollo 1337/healthcheck/healthz_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/healthcheck/healthz_webserver.py -------------------------------------------------------------------------------- /web/educational - apollo 1337/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/educational - apollo 1337/readme.md -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge.yaml -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/.gitignore -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/Dockerfile -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/next-env.d.ts -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/package-lock.json -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/package.json -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/pages/_app.js -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/pages/index.tsx -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/pages/read/[page].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/pages/read/[page].tsx -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/postcss.config.js -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/public/favicon.ico -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/public/vercel.svg -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/styles/globals.css -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/tailwind.config.js -------------------------------------------------------------------------------- /web/hard - curl up and read/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/challenge/tsconfig.json -------------------------------------------------------------------------------- /web/hard - curl up and read/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/healthcheck/Dockerfile -------------------------------------------------------------------------------- /web/hard - curl up and read/healthcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/healthcheck/README.md -------------------------------------------------------------------------------- /web/hard - curl up and read/healthcheck/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/healthcheck/healthcheck.py -------------------------------------------------------------------------------- /web/hard - curl up and read/healthcheck/healthcheck_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/healthcheck/healthcheck_loop.sh -------------------------------------------------------------------------------- /web/hard - curl up and read/healthcheck/healthz_webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/healthcheck/healthz_webserver.py -------------------------------------------------------------------------------- /web/hard - curl up and read/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/hard - curl up and read/readme.md -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge.yaml -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/Dockerfile -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/Species.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/Species.json -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/challenge.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/challenge.db -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/package-lock.json -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/package.json -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/ImageProcessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/ImageProcessing.ts -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/index.ts -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/Config.ts -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/about.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/components/CallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/components/CallToAction.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/components/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/components/Gallery.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/components/GalleryImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/components/GalleryImage.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/components/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/components/Splash.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/components/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/components/TopBar.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/css/fonts.css -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/css/styles.css -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-700.woff -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-700.woff2 -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-regular.woff -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/neuton-v16-latin-regular.woff2 -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/norican-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/norican-v12-latin-regular.woff -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/fonts/norican-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/fonts/norican-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/bird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/bird.svg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/american_goldfinch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/american_goldfinch.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/atlantic_puffin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/atlantic_puffin.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/bald_eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/bald_eagle.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/blue_tailed_bee_eater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/blue_tailed_bee_eater.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/blue_tit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/blue_tit.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/common_kingfisher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/common_kingfisher.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/eurasian_tree_sparrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/eurasian_tree_sparrow.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/european_bee_eater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/european_bee_eater.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/european_robin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/european_robin.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/great_horned_owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/great_horned_owl.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/greater_racket_tailed_drongo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/greater_racket_tailed_drongo.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/herring_gull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/herring_gull.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/house_finch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/house_finch.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/lilac_breasted_roller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/lilac_breasted_roller.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/northern_cardinal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/northern_cardinal.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/orange_chinned_parakeet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/orange_chinned_parakeet.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/plumbeous_water_redstart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/plumbeous_water_redstart.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/red_legged_honeycreeper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/red_legged_honeycreeper.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/rock_dove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/rock_dove.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/swinhoes_white_eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/swinhoes_white_eye.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/tufted_titmouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/tufted_titmouse.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/white_necked_jacobin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/white_necked_jacobin.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/yellow_throated_toucan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/yellow_throated_toucan.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/birds/yellow_warbler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/birds/yellow_warbler.jpg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/img/logo.svg -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/index.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/template.html -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/src/public/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/src/public/upload.tsx -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/tsconfig.json -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/challenge/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/challenge/webpack.config.js -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/readme.md -------------------------------------------------------------------------------- /web/medium - gullible by dovesign/solution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - gullible by dovesign/solution.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge.yaml -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/Dockerfile -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/package-lock.json -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/package.json -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/runchal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/runchal.sh -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/CAR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/CAR.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/Code.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/Config.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/Database.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/comms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/comms.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/discordbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/discordbot.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/index.ts -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/about.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/addfunds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/addfunds.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/boughtshell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/boughtshell.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/buyshell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/buyshell.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/components/AcctMgmt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/components/AcctMgmt.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/components/Backsplash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/components/Backsplash.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/components/CenterBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/components/CenterBox.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/components/ItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/components/ItemCard.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/components/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/components/TopBar.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/credits.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/css/fonts.css -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/css/styles.css -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-700.woff -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-700.woff2 -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-800.woff -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-800.woff2 -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-regular.woff -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/arima-madurai-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-700.woff -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-700.woff2 -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-regular.woff -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/fonts/solway-v13-latin-regular.woff2 -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/calico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/calico.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/dog.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/ffc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/ffc.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/flagshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/flagshell.png -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/giant_cockle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/giant_cockle.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/harp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/harp.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/horse.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/melon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/melon.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/murex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/murex.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/olive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/olive.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/persiancerith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/persiancerith.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/shell.svg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/sundial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/sundial.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/venuscomb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/venuscomb.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/img/wentletrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/img/wentletrap.jpg -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/index.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/login.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/shop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/shop.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/template.html -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/src/public/twofa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/src/public/twofa.tsx -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/tsconfig.json -------------------------------------------------------------------------------- /web/medium - humongous mistake/challenge/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/challenge/webpack.config.js -------------------------------------------------------------------------------- /web/medium - humongous mistake/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/package-lock.json -------------------------------------------------------------------------------- /web/medium - humongous mistake/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acmucsd/sdctf-2022/HEAD/web/medium - humongous mistake/readme.md --------------------------------------------------------------------------------