├── LICENSE ├── README.md ├── crypto ├── checker.wasm ├── creedsacking104 │ ├── Dockerfile │ ├── README.md │ ├── dist.py │ └── future.py ├── creedsacking204 │ ├── Dockerfile │ ├── README.md │ ├── dist-fixed.py │ ├── dist.py │ ├── future.py │ └── twominute.py ├── dictionary.txt ├── jarvisdead │ ├── enc.py │ └── flag.txt ├── loversQuarrel │ └── lqfiles.zip ├── myFirstXOR │ ├── enc │ └── writeup.md ├── nortVPN │ └── nort.zip ├── seedcracking401 │ ├── Dockerfile │ ├── README.md │ ├── dist.py │ └── future.py ├── seedcracking402 │ ├── Dockerfile │ ├── README.md │ ├── dist-fixed.py │ ├── dist.py │ └── future.py ├── seedfinding101 │ ├── Dockerfile │ ├── README.md │ ├── dist.py │ ├── future.py │ └── seedcracking101.py ├── twominute │ ├── help.png │ └── output.txt └── twominuteextreme │ ├── dictionary.txt │ ├── output.txt │ └── script.py ├── forensics ├── Antman.jpeg ├── audiosalad │ └── audiosalad.wav ├── peskypests │ └── racoonUDCTF.png └── x11shark │ └── remote_display.pcapng ├── grumbot ├── MCU_OSINT_Historical │ └── ClosedStore.jpeg ├── alicenbob_wireshark_historical │ └── wireless_shark.pcap └── pokemon_rsa_osint │ └── output ├── intropwns.zip ├── minecraft ├── PrinterITSupport │ ├── mcpicbook.py │ └── woolp.png ├── creedSacking104 │ ├── dist-fixed.py │ └── dist.py ├── namethattune │ └── readmxl.py └── seedCracking401 │ ├── dist-fixed.py │ └── dist.py ├── misc ├── PurQRatory.pdf ├── Unit_1.0_-_Homework_-_Mountain_Math.pdf ├── cryptoduck │ └── daffy_duck.png ├── wordle-hard │ ├── Dockerfile │ ├── README.md │ ├── flag.txt │ ├── jokes.txt │ └── wordleswithdads.py └── wordle │ ├── Dockerfile │ ├── README.md │ ├── flag.txt │ ├── jokes.txt │ └── wordleswithdads.py ├── pwn ├── pwn1 │ ├── Dockerfile │ ├── dist.zip │ ├── dist │ │ ├── main.c │ │ └── pwnme │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn2 │ ├── Dockerfile │ ├── dist.zip │ ├── dist │ │ ├── main.c │ │ └── pwnme │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn3 │ ├── Dockerfile │ ├── dist.zip │ ├── dist │ │ ├── main.c │ │ └── pwnme │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn4 │ ├── Dockerfile │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn5 │ ├── Dockerfile │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn6 │ ├── Dockerfile │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn7 │ ├── Dockerfile │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── pwn8 │ ├── Dockerfile │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── main.c │ └── pwnme ├── sallythepirate │ ├── Dockerfile │ ├── README.md │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── parrot │ └── src.c ├── seashells │ ├── Dockerfile │ ├── README.md │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── seashells │ └── src.c └── wideopen │ ├── Dockerfile │ ├── entry.sh │ ├── exp.py │ ├── flag.txt │ ├── ld-linux-x86-64.so.2 │ ├── libc.so.6 │ └── pwnme ├── rev ├── AndroidFlagChecker │ └── app-release.apk ├── HeardYouLikeStacks │ └── crackme.hspal ├── hspal-online.zip └── x86flagchecker │ └── x86_64_flag_checker └── web ├── botcorp ├── Dockerfile └── index.html ├── checker.wasm ├── handsoftime ├── Dockerfile ├── handsoftime.js ├── package.json └── public │ ├── clock.js │ ├── clock.png │ ├── hint.html │ └── index.html ├── headspace ├── Dockerfile ├── headspace.js ├── package.json └── solve.md ├── oracle ├── Dockerfile ├── distoracle.js ├── oracle.js └── package.json └── sessioncracker ├── Dockerfile ├── package.json ├── public ├── index.html └── script.js └── sessioncracker.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/README.md -------------------------------------------------------------------------------- /crypto/checker.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/checker.wasm -------------------------------------------------------------------------------- /crypto/creedsacking104/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking104/Dockerfile -------------------------------------------------------------------------------- /crypto/creedsacking104/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking104/README.md -------------------------------------------------------------------------------- /crypto/creedsacking104/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking104/dist.py -------------------------------------------------------------------------------- /crypto/creedsacking104/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking104/future.py -------------------------------------------------------------------------------- /crypto/creedsacking204/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/Dockerfile -------------------------------------------------------------------------------- /crypto/creedsacking204/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/README.md -------------------------------------------------------------------------------- /crypto/creedsacking204/dist-fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/dist-fixed.py -------------------------------------------------------------------------------- /crypto/creedsacking204/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/dist.py -------------------------------------------------------------------------------- /crypto/creedsacking204/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/future.py -------------------------------------------------------------------------------- /crypto/creedsacking204/twominute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/creedsacking204/twominute.py -------------------------------------------------------------------------------- /crypto/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/dictionary.txt -------------------------------------------------------------------------------- /crypto/jarvisdead/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/jarvisdead/enc.py -------------------------------------------------------------------------------- /crypto/jarvisdead/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{CRYPT0_s0met1m3s_f1nd_th3_p4p3r} 2 | -------------------------------------------------------------------------------- /crypto/loversQuarrel/lqfiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/loversQuarrel/lqfiles.zip -------------------------------------------------------------------------------- /crypto/myFirstXOR/enc: -------------------------------------------------------------------------------- 1 | crubqMo el_ iE^Uh BK< 2 | -------------------------------------------------------------------------------- /crypto/myFirstXOR/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/myFirstXOR/writeup.md -------------------------------------------------------------------------------- /crypto/nortVPN/nort.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/nortVPN/nort.zip -------------------------------------------------------------------------------- /crypto/seedcracking401/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking401/Dockerfile -------------------------------------------------------------------------------- /crypto/seedcracking401/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking401/README.md -------------------------------------------------------------------------------- /crypto/seedcracking401/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking401/dist.py -------------------------------------------------------------------------------- /crypto/seedcracking401/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking401/future.py -------------------------------------------------------------------------------- /crypto/seedcracking402/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking402/Dockerfile -------------------------------------------------------------------------------- /crypto/seedcracking402/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking402/README.md -------------------------------------------------------------------------------- /crypto/seedcracking402/dist-fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking402/dist-fixed.py -------------------------------------------------------------------------------- /crypto/seedcracking402/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking402/dist.py -------------------------------------------------------------------------------- /crypto/seedcracking402/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedcracking402/future.py -------------------------------------------------------------------------------- /crypto/seedfinding101/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedfinding101/Dockerfile -------------------------------------------------------------------------------- /crypto/seedfinding101/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedfinding101/README.md -------------------------------------------------------------------------------- /crypto/seedfinding101/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedfinding101/dist.py -------------------------------------------------------------------------------- /crypto/seedfinding101/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedfinding101/future.py -------------------------------------------------------------------------------- /crypto/seedfinding101/seedcracking101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/seedfinding101/seedcracking101.py -------------------------------------------------------------------------------- /crypto/twominute/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/twominute/help.png -------------------------------------------------------------------------------- /crypto/twominute/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/twominute/output.txt -------------------------------------------------------------------------------- /crypto/twominuteextreme/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/twominuteextreme/dictionary.txt -------------------------------------------------------------------------------- /crypto/twominuteextreme/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/twominuteextreme/output.txt -------------------------------------------------------------------------------- /crypto/twominuteextreme/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/crypto/twominuteextreme/script.py -------------------------------------------------------------------------------- /forensics/Antman.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/forensics/Antman.jpeg -------------------------------------------------------------------------------- /forensics/audiosalad/audiosalad.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/forensics/audiosalad/audiosalad.wav -------------------------------------------------------------------------------- /forensics/peskypests/racoonUDCTF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/forensics/peskypests/racoonUDCTF.png -------------------------------------------------------------------------------- /forensics/x11shark/remote_display.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/forensics/x11shark/remote_display.pcapng -------------------------------------------------------------------------------- /grumbot/MCU_OSINT_Historical/ClosedStore.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/grumbot/MCU_OSINT_Historical/ClosedStore.jpeg -------------------------------------------------------------------------------- /grumbot/alicenbob_wireshark_historical/wireless_shark.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/grumbot/alicenbob_wireshark_historical/wireless_shark.pcap -------------------------------------------------------------------------------- /grumbot/pokemon_rsa_osint/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/grumbot/pokemon_rsa_osint/output -------------------------------------------------------------------------------- /intropwns.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/intropwns.zip -------------------------------------------------------------------------------- /minecraft/PrinterITSupport/mcpicbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/PrinterITSupport/mcpicbook.py -------------------------------------------------------------------------------- /minecraft/PrinterITSupport/woolp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/PrinterITSupport/woolp.png -------------------------------------------------------------------------------- /minecraft/creedSacking104/dist-fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/creedSacking104/dist-fixed.py -------------------------------------------------------------------------------- /minecraft/creedSacking104/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/creedSacking104/dist.py -------------------------------------------------------------------------------- /minecraft/namethattune/readmxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/namethattune/readmxl.py -------------------------------------------------------------------------------- /minecraft/seedCracking401/dist-fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/seedCracking401/dist-fixed.py -------------------------------------------------------------------------------- /minecraft/seedCracking401/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/minecraft/seedCracking401/dist.py -------------------------------------------------------------------------------- /misc/PurQRatory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/PurQRatory.pdf -------------------------------------------------------------------------------- /misc/Unit_1.0_-_Homework_-_Mountain_Math.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/Unit_1.0_-_Homework_-_Mountain_Math.pdf -------------------------------------------------------------------------------- /misc/cryptoduck/daffy_duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/cryptoduck/daffy_duck.png -------------------------------------------------------------------------------- /misc/wordle-hard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle-hard/Dockerfile -------------------------------------------------------------------------------- /misc/wordle-hard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle-hard/README.md -------------------------------------------------------------------------------- /misc/wordle-hard/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle-hard/flag.txt -------------------------------------------------------------------------------- /misc/wordle-hard/jokes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle-hard/jokes.txt -------------------------------------------------------------------------------- /misc/wordle-hard/wordleswithdads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle-hard/wordleswithdads.py -------------------------------------------------------------------------------- /misc/wordle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle/Dockerfile -------------------------------------------------------------------------------- /misc/wordle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle/README.md -------------------------------------------------------------------------------- /misc/wordle/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{S000_iPh0n3_ch4rg3rs_c4ll_3m_APPLE_JU1C3!} 2 | -------------------------------------------------------------------------------- /misc/wordle/jokes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle/jokes.txt -------------------------------------------------------------------------------- /misc/wordle/wordleswithdads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/misc/wordle/wordleswithdads.py -------------------------------------------------------------------------------- /pwn/pwn1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn1/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/dist.zip -------------------------------------------------------------------------------- /pwn/pwn1/dist/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/dist/main.c -------------------------------------------------------------------------------- /pwn/pwn1/dist/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/dist/pwnme -------------------------------------------------------------------------------- /pwn/pwn1/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/entry.sh -------------------------------------------------------------------------------- /pwn/pwn1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/exploit.py -------------------------------------------------------------------------------- /pwn/pwn1/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{ez_pz_but_we_all_start_somewhere} 2 | -------------------------------------------------------------------------------- /pwn/pwn1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/main.c -------------------------------------------------------------------------------- /pwn/pwn1/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn1/pwnme -------------------------------------------------------------------------------- /pwn/pwn2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn2/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/dist.zip -------------------------------------------------------------------------------- /pwn/pwn2/dist/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/dist/main.c -------------------------------------------------------------------------------- /pwn/pwn2/dist/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/dist/pwnme -------------------------------------------------------------------------------- /pwn/pwn2/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/entry.sh -------------------------------------------------------------------------------- /pwn/pwn2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/exploit.py -------------------------------------------------------------------------------- /pwn/pwn2/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/flag.txt -------------------------------------------------------------------------------- /pwn/pwn2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/main.c -------------------------------------------------------------------------------- /pwn/pwn2/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn2/pwnme -------------------------------------------------------------------------------- /pwn/pwn3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn3/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/dist.zip -------------------------------------------------------------------------------- /pwn/pwn3/dist/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/dist/main.c -------------------------------------------------------------------------------- /pwn/pwn3/dist/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/dist/pwnme -------------------------------------------------------------------------------- /pwn/pwn3/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/entry.sh -------------------------------------------------------------------------------- /pwn/pwn3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/exploit.py -------------------------------------------------------------------------------- /pwn/pwn3/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{I_love_32bit_calling_conventions} 2 | -------------------------------------------------------------------------------- /pwn/pwn3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/main.c -------------------------------------------------------------------------------- /pwn/pwn3/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn3/pwnme -------------------------------------------------------------------------------- /pwn/pwn4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn4/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn4/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn4/entry.sh -------------------------------------------------------------------------------- /pwn/pwn4/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn4/exploit.py -------------------------------------------------------------------------------- /pwn/pwn4/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{yet_64bit_is_way_weirder} 2 | -------------------------------------------------------------------------------- /pwn/pwn4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn4/main.c -------------------------------------------------------------------------------- /pwn/pwn4/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn4/pwnme -------------------------------------------------------------------------------- /pwn/pwn5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn5/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn5/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn5/entry.sh -------------------------------------------------------------------------------- /pwn/pwn5/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn5/exploit.py -------------------------------------------------------------------------------- /pwn/pwn5/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{its_all_about_that_b453} 2 | -------------------------------------------------------------------------------- /pwn/pwn5/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn5/main.c -------------------------------------------------------------------------------- /pwn/pwn5/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn5/pwnme -------------------------------------------------------------------------------- /pwn/pwn6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn6/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn6/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn6/entry.sh -------------------------------------------------------------------------------- /pwn/pwn6/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn6/exploit.py -------------------------------------------------------------------------------- /pwn/pwn6/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{printf_f33ls_lik3_a_toy_BUT_teaches_preheap} 2 | -------------------------------------------------------------------------------- /pwn/pwn6/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn6/main.c -------------------------------------------------------------------------------- /pwn/pwn6/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn6/pwnme -------------------------------------------------------------------------------- /pwn/pwn7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn7/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn7/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn7/entry.sh -------------------------------------------------------------------------------- /pwn/pwn7/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn7/exploit.py -------------------------------------------------------------------------------- /pwn/pwn7/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{full_green_checks3c_y0_n1ce_work} 2 | -------------------------------------------------------------------------------- /pwn/pwn7/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn7/main.c -------------------------------------------------------------------------------- /pwn/pwn7/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn7/pwnme -------------------------------------------------------------------------------- /pwn/pwn8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn8/Dockerfile -------------------------------------------------------------------------------- /pwn/pwn8/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn8/entry.sh -------------------------------------------------------------------------------- /pwn/pwn8/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn8/exploit.py -------------------------------------------------------------------------------- /pwn/pwn8/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{inspired_by_the_ROP_Emporium_and_zipline_to_hell} 2 | -------------------------------------------------------------------------------- /pwn/pwn8/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn8/main.c -------------------------------------------------------------------------------- /pwn/pwn8/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/pwn8/pwnme -------------------------------------------------------------------------------- /pwn/sallythepirate/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/Dockerfile -------------------------------------------------------------------------------- /pwn/sallythepirate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/README.md -------------------------------------------------------------------------------- /pwn/sallythepirate/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/entry.sh -------------------------------------------------------------------------------- /pwn/sallythepirate/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/exploit.py -------------------------------------------------------------------------------- /pwn/sallythepirate/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{th4t_p4rr0t_15_n0t_dead_1ts_pining_f0r_th3_fj0rd5} 2 | -------------------------------------------------------------------------------- /pwn/sallythepirate/parrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/parrot -------------------------------------------------------------------------------- /pwn/sallythepirate/src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/sallythepirate/src.c -------------------------------------------------------------------------------- /pwn/seashells/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/Dockerfile -------------------------------------------------------------------------------- /pwn/seashells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/README.md -------------------------------------------------------------------------------- /pwn/seashells/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/entry.sh -------------------------------------------------------------------------------- /pwn/seashells/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/exploit.py -------------------------------------------------------------------------------- /pwn/seashells/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/flag.txt -------------------------------------------------------------------------------- /pwn/seashells/seashells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/seashells -------------------------------------------------------------------------------- /pwn/seashells/src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/seashells/src.c -------------------------------------------------------------------------------- /pwn/wideopen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/Dockerfile -------------------------------------------------------------------------------- /pwn/wideopen/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/entry.sh -------------------------------------------------------------------------------- /pwn/wideopen/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/exp.py -------------------------------------------------------------------------------- /pwn/wideopen/flag.txt: -------------------------------------------------------------------------------- 1 | UDCTF{n0w_h0w_m4ny_oth3r_w4ys_c4n_you_f1nd?} 2 | -------------------------------------------------------------------------------- /pwn/wideopen/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/wideopen/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/libc.so.6 -------------------------------------------------------------------------------- /pwn/wideopen/pwnme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/pwn/wideopen/pwnme -------------------------------------------------------------------------------- /rev/AndroidFlagChecker/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/rev/AndroidFlagChecker/app-release.apk -------------------------------------------------------------------------------- /rev/HeardYouLikeStacks/crackme.hspal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/rev/HeardYouLikeStacks/crackme.hspal -------------------------------------------------------------------------------- /rev/hspal-online.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/rev/hspal-online.zip -------------------------------------------------------------------------------- /rev/x86flagchecker/x86_64_flag_checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/rev/x86flagchecker/x86_64_flag_checker -------------------------------------------------------------------------------- /web/botcorp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/botcorp/Dockerfile -------------------------------------------------------------------------------- /web/botcorp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/botcorp/index.html -------------------------------------------------------------------------------- /web/checker.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/checker.wasm -------------------------------------------------------------------------------- /web/handsoftime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/Dockerfile -------------------------------------------------------------------------------- /web/handsoftime/handsoftime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/handsoftime.js -------------------------------------------------------------------------------- /web/handsoftime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/package.json -------------------------------------------------------------------------------- /web/handsoftime/public/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/public/clock.js -------------------------------------------------------------------------------- /web/handsoftime/public/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/public/clock.png -------------------------------------------------------------------------------- /web/handsoftime/public/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/public/hint.html -------------------------------------------------------------------------------- /web/handsoftime/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/handsoftime/public/index.html -------------------------------------------------------------------------------- /web/headspace/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/headspace/Dockerfile -------------------------------------------------------------------------------- /web/headspace/headspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/headspace/headspace.js -------------------------------------------------------------------------------- /web/headspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/headspace/package.json -------------------------------------------------------------------------------- /web/headspace/solve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/headspace/solve.md -------------------------------------------------------------------------------- /web/oracle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/oracle/Dockerfile -------------------------------------------------------------------------------- /web/oracle/distoracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/oracle/distoracle.js -------------------------------------------------------------------------------- /web/oracle/oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/oracle/oracle.js -------------------------------------------------------------------------------- /web/oracle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/oracle/package.json -------------------------------------------------------------------------------- /web/sessioncracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/sessioncracker/Dockerfile -------------------------------------------------------------------------------- /web/sessioncracker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/sessioncracker/package.json -------------------------------------------------------------------------------- /web/sessioncracker/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/sessioncracker/public/index.html -------------------------------------------------------------------------------- /web/sessioncracker/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/sessioncracker/public/script.js -------------------------------------------------------------------------------- /web/sessioncracker/sessioncracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyNovo/UDCTF22/HEAD/web/sessioncracker/sessioncracker.js --------------------------------------------------------------------------------