├── Infrastructure.md ├── README.md ├── crypto ├── anaken21sec1 │ ├── README.md │ ├── encrypt.py │ └── solve.py ├── anaken21sec2 │ ├── Dockerfile │ ├── README.md │ ├── break.py │ ├── docker-compose.yml │ ├── encrypt.py │ ├── flag.txt │ └── solve.py ├── choose │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── server.py │ └── solve.py ├── cycles │ ├── README.md │ ├── cycles.txt │ ├── hidden.py │ ├── main.py │ └── solve.py ├── hash_based_crypto │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── secrets.py │ ├── server.py │ └── solve.py ├── many-primes │ ├── README.md │ ├── encrypt.py │ ├── output.txt │ └── solve.py ├── pem │ ├── README.md │ ├── gen_pem.py │ ├── solve.sage │ ├── solve.sage.py │ └── ssh_host_rsa_key.pub └── real-smooth │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── real-smooth.py │ ├── secrets.py │ └── solve.py ├── firstblood ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── ctfd_cron ├── docker-compose.yml ├── images │ ├── access_token.png │ ├── edit_channel.png │ └── webhook.png ├── main.py ├── main_slack.py ├── notified_challenges.json └── requirements.txt ├── forensics ├── Are-You-Looking-Me-Up.md ├── Mine-Over-Matter.md ├── solve.py └── wimdows │ └── README.md ├── misc ├── alpha │ ├── README.md │ ├── alpha_REDACTED.ino │ ├── flag.sal │ └── writeup │ │ ├── alpha.ino │ │ ├── bytes1.png │ │ ├── bytes2.png │ │ ├── sal.png │ │ └── solve.py ├── enabled │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ └── src │ │ └── jail.sh └── hash_psycho │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── hash_psycho.py │ └── server.py ├── osint ├── czech_this_out │ └── README.md ├── czechxicans │ └── README.md ├── skywim │ ├── README.md │ └── skyrim.jpg ├── under_the_overpass │ └── README.md └── universalty │ ├── README.md │ └── school.jpg ├── pwn ├── game-of-yap │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── game-of-yap │ ├── game-of-yap.c │ ├── game-of-yap.zip │ ├── libc.so.6 │ └── solve.py ├── goat │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── goat │ ├── goat.c │ ├── goat.zip │ └── solve.py ├── minecraft_youtube │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── minecraft.c │ ├── notes.md │ ├── solve.py │ └── src │ │ └── minecraft ├── mips │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── ctf │ │ ├── flag.txt │ │ ├── mips │ │ └── start.sh │ ├── docker-compose.yml │ ├── mips.c │ ├── mips.zip │ └── solve.py └── tcl │ ├── Dockerfile │ ├── Documentation.md │ ├── README.md │ ├── docker-compose.yml │ ├── flag.txt │ ├── libc.so.6 │ ├── solve.py │ ├── tcl │ ├── tcl.c │ └── tcl.zip ├── rev ├── baby_android_1 │ ├── README.md │ ├── baby-android-1.apk │ └── writeup │ │ ├── image-1.png │ │ ├── image-2.png │ │ └── image-3.png ├── baby_android_2 │ ├── README.md │ └── baby_android-2.apk ├── bank_vault │ ├── README.md │ ├── bank │ ├── gen.py │ └── main.cpp ├── llir │ ├── README.md │ ├── checker?.ll │ ├── conditions.py │ ├── solve.py │ └── source.c ├── moo │ ├── README.md │ ├── main-commented │ ├── main.cow │ └── moo.py └── u │ ├── README.md │ ├── solve.py │ └── u.py └── web ├── cooking_flask ├── .gitignore ├── DAOs │ ├── GetConnection.py │ └── Recipe_DAO.py ├── Dockerfile ├── Models │ ├── PCB_Entry.py │ ├── Recipe.py │ ├── Try_Entry.py │ └── User.py ├── README.md ├── Writeup.md ├── cooking.sqlite ├── create.py ├── creation_script.sql ├── docker-compose.yml ├── images │ ├── image1.png │ ├── image10.png │ ├── image11.png │ ├── image12.png │ ├── image13.png │ ├── image14.png │ ├── image15.png │ ├── image16.png │ ├── image17.png │ ├── image18.png │ ├── image19.png │ ├── image2.png │ ├── image20.png │ ├── image21.png │ ├── image22.png │ ├── image23.png │ ├── image24.png │ ├── image25.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── image9.png ├── main.py ├── requirements.txt ├── static │ ├── css │ │ └── styles.css │ ├── favicon.ico │ └── images │ │ ├── cookbook.png │ │ ├── create_recipe.png │ │ ├── me.png │ │ ├── search.png │ │ ├── stats.png │ │ └── try.png └── templates │ ├── base.html │ ├── buttons.html │ ├── login.html │ ├── search.html │ └── table.html ├── jwtf ├── Dockerfile ├── README.md ├── docker-compose.yml ├── flag.txt ├── jwtf.zip └── server.py ├── redthis ├── README.md ├── docker-compose.yml ├── postman.png ├── redis │ ├── Dockerfile │ └── inserts │ │ ├── insert.redis │ │ ├── populate.sh │ │ ├── prod_insert.redis │ │ └── start_and_populate.sh ├── redthis.zip └── server │ ├── Dockerfile │ ├── main.py │ └── templates │ ├── index.html │ ├── login.html │ └── register.html ├── wembsoncket ├── Dockerfile ├── README.md ├── adminBot.js ├── docker-compose.yml ├── flag.txt ├── package-lock.json ├── package.json ├── public │ └── index.html ├── secret.txt ├── server.js ├── solve.html └── wembsoncket.zip └── wonka ├── README.md ├── backend ├── Dockerfile ├── flag.txt └── server.js ├── docker-compose.yml ├── frontend ├── Dockerfile └── httpd.conf └── wonka.zip /Infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/Infrastructure.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/README.md -------------------------------------------------------------------------------- /crypto/anaken21sec1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec1/README.md -------------------------------------------------------------------------------- /crypto/anaken21sec1/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec1/encrypt.py -------------------------------------------------------------------------------- /crypto/anaken21sec1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec1/solve.py -------------------------------------------------------------------------------- /crypto/anaken21sec2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/Dockerfile -------------------------------------------------------------------------------- /crypto/anaken21sec2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/README.md -------------------------------------------------------------------------------- /crypto/anaken21sec2/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/break.py -------------------------------------------------------------------------------- /crypto/anaken21sec2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/docker-compose.yml -------------------------------------------------------------------------------- /crypto/anaken21sec2/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/encrypt.py -------------------------------------------------------------------------------- /crypto/anaken21sec2/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/flag.txt -------------------------------------------------------------------------------- /crypto/anaken21sec2/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/anaken21sec2/solve.py -------------------------------------------------------------------------------- /crypto/choose/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/choose/Dockerfile -------------------------------------------------------------------------------- /crypto/choose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/choose/README.md -------------------------------------------------------------------------------- /crypto/choose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/choose/docker-compose.yml -------------------------------------------------------------------------------- /crypto/choose/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{Chin3s3_rema1nd3r_th30r3m_is_Sup3r_H3lpful} -------------------------------------------------------------------------------- /crypto/choose/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/choose/server.py -------------------------------------------------------------------------------- /crypto/choose/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/choose/solve.py -------------------------------------------------------------------------------- /crypto/cycles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/cycles/README.md -------------------------------------------------------------------------------- /crypto/cycles/cycles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/cycles/cycles.txt -------------------------------------------------------------------------------- /crypto/cycles/hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/cycles/hidden.py -------------------------------------------------------------------------------- /crypto/cycles/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/cycles/main.py -------------------------------------------------------------------------------- /crypto/cycles/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/cycles/solve.py -------------------------------------------------------------------------------- /crypto/hash_based_crypto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/Dockerfile -------------------------------------------------------------------------------- /crypto/hash_based_crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/README.md -------------------------------------------------------------------------------- /crypto/hash_based_crypto/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/docker-compose.yml -------------------------------------------------------------------------------- /crypto/hash_based_crypto/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/secrets.py -------------------------------------------------------------------------------- /crypto/hash_based_crypto/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/server.py -------------------------------------------------------------------------------- /crypto/hash_based_crypto/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/hash_based_crypto/solve.py -------------------------------------------------------------------------------- /crypto/many-primes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/many-primes/README.md -------------------------------------------------------------------------------- /crypto/many-primes/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/many-primes/encrypt.py -------------------------------------------------------------------------------- /crypto/many-primes/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/many-primes/output.txt -------------------------------------------------------------------------------- /crypto/many-primes/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/many-primes/solve.py -------------------------------------------------------------------------------- /crypto/pem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/pem/README.md -------------------------------------------------------------------------------- /crypto/pem/gen_pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/pem/gen_pem.py -------------------------------------------------------------------------------- /crypto/pem/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/pem/solve.sage -------------------------------------------------------------------------------- /crypto/pem/solve.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/pem/solve.sage.py -------------------------------------------------------------------------------- /crypto/pem/ssh_host_rsa_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/pem/ssh_host_rsa_key.pub -------------------------------------------------------------------------------- /crypto/real-smooth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/Dockerfile -------------------------------------------------------------------------------- /crypto/real-smooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/README.md -------------------------------------------------------------------------------- /crypto/real-smooth/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/docker-compose.yml -------------------------------------------------------------------------------- /crypto/real-smooth/real-smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/real-smooth.py -------------------------------------------------------------------------------- /crypto/real-smooth/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/secrets.py -------------------------------------------------------------------------------- /crypto/real-smooth/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/crypto/real-smooth/solve.py -------------------------------------------------------------------------------- /firstblood/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/.env.example -------------------------------------------------------------------------------- /firstblood/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /firstblood/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/Dockerfile -------------------------------------------------------------------------------- /firstblood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/README.md -------------------------------------------------------------------------------- /firstblood/ctfd_cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/ctfd_cron -------------------------------------------------------------------------------- /firstblood/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/docker-compose.yml -------------------------------------------------------------------------------- /firstblood/images/access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/images/access_token.png -------------------------------------------------------------------------------- /firstblood/images/edit_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/images/edit_channel.png -------------------------------------------------------------------------------- /firstblood/images/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/images/webhook.png -------------------------------------------------------------------------------- /firstblood/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/main.py -------------------------------------------------------------------------------- /firstblood/main_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/firstblood/main_slack.py -------------------------------------------------------------------------------- /firstblood/notified_challenges.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /firstblood/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv==1.0.1 2 | requests==2.31.0 -------------------------------------------------------------------------------- /forensics/Are-You-Looking-Me-Up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/forensics/Are-You-Looking-Me-Up.md -------------------------------------------------------------------------------- /forensics/Mine-Over-Matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/forensics/Mine-Over-Matter.md -------------------------------------------------------------------------------- /forensics/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/forensics/solve.py -------------------------------------------------------------------------------- /forensics/wimdows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/forensics/wimdows/README.md -------------------------------------------------------------------------------- /misc/alpha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/README.md -------------------------------------------------------------------------------- /misc/alpha/alpha_REDACTED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/alpha_REDACTED.ino -------------------------------------------------------------------------------- /misc/alpha/flag.sal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/flag.sal -------------------------------------------------------------------------------- /misc/alpha/writeup/alpha.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/writeup/alpha.ino -------------------------------------------------------------------------------- /misc/alpha/writeup/bytes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/writeup/bytes1.png -------------------------------------------------------------------------------- /misc/alpha/writeup/bytes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/writeup/bytes2.png -------------------------------------------------------------------------------- /misc/alpha/writeup/sal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/writeup/sal.png -------------------------------------------------------------------------------- /misc/alpha/writeup/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/alpha/writeup/solve.py -------------------------------------------------------------------------------- /misc/enabled/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/enabled/Dockerfile -------------------------------------------------------------------------------- /misc/enabled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/enabled/README.md -------------------------------------------------------------------------------- /misc/enabled/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/enabled/docker-compose.yml -------------------------------------------------------------------------------- /misc/enabled/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{enable_can_do_some_funky_stuff_huh?_488h33d} -------------------------------------------------------------------------------- /misc/enabled/src/jail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/enabled/src/jail.sh -------------------------------------------------------------------------------- /misc/hash_psycho/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/hash_psycho/Dockerfile -------------------------------------------------------------------------------- /misc/hash_psycho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/hash_psycho/README.md -------------------------------------------------------------------------------- /misc/hash_psycho/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/hash_psycho/docker-compose.yml -------------------------------------------------------------------------------- /misc/hash_psycho/hash_psycho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/hash_psycho/hash_psycho.py -------------------------------------------------------------------------------- /misc/hash_psycho/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/misc/hash_psycho/server.py -------------------------------------------------------------------------------- /osint/czech_this_out/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/czech_this_out/README.md -------------------------------------------------------------------------------- /osint/czechxicans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/czechxicans/README.md -------------------------------------------------------------------------------- /osint/skywim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/skywim/README.md -------------------------------------------------------------------------------- /osint/skywim/skyrim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/skywim/skyrim.jpg -------------------------------------------------------------------------------- /osint/under_the_overpass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/under_the_overpass/README.md -------------------------------------------------------------------------------- /osint/universalty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/universalty/README.md -------------------------------------------------------------------------------- /osint/universalty/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/osint/universalty/school.jpg -------------------------------------------------------------------------------- /pwn/game-of-yap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/Dockerfile -------------------------------------------------------------------------------- /pwn/game-of-yap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/README.md -------------------------------------------------------------------------------- /pwn/game-of-yap/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/docker-compose.yml -------------------------------------------------------------------------------- /pwn/game-of-yap/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{heres_your_yap_plus_certification_c13abe01} -------------------------------------------------------------------------------- /pwn/game-of-yap/game-of-yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/game-of-yap -------------------------------------------------------------------------------- /pwn/game-of-yap/game-of-yap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/game-of-yap.c -------------------------------------------------------------------------------- /pwn/game-of-yap/game-of-yap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/game-of-yap.zip -------------------------------------------------------------------------------- /pwn/game-of-yap/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/libc.so.6 -------------------------------------------------------------------------------- /pwn/game-of-yap/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/game-of-yap/solve.py -------------------------------------------------------------------------------- /pwn/goat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/Dockerfile -------------------------------------------------------------------------------- /pwn/goat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/README.md -------------------------------------------------------------------------------- /pwn/goat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/docker-compose.yml -------------------------------------------------------------------------------- /pwn/goat/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{n0w_y0u're_the_g0at!} -------------------------------------------------------------------------------- /pwn/goat/goat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/goat -------------------------------------------------------------------------------- /pwn/goat/goat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/goat.c -------------------------------------------------------------------------------- /pwn/goat/goat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/goat.zip -------------------------------------------------------------------------------- /pwn/goat/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/goat/solve.py -------------------------------------------------------------------------------- /pwn/minecraft_youtube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/Dockerfile -------------------------------------------------------------------------------- /pwn/minecraft_youtube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/README.md -------------------------------------------------------------------------------- /pwn/minecraft_youtube/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/docker-compose.yml -------------------------------------------------------------------------------- /pwn/minecraft_youtube/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{th3_3xpl01t_n4m3_1s_l1t3r4lly_gr00m1ng} -------------------------------------------------------------------------------- /pwn/minecraft_youtube/minecraft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/minecraft.c -------------------------------------------------------------------------------- /pwn/minecraft_youtube/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/notes.md -------------------------------------------------------------------------------- /pwn/minecraft_youtube/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/solve.py -------------------------------------------------------------------------------- /pwn/minecraft_youtube/src/minecraft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/minecraft_youtube/src/minecraft -------------------------------------------------------------------------------- /pwn/mips/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/Dockerfile -------------------------------------------------------------------------------- /pwn/mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/Makefile -------------------------------------------------------------------------------- /pwn/mips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/README.md -------------------------------------------------------------------------------- /pwn/mips/ctf/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{h0p3_y0u_d1dnt_h4v3_un1c0rn_2.1.3_cuz_M1PS_s3gf4ultz_th3r3} -------------------------------------------------------------------------------- /pwn/mips/ctf/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/ctf/mips -------------------------------------------------------------------------------- /pwn/mips/ctf/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /qemu /app/mips -------------------------------------------------------------------------------- /pwn/mips/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/docker-compose.yml -------------------------------------------------------------------------------- /pwn/mips/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/mips.c -------------------------------------------------------------------------------- /pwn/mips/mips.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/mips.zip -------------------------------------------------------------------------------- /pwn/mips/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/mips/solve.py -------------------------------------------------------------------------------- /pwn/tcl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/Dockerfile -------------------------------------------------------------------------------- /pwn/tcl/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/Documentation.md -------------------------------------------------------------------------------- /pwn/tcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/README.md -------------------------------------------------------------------------------- /pwn/tcl/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/docker-compose.yml -------------------------------------------------------------------------------- /pwn/tcl/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{ok4y_y34h_th4t_d3fin1t3ly_suck3d} -------------------------------------------------------------------------------- /pwn/tcl/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/libc.so.6 -------------------------------------------------------------------------------- /pwn/tcl/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/solve.py -------------------------------------------------------------------------------- /pwn/tcl/tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/tcl -------------------------------------------------------------------------------- /pwn/tcl/tcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/tcl.c -------------------------------------------------------------------------------- /pwn/tcl/tcl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/pwn/tcl/tcl.zip -------------------------------------------------------------------------------- /rev/baby_android_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_1/README.md -------------------------------------------------------------------------------- /rev/baby_android_1/baby-android-1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_1/baby-android-1.apk -------------------------------------------------------------------------------- /rev/baby_android_1/writeup/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_1/writeup/image-1.png -------------------------------------------------------------------------------- /rev/baby_android_1/writeup/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_1/writeup/image-2.png -------------------------------------------------------------------------------- /rev/baby_android_1/writeup/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_1/writeup/image-3.png -------------------------------------------------------------------------------- /rev/baby_android_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_2/README.md -------------------------------------------------------------------------------- /rev/baby_android_2/baby_android-2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/baby_android_2/baby_android-2.apk -------------------------------------------------------------------------------- /rev/bank_vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/bank_vault/README.md -------------------------------------------------------------------------------- /rev/bank_vault/bank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/bank_vault/bank -------------------------------------------------------------------------------- /rev/bank_vault/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/bank_vault/gen.py -------------------------------------------------------------------------------- /rev/bank_vault/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/bank_vault/main.cpp -------------------------------------------------------------------------------- /rev/llir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/llir/README.md -------------------------------------------------------------------------------- /rev/llir/checker?.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/llir/checker?.ll -------------------------------------------------------------------------------- /rev/llir/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/llir/conditions.py -------------------------------------------------------------------------------- /rev/llir/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/llir/solve.py -------------------------------------------------------------------------------- /rev/llir/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/llir/source.c -------------------------------------------------------------------------------- /rev/moo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/moo/README.md -------------------------------------------------------------------------------- /rev/moo/main-commented: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/moo/main-commented -------------------------------------------------------------------------------- /rev/moo/main.cow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/moo/main.cow -------------------------------------------------------------------------------- /rev/moo/moo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/moo/moo.py -------------------------------------------------------------------------------- /rev/u/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/u/README.md -------------------------------------------------------------------------------- /rev/u/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/u/solve.py -------------------------------------------------------------------------------- /rev/u/u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/rev/u/u.py -------------------------------------------------------------------------------- /web/cooking_flask/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | -------------------------------------------------------------------------------- /web/cooking_flask/DAOs/GetConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/DAOs/GetConnection.py -------------------------------------------------------------------------------- /web/cooking_flask/DAOs/Recipe_DAO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/DAOs/Recipe_DAO.py -------------------------------------------------------------------------------- /web/cooking_flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Dockerfile -------------------------------------------------------------------------------- /web/cooking_flask/Models/PCB_Entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Models/PCB_Entry.py -------------------------------------------------------------------------------- /web/cooking_flask/Models/Recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Models/Recipe.py -------------------------------------------------------------------------------- /web/cooking_flask/Models/Try_Entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Models/Try_Entry.py -------------------------------------------------------------------------------- /web/cooking_flask/Models/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Models/User.py -------------------------------------------------------------------------------- /web/cooking_flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/README.md -------------------------------------------------------------------------------- /web/cooking_flask/Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/Writeup.md -------------------------------------------------------------------------------- /web/cooking_flask/cooking.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/cooking.sqlite -------------------------------------------------------------------------------- /web/cooking_flask/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/create.py -------------------------------------------------------------------------------- /web/cooking_flask/creation_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/creation_script.sql -------------------------------------------------------------------------------- /web/cooking_flask/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/docker-compose.yml -------------------------------------------------------------------------------- /web/cooking_flask/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image1.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image10.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image11.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image12.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image13.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image14.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image15.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image16.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image17.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image18.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image19.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image2.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image20.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image21.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image22.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image23.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image24.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image25.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image3.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image4.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image5.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image6.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image7.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image8.png -------------------------------------------------------------------------------- /web/cooking_flask/images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/images/image9.png -------------------------------------------------------------------------------- /web/cooking_flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/main.py -------------------------------------------------------------------------------- /web/cooking_flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/requirements.txt -------------------------------------------------------------------------------- /web/cooking_flask/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/css/styles.css -------------------------------------------------------------------------------- /web/cooking_flask/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/favicon.ico -------------------------------------------------------------------------------- /web/cooking_flask/static/images/cookbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/cookbook.png -------------------------------------------------------------------------------- /web/cooking_flask/static/images/create_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/create_recipe.png -------------------------------------------------------------------------------- /web/cooking_flask/static/images/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/me.png -------------------------------------------------------------------------------- /web/cooking_flask/static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/search.png -------------------------------------------------------------------------------- /web/cooking_flask/static/images/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/stats.png -------------------------------------------------------------------------------- /web/cooking_flask/static/images/try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/static/images/try.png -------------------------------------------------------------------------------- /web/cooking_flask/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/templates/base.html -------------------------------------------------------------------------------- /web/cooking_flask/templates/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/templates/buttons.html -------------------------------------------------------------------------------- /web/cooking_flask/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/templates/login.html -------------------------------------------------------------------------------- /web/cooking_flask/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/templates/search.html -------------------------------------------------------------------------------- /web/cooking_flask/templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/cooking_flask/templates/table.html -------------------------------------------------------------------------------- /web/jwtf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/Dockerfile -------------------------------------------------------------------------------- /web/jwtf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/README.md -------------------------------------------------------------------------------- /web/jwtf/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/docker-compose.yml -------------------------------------------------------------------------------- /web/jwtf/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/flag.txt -------------------------------------------------------------------------------- /web/jwtf/jwtf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/jwtf.zip -------------------------------------------------------------------------------- /web/jwtf/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/jwtf/server.py -------------------------------------------------------------------------------- /web/redthis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/README.md -------------------------------------------------------------------------------- /web/redthis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/docker-compose.yml -------------------------------------------------------------------------------- /web/redthis/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/postman.png -------------------------------------------------------------------------------- /web/redthis/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redis/Dockerfile -------------------------------------------------------------------------------- /web/redthis/redis/inserts/insert.redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redis/inserts/insert.redis -------------------------------------------------------------------------------- /web/redthis/redis/inserts/populate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redis/inserts/populate.sh -------------------------------------------------------------------------------- /web/redthis/redis/inserts/prod_insert.redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redis/inserts/prod_insert.redis -------------------------------------------------------------------------------- /web/redthis/redis/inserts/start_and_populate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redis/inserts/start_and_populate.sh -------------------------------------------------------------------------------- /web/redthis/redthis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/redthis.zip -------------------------------------------------------------------------------- /web/redthis/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/server/Dockerfile -------------------------------------------------------------------------------- /web/redthis/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/server/main.py -------------------------------------------------------------------------------- /web/redthis/server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/server/templates/index.html -------------------------------------------------------------------------------- /web/redthis/server/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/server/templates/login.html -------------------------------------------------------------------------------- /web/redthis/server/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/redthis/server/templates/register.html -------------------------------------------------------------------------------- /web/wembsoncket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/Dockerfile -------------------------------------------------------------------------------- /web/wembsoncket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/README.md -------------------------------------------------------------------------------- /web/wembsoncket/adminBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/adminBot.js -------------------------------------------------------------------------------- /web/wembsoncket/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/docker-compose.yml -------------------------------------------------------------------------------- /web/wembsoncket/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{CSWSH_1s_a_b1g_acr0nym} -------------------------------------------------------------------------------- /web/wembsoncket/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/package-lock.json -------------------------------------------------------------------------------- /web/wembsoncket/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/package.json -------------------------------------------------------------------------------- /web/wembsoncket/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/public/index.html -------------------------------------------------------------------------------- /web/wembsoncket/secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/secret.txt -------------------------------------------------------------------------------- /web/wembsoncket/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/server.js -------------------------------------------------------------------------------- /web/wembsoncket/solve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/solve.html -------------------------------------------------------------------------------- /web/wembsoncket/wembsoncket.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wembsoncket/wembsoncket.zip -------------------------------------------------------------------------------- /web/wonka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/README.md -------------------------------------------------------------------------------- /web/wonka/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/backend/Dockerfile -------------------------------------------------------------------------------- /web/wonka/backend/flag.txt: -------------------------------------------------------------------------------- 1 | byuctf{i_never_liked_w1lly_wonka} -------------------------------------------------------------------------------- /web/wonka/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/backend/server.js -------------------------------------------------------------------------------- /web/wonka/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/docker-compose.yml -------------------------------------------------------------------------------- /web/wonka/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/frontend/Dockerfile -------------------------------------------------------------------------------- /web/wonka/frontend/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/frontend/httpd.conf -------------------------------------------------------------------------------- /web/wonka/wonka.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYU-CSA/BYUCTF-2025/HEAD/web/wonka/wonka.zip --------------------------------------------------------------------------------