├── Bash ├── Bash_writeups.md ├── Dockerfile ├── level1 │ └── README ├── level2 │ ├── flag.txt │ ├── level2_runner │ ├── level2_runner.c │ └── random_dirs.sh ├── level3 │ ├── flag.txt │ ├── level3_runner │ ├── level3_runner.c │ └── passcodes.sh ├── level4 │ ├── flag.txt │ ├── level4_runner │ ├── level4_runner.c │ └── print_file.sh └── level5 │ ├── flag.txt │ ├── level5_runner │ ├── level5_runner.c │ └── portforce.sh ├── Cryptography ├── Extraordinary │ ├── Answer │ │ ├── alternative writeup.py │ │ ├── answer.txt │ │ └── writeup.txt │ ├── Dockerfile │ ├── entry.sh │ ├── extraordinary.py │ └── prompt.txt ├── I'll Have The Salad │ ├── Answer │ │ ├── Answer.txt │ │ └── Writeup.txt │ └── Prompt.txt ├── Land Locked │ ├── Answer │ │ ├── answer.txt │ │ └── writeup.txt │ └── prompt.txt ├── Pretty Ridiculous │ ├── Answer │ │ ├── answer.txt │ │ └── writeup.txt │ ├── encrpyt.py │ ├── message.txt │ └── prompt.txt ├── Shifty Shwoozy │ ├── Answer │ │ ├── Answer.txt │ │ └── Writeup.txt │ └── Prompt.txt ├── Sign Me Up │ ├── Answer │ │ ├── answer.txt │ │ └── writeup.txt │ ├── Dockerfile │ ├── message.txt │ ├── pick_your_poison.py │ └── prompt.txt ├── Sleep On It │ ├── Answer │ │ ├── answer.txt │ │ └── writeup.txt │ ├── ciphertext.txt │ ├── nap.py │ └── prompt.txt └── Twice As Secret Right │ ├── Answer │ ├── answer.txt │ ├── mystery_signal.wav │ └── writeup.txt │ └── prompt.txt ├── Forensics ├── Animal Crossing │ ├── Answer │ │ ├── combined_challenge.cmd │ │ ├── flag.txt │ │ ├── flag_final │ │ └── writeup.md │ └── animalcrossing.pcapng ├── Block2 │ ├── Answer │ │ └── writeup.md │ ├── Prompt.txt │ └── co_block.sql.gz ├── Boom │ ├── Answer │ │ ├── Writeup.md │ │ ├── answer pt1.png │ │ ├── answer pt2.png │ │ ├── boompsd.7z │ │ └── hi-res-ba0782735805201b04a654215730b793_crop_exact.7z │ ├── boom.sql.gz │ └── prompt.txt ├── Fahrenheit 451 │ ├── Answer │ │ ├── Fahrenheit 451 Full Text .docx │ │ ├── Fahrenheit 451 Full Text .pdf │ │ └── writeup.md │ ├── Prompt.txt │ └── f451.pcapng ├── Har Har Har │ ├── Answer │ │ ├── 87502894-194871-9-183-18038928741924721.png │ │ └── writeup.md │ ├── Prompt.txt │ └── dev.quickbrownfoxes.org_Archive [19-12-01 15-41-53].har ├── Oops │ ├── Answer │ │ └── writeup.md │ ├── Prompt.txt │ └── debmini.vhdx └── README.md ├── Integrity Check ├── bash_check.sh ├── check-web2.sh ├── readme.md └── rebuild-web2.sh ├── OSINT ├── ALIedAS About Some Thing │ ├── Writeup │ │ └── writeup.txt │ └── prompt.txt ├── Easy - Good Old Days │ ├── Answer │ │ └── Writeup.txt │ └── Prompt.txt ├── Easy - Who Made Me │ ├── Answer │ │ └── Writeup.txt │ └── Prompt.txt ├── OSINT You All Over The Place │ ├── Answer │ │ └── writeup.txt │ └── prompt.txt └── Oryx │ ├── Answer │ └── writeup.txt │ └── prompt.txt ├── Password Cracking ├── Big_Mac │ ├── big_mac.clear │ ├── big_mac.hash │ ├── big_mac.prompt │ └── big_mac.solution ├── Crack_Me │ ├── crack_me.clear │ ├── crack_me.hash │ ├── crack_me.prompt │ └── crack_me.solution ├── Crack_Me_2 │ ├── crack_me_2.clear │ ├── crack_me_2.hash │ ├── crack_me_2.prompt │ └── crack_me_2.solution ├── Keanu │ ├── keanu.clear │ ├── keanu.hash │ ├── keanu.prompt │ └── keanu.solution ├── Manager │ ├── manager.clear │ ├── manager.hash │ ├── manager.kdbx │ ├── manager.prompt │ └── manager.solution ├── Mental │ ├── mental.clear │ ├── mental.hash │ ├── mental.prompt │ └── mental.solution ├── Salty │ ├── salty.clear │ ├── salty.hash │ ├── salty.prompt │ └── salty.solution └── Zippy │ ├── zippy.clear │ ├── zippy.prompt │ ├── zippy.solution │ └── zippy.zip ├── Pwn ├── Easy as Pie! │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── entry.sh │ ├── prompt.md │ └── shell.py ├── House of Madness │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── challenge │ ├── challenge.c │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ └── prompt.md ├── Remote School │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── entry.sh │ ├── exploit_challenge.py │ ├── flag.txt │ ├── online │ ├── online.c │ └── prompt.md ├── Thanksgiving Dinner │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── entry.sh │ ├── exploit.py │ ├── flag.txt │ ├── prompt.md │ ├── turkey │ └── turkey.c └── pwn_challenges.md ├── README.md ├── Reversing ├── .DS_Store ├── Chestburster │ ├── Solution │ │ └── writeup.md │ ├── challenge │ │ ├── Dockerfile │ │ ├── Release │ │ │ └── chestburster.exe │ │ ├── challenge.rc │ │ ├── challenge.sln │ │ ├── entry.sh │ │ ├── flag.txt │ │ ├── resource │ │ ├── resource.c │ │ └── resource.h │ ├── prompt.md │ └── secret │ │ ├── Dockerfile │ │ ├── client │ │ └── client.go │ │ └── server │ │ └── question.php ├── Cracker Barrel │ ├── Dockerfile │ ├── cracker_barrel │ ├── crackme.c │ ├── entry.sh │ ├── flag.txt │ ├── prompt.md │ └── solution │ │ └── writeup.md ├── Don't Break Me! │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── debug.c │ ├── dont_break_me │ ├── entry.sh │ ├── flag.txt │ └── prompt.md ├── Mr. Game and Watch │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── entry.sh │ ├── flag.txt │ ├── mr_game_and_watch.class │ ├── mr_game_and_watch.java │ └── prompt.md ├── Plain Jane │ ├── Solution │ │ └── writeup.md │ ├── plain │ ├── plain_jane.c │ ├── plain_jane.s │ └── prompt.md ├── Purple Socks │ ├── Dockerfile │ ├── commandline.c │ ├── commandline.h │ ├── decrypter.py │ ├── enc.c │ ├── enc.h │ ├── enc.out │ ├── encrypter.py │ ├── entry.sh │ ├── flag.txt │ ├── prompt.md │ ├── purple_socks │ └── solution │ │ └── writeup.md ├── Sora │ ├── Dockerfile │ ├── Solution │ │ └── writeup.md │ ├── entry.sh │ ├── flag.txt │ ├── keygen.c │ ├── prompt.md │ ├── solve.py │ └── sora ├── TI-83 Beta │ ├── Solution │ │ └── writeup.md │ ├── commandline.c │ ├── commandline.h │ ├── main.c │ ├── prompt.md │ └── rev5.sln ├── mobile0 │ ├── Solution │ │ └── writeup.md │ ├── mobile0.apk │ └── prompt.md ├── mobile1 │ ├── Solution │ │ └── writeup.md │ ├── mobile1.ipa │ └── prompt.md └── reversing_challenges.md ├── Sequence ├── 1 │ ├── answer.txt │ └── prompt.txt ├── Can You SeeDa Sequence │ ├── answer.txt │ ├── prompt.txt │ └── writeup.txt ├── Pi Day │ ├── answer.txt │ └── prompt.txt ├── Polar Bears │ ├── answer.txt │ ├── prompt.txt │ └── writeup.txt ├── Prime Rib │ ├── answer.txt │ └── prompt.txt └── War Eagle │ ├── answer.txt │ └── prompt.txt ├── Signals ├── 5 Layer Dip │ ├── 5LayerDip.wav │ ├── Answer │ │ ├── FTP.pcap │ │ ├── ImportantFile.docx │ │ ├── hex_pcap_no_ascii.txt │ │ └── writeup.txt │ └── prompt.txt ├── Digital │ ├── Writeup.txt │ ├── digital.wav │ └── prompt.txt ├── FCC hunter │ ├── Prompt.txt │ └── Writeup.txt ├── Pick up that CAN │ ├── PickUpThatCan.log │ ├── Prompt.txt │ ├── Writeup.txt │ └── createVcan0.sh └── You Can Tell From Some of The Pixels │ ├── Answer │ ├── flag.png │ └── writeup.txt │ ├── prompt.txt │ └── youCanTellByThePixels.wav ├── Web ├── web1 │ ├── .htaccess │ ├── Dockerfile │ ├── index.html │ └── robots.php ├── web2 │ ├── Dockerfile │ └── index.php ├── web3 │ ├── Dockerfile │ ├── authentication.js │ ├── final.php │ ├── index.html │ └── nextstep.php ├── web4 │ ├── Dockerfile │ ├── flag.txt │ ├── ftp_server.py │ ├── requirements.txt │ ├── startup.sh │ ├── templates │ │ └── help │ └── web_server.py ├── web5 │ ├── .htaccess │ ├── Dockerfile │ ├── Dockerfile.bak │ ├── flag │ ├── flag.txt.gz │ ├── index.html │ └── myscript └── web_writeups.md ├── docker-compose.yml └── up.sh /Bash/Bash_writeups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/Bash_writeups.md -------------------------------------------------------------------------------- /Bash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/Dockerfile -------------------------------------------------------------------------------- /Bash/level1/README: -------------------------------------------------------------------------------- 1 | auctf{W3lcoM3_2_da_C7F} 2 | -------------------------------------------------------------------------------- /Bash/level2/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{g0tt@_muv_fas7} 2 | -------------------------------------------------------------------------------- /Bash/level2/level2_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level2/level2_runner -------------------------------------------------------------------------------- /Bash/level2/level2_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level2/level2_runner.c -------------------------------------------------------------------------------- /Bash/level2/random_dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level2/random_dirs.sh -------------------------------------------------------------------------------- /Bash/level3/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{wut_r_d33z_RaNdom_numz} 2 | -------------------------------------------------------------------------------- /Bash/level3/level3_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level3/level3_runner -------------------------------------------------------------------------------- /Bash/level3/level3_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level3/level3_runner.c -------------------------------------------------------------------------------- /Bash/level3/passcodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level3/passcodes.sh -------------------------------------------------------------------------------- /Bash/level4/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{FunKy_P3rm1ssi0nZ} 2 | -------------------------------------------------------------------------------- /Bash/level4/level4_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level4/level4_runner -------------------------------------------------------------------------------- /Bash/level4/level4_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level4/level4_runner.c -------------------------------------------------------------------------------- /Bash/level4/print_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level4/print_file.sh -------------------------------------------------------------------------------- /Bash/level5/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{n3tc@_purt_$can} 2 | -------------------------------------------------------------------------------- /Bash/level5/level5_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level5/level5_runner -------------------------------------------------------------------------------- /Bash/level5/level5_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level5/level5_runner.c -------------------------------------------------------------------------------- /Bash/level5/portforce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Bash/level5/portforce.sh -------------------------------------------------------------------------------- /Cryptography/Extraordinary/Answer/alternative writeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/Answer/alternative writeup.py -------------------------------------------------------------------------------- /Cryptography/Extraordinary/Answer/answer.txt: -------------------------------------------------------------------------------- 1 | auctf{n3v3R_r3Us3_y0uR_0Tp_872vc8972} -------------------------------------------------------------------------------- /Cryptography/Extraordinary/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/Answer/writeup.txt -------------------------------------------------------------------------------- /Cryptography/Extraordinary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/Dockerfile -------------------------------------------------------------------------------- /Cryptography/Extraordinary/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/entry.sh -------------------------------------------------------------------------------- /Cryptography/Extraordinary/extraordinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/extraordinary.py -------------------------------------------------------------------------------- /Cryptography/Extraordinary/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Extraordinary/prompt.txt -------------------------------------------------------------------------------- /Cryptography/I'll Have The Salad/Answer/Answer.txt: -------------------------------------------------------------------------------- 1 | auctf{jU5t_4_W4rM_uP_1_4421_9952} -------------------------------------------------------------------------------- /Cryptography/I'll Have The Salad/Answer/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/I'll Have The Salad/Answer/Writeup.txt -------------------------------------------------------------------------------- /Cryptography/I'll Have The Salad/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/I'll Have The Salad/Prompt.txt -------------------------------------------------------------------------------- /Cryptography/Land Locked/Answer/answer.txt: -------------------------------------------------------------------------------- 1 | auctf{4LL_y0Ur_B453_R_b3l0Ng_2_uS_124df2sdasv} -------------------------------------------------------------------------------- /Cryptography/Land Locked/Answer/writeup.txt: -------------------------------------------------------------------------------- 1 | It's just base64 encoded. Not really cryptography 2 | 3 | auctf{4LL_y0Ur_B453_R_b3l0Ng_2_uS_124df2sdasv} -------------------------------------------------------------------------------- /Cryptography/Land Locked/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Land Locked/prompt.txt -------------------------------------------------------------------------------- /Cryptography/Pretty Ridiculous/Answer/answer.txt: -------------------------------------------------------------------------------- 1 | auctf{R34lLy_Pr1M3s_w1L1_n3vEr_b3_thI5_Sm411_BuT_h3y} -------------------------------------------------------------------------------- /Cryptography/Pretty Ridiculous/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Pretty Ridiculous/Answer/writeup.txt -------------------------------------------------------------------------------- /Cryptography/Pretty Ridiculous/encrpyt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Pretty Ridiculous/encrpyt.py -------------------------------------------------------------------------------- /Cryptography/Pretty Ridiculous/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Pretty Ridiculous/message.txt -------------------------------------------------------------------------------- /Cryptography/Pretty Ridiculous/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Pretty Ridiculous/prompt.txt -------------------------------------------------------------------------------- /Cryptography/Shifty Shwoozy/Answer/Answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Shifty Shwoozy/Answer/Answer.txt -------------------------------------------------------------------------------- /Cryptography/Shifty Shwoozy/Answer/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Shifty Shwoozy/Answer/Writeup.txt -------------------------------------------------------------------------------- /Cryptography/Shifty Shwoozy/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Shifty Shwoozy/Prompt.txt -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/Answer/answer.txt: -------------------------------------------------------------------------------- 1 | auctf{D0nT_5igN_r4nd0m_Cr4P_w1tH_y0uR_pr1vAT3_k3y_d00d} -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sign Me Up/Answer/writeup.txt -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sign Me Up/Dockerfile -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sign Me Up/message.txt -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/pick_your_poison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sign Me Up/pick_your_poison.py -------------------------------------------------------------------------------- /Cryptography/Sign Me Up/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sign Me Up/prompt.txt -------------------------------------------------------------------------------- /Cryptography/Sleep On It/Answer/answer.txt: -------------------------------------------------------------------------------- 1 | auctf{L4Y3RSUP0NLAYER5H0P3Y0UENJ0ID1T} -------------------------------------------------------------------------------- /Cryptography/Sleep On It/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sleep On It/Answer/writeup.txt -------------------------------------------------------------------------------- /Cryptography/Sleep On It/ciphertext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sleep On It/ciphertext.txt -------------------------------------------------------------------------------- /Cryptography/Sleep On It/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sleep On It/nap.py -------------------------------------------------------------------------------- /Cryptography/Sleep On It/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Sleep On It/prompt.txt -------------------------------------------------------------------------------- /Cryptography/Twice As Secret Right/Answer/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Twice As Secret Right/Answer/answer.txt -------------------------------------------------------------------------------- /Cryptography/Twice As Secret Right/Answer/mystery_signal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Twice As Secret Right/Answer/mystery_signal.wav -------------------------------------------------------------------------------- /Cryptography/Twice As Secret Right/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Twice As Secret Right/Answer/writeup.txt -------------------------------------------------------------------------------- /Cryptography/Twice As Secret Right/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Cryptography/Twice As Secret Right/prompt.txt -------------------------------------------------------------------------------- /Forensics/Animal Crossing/Answer/combined_challenge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Animal Crossing/Answer/combined_challenge.cmd -------------------------------------------------------------------------------- /Forensics/Animal Crossing/Answer/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Animal Crossing/Answer/flag.txt -------------------------------------------------------------------------------- /Forensics/Animal Crossing/Answer/flag_final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Animal Crossing/Answer/flag_final -------------------------------------------------------------------------------- /Forensics/Animal Crossing/Answer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Animal Crossing/Answer/writeup.md -------------------------------------------------------------------------------- /Forensics/Animal Crossing/animalcrossing.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Animal Crossing/animalcrossing.pcapng -------------------------------------------------------------------------------- /Forensics/Block2/Answer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Block2/Answer/writeup.md -------------------------------------------------------------------------------- /Forensics/Block2/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Block2/Prompt.txt -------------------------------------------------------------------------------- /Forensics/Block2/co_block.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Block2/co_block.sql.gz -------------------------------------------------------------------------------- /Forensics/Boom/Answer/Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/Answer/Writeup.md -------------------------------------------------------------------------------- /Forensics/Boom/Answer/answer pt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/Answer/answer pt1.png -------------------------------------------------------------------------------- /Forensics/Boom/Answer/answer pt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/Answer/answer pt2.png -------------------------------------------------------------------------------- /Forensics/Boom/Answer/boompsd.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/Answer/boompsd.7z -------------------------------------------------------------------------------- /Forensics/Boom/Answer/hi-res-ba0782735805201b04a654215730b793_crop_exact.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/Answer/hi-res-ba0782735805201b04a654215730b793_crop_exact.7z -------------------------------------------------------------------------------- /Forensics/Boom/boom.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/boom.sql.gz -------------------------------------------------------------------------------- /Forensics/Boom/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Boom/prompt.txt -------------------------------------------------------------------------------- /Forensics/Fahrenheit 451/Answer/Fahrenheit 451 Full Text .docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Fahrenheit 451/Answer/Fahrenheit 451 Full Text .docx -------------------------------------------------------------------------------- /Forensics/Fahrenheit 451/Answer/Fahrenheit 451 Full Text .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Fahrenheit 451/Answer/Fahrenheit 451 Full Text .pdf -------------------------------------------------------------------------------- /Forensics/Fahrenheit 451/Answer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Fahrenheit 451/Answer/writeup.md -------------------------------------------------------------------------------- /Forensics/Fahrenheit 451/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Fahrenheit 451/Prompt.txt -------------------------------------------------------------------------------- /Forensics/Fahrenheit 451/f451.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Fahrenheit 451/f451.pcapng -------------------------------------------------------------------------------- /Forensics/Har Har Har/Answer/87502894-194871-9-183-18038928741924721.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Har Har Har/Answer/87502894-194871-9-183-18038928741924721.png -------------------------------------------------------------------------------- /Forensics/Har Har Har/Answer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Har Har Har/Answer/writeup.md -------------------------------------------------------------------------------- /Forensics/Har Har Har/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Har Har Har/Prompt.txt -------------------------------------------------------------------------------- /Forensics/Har Har Har/dev.quickbrownfoxes.org_Archive [19-12-01 15-41-53].har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Har Har Har/dev.quickbrownfoxes.org_Archive [19-12-01 15-41-53].har -------------------------------------------------------------------------------- /Forensics/Oops/Answer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Oops/Answer/writeup.md -------------------------------------------------------------------------------- /Forensics/Oops/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Oops/Prompt.txt -------------------------------------------------------------------------------- /Forensics/Oops/debmini.vhdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/Oops/debmini.vhdx -------------------------------------------------------------------------------- /Forensics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Forensics/README.md -------------------------------------------------------------------------------- /Integrity Check/bash_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Integrity Check/bash_check.sh -------------------------------------------------------------------------------- /Integrity Check/check-web2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Integrity Check/check-web2.sh -------------------------------------------------------------------------------- /Integrity Check/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Integrity Check/readme.md -------------------------------------------------------------------------------- /Integrity Check/rebuild-web2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Integrity Check/rebuild-web2.sh -------------------------------------------------------------------------------- /OSINT/ALIedAS About Some Thing/Writeup/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/ALIedAS About Some Thing/Writeup/writeup.txt -------------------------------------------------------------------------------- /OSINT/ALIedAS About Some Thing/prompt.txt: -------------------------------------------------------------------------------- 1 | See what you can find. 2 | 3 | AUCTFShh -------------------------------------------------------------------------------- /OSINT/Easy - Good Old Days/Answer/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/Easy - Good Old Days/Answer/Writeup.txt -------------------------------------------------------------------------------- /OSINT/Easy - Good Old Days/Prompt.txt: -------------------------------------------------------------------------------- 1 | This site used to look a lot cooler. -------------------------------------------------------------------------------- /OSINT/Easy - Who Made Me/Answer/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/Easy - Who Made Me/Answer/Writeup.txt -------------------------------------------------------------------------------- /OSINT/Easy - Who Made Me/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/Easy - Who Made Me/Prompt.txt -------------------------------------------------------------------------------- /OSINT/OSINT You All Over The Place/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/OSINT You All Over The Place/Answer/writeup.txt -------------------------------------------------------------------------------- /OSINT/OSINT You All Over The Place/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/OSINT You All Over The Place/prompt.txt -------------------------------------------------------------------------------- /OSINT/Oryx/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/Oryx/Answer/writeup.txt -------------------------------------------------------------------------------- /OSINT/Oryx/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/OSINT/Oryx/prompt.txt -------------------------------------------------------------------------------- /Password Cracking/Big_Mac/big_mac.clear: -------------------------------------------------------------------------------- 1 | scarface -------------------------------------------------------------------------------- /Password Cracking/Big_Mac/big_mac.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Big_Mac/big_mac.hash -------------------------------------------------------------------------------- /Password Cracking/Big_Mac/big_mac.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Big_Mac/big_mac.prompt -------------------------------------------------------------------------------- /Password Cracking/Big_Mac/big_mac.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Big_Mac/big_mac.solution -------------------------------------------------------------------------------- /Password Cracking/Crack_Me/crack_me.clear: -------------------------------------------------------------------------------- 1 | bad4ever -------------------------------------------------------------------------------- /Password Cracking/Crack_Me/crack_me.hash: -------------------------------------------------------------------------------- 1 | 33f966f258879f252d582d45cef37e5e -------------------------------------------------------------------------------- /Password Cracking/Crack_Me/crack_me.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Crack_Me/crack_me.prompt -------------------------------------------------------------------------------- /Password Cracking/Crack_Me/crack_me.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Crack_Me/crack_me.solution -------------------------------------------------------------------------------- /Password Cracking/Crack_Me_2/crack_me_2.clear: -------------------------------------------------------------------------------- 1 | gardener -------------------------------------------------------------------------------- /Password Cracking/Crack_Me_2/crack_me_2.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Crack_Me_2/crack_me_2.hash -------------------------------------------------------------------------------- /Password Cracking/Crack_Me_2/crack_me_2.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Crack_Me_2/crack_me_2.prompt -------------------------------------------------------------------------------- /Password Cracking/Crack_Me_2/crack_me_2.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Crack_Me_2/crack_me_2.solution -------------------------------------------------------------------------------- /Password Cracking/Keanu/keanu.clear: -------------------------------------------------------------------------------- 1 | D0g$t@r1991 2 | -------------------------------------------------------------------------------- /Password Cracking/Keanu/keanu.hash: -------------------------------------------------------------------------------- 1 | a32480e4c78df0fccfd921d42d2adf03 2 | -------------------------------------------------------------------------------- /Password Cracking/Keanu/keanu.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Keanu/keanu.prompt -------------------------------------------------------------------------------- /Password Cracking/Keanu/keanu.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Keanu/keanu.solution -------------------------------------------------------------------------------- /Password Cracking/Manager/manager.clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Manager/manager.clear -------------------------------------------------------------------------------- /Password Cracking/Manager/manager.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Manager/manager.hash -------------------------------------------------------------------------------- /Password Cracking/Manager/manager.kdbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Manager/manager.kdbx -------------------------------------------------------------------------------- /Password Cracking/Manager/manager.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Manager/manager.prompt -------------------------------------------------------------------------------- /Password Cracking/Manager/manager.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Manager/manager.solution -------------------------------------------------------------------------------- /Password Cracking/Mental/mental.clear: -------------------------------------------------------------------------------- 1 | Azure-Botswana-Mango -------------------------------------------------------------------------------- /Password Cracking/Mental/mental.hash: -------------------------------------------------------------------------------- 1 | 17fbf5b2585f6aab45023af5f5250ac3 -------------------------------------------------------------------------------- /Password Cracking/Mental/mental.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Mental/mental.prompt -------------------------------------------------------------------------------- /Password Cracking/Mental/mental.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Mental/mental.solution -------------------------------------------------------------------------------- /Password Cracking/Salty/salty.clear: -------------------------------------------------------------------------------- 1 | treetop -------------------------------------------------------------------------------- /Password Cracking/Salty/salty.hash: -------------------------------------------------------------------------------- 1 | 5eaff45e09bec5222a9cfa9502a4740d:1337 -------------------------------------------------------------------------------- /Password Cracking/Salty/salty.prompt: -------------------------------------------------------------------------------- 1 | Salty 2 | 3 | You might need this: 1337 4 | 5 | Hash: 6 | 5eaff45e09bec5222a9cfa9502a4740d -------------------------------------------------------------------------------- /Password Cracking/Salty/salty.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Salty/salty.solution -------------------------------------------------------------------------------- /Password Cracking/Zippy/zippy.clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Zippy/zippy.clear -------------------------------------------------------------------------------- /Password Cracking/Zippy/zippy.prompt: -------------------------------------------------------------------------------- 1 | Zippy 2 | 3 | Have fun! -------------------------------------------------------------------------------- /Password Cracking/Zippy/zippy.solution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Zippy/zippy.solution -------------------------------------------------------------------------------- /Password Cracking/Zippy/zippy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Password Cracking/Zippy/zippy.zip -------------------------------------------------------------------------------- /Pwn/Easy as Pie!/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Easy as Pie!/Dockerfile -------------------------------------------------------------------------------- /Pwn/Easy as Pie!/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Easy as Pie!/Solution/writeup.md -------------------------------------------------------------------------------- /Pwn/Easy as Pie!/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Easy as Pie!/entry.sh -------------------------------------------------------------------------------- /Pwn/Easy as Pie!/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Easy as Pie!/prompt.md -------------------------------------------------------------------------------- /Pwn/Easy as Pie!/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Easy as Pie!/shell.py -------------------------------------------------------------------------------- /Pwn/House of Madness/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/Dockerfile -------------------------------------------------------------------------------- /Pwn/House of Madness/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/Solution/writeup.md -------------------------------------------------------------------------------- /Pwn/House of Madness/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/challenge -------------------------------------------------------------------------------- /Pwn/House of Madness/challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/challenge.c -------------------------------------------------------------------------------- /Pwn/House of Madness/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/entry.sh -------------------------------------------------------------------------------- /Pwn/House of Madness/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/exploit.py -------------------------------------------------------------------------------- /Pwn/House of Madness/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{gu3ss_th3_h0us3_1sn't_th4t_m4d} 2 | -------------------------------------------------------------------------------- /Pwn/House of Madness/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/House of Madness/prompt.md -------------------------------------------------------------------------------- /Pwn/Remote School/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/Dockerfile -------------------------------------------------------------------------------- /Pwn/Remote School/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/Solution/writeup.md -------------------------------------------------------------------------------- /Pwn/Remote School/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/entry.sh -------------------------------------------------------------------------------- /Pwn/Remote School/exploit_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/exploit_challenge.py -------------------------------------------------------------------------------- /Pwn/Remote School/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{1_hope_you_l1ked_my_g@m3_2321} 2 | -------------------------------------------------------------------------------- /Pwn/Remote School/online: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/online -------------------------------------------------------------------------------- /Pwn/Remote School/online.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/online.c -------------------------------------------------------------------------------- /Pwn/Remote School/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Remote School/prompt.md -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/Dockerfile -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/Solution/writeup.md -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/entry.sh -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/exploit.py -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{I_s@id_1_w@s_fu11!} 2 | -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/prompt.md -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/turkey -------------------------------------------------------------------------------- /Pwn/Thanksgiving Dinner/turkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/Thanksgiving Dinner/turkey.c -------------------------------------------------------------------------------- /Pwn/pwn_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Pwn/pwn_challenges.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/README.md -------------------------------------------------------------------------------- /Reversing/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/.DS_Store -------------------------------------------------------------------------------- /Reversing/Chestburster/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/Dockerfile -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/Release/chestburster.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/Release/chestburster.exe -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/challenge.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/challenge.rc -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/challenge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/challenge.sln -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/entry.sh -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/flag.txt -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/resource -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/resource.c -------------------------------------------------------------------------------- /Reversing/Chestburster/challenge/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/challenge/resource.h -------------------------------------------------------------------------------- /Reversing/Chestburster/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/prompt.md -------------------------------------------------------------------------------- /Reversing/Chestburster/secret/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/secret/Dockerfile -------------------------------------------------------------------------------- /Reversing/Chestburster/secret/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/secret/client/client.go -------------------------------------------------------------------------------- /Reversing/Chestburster/secret/server/question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Chestburster/secret/server/question.php -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/Dockerfile -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/cracker_barrel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/cracker_barrel -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/crackme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/crackme.c -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/entry.sh -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{w3lc0m3_to_R3_1021} 2 | -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/prompt.md -------------------------------------------------------------------------------- /Reversing/Cracker Barrel/solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Cracker Barrel/solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/Dockerfile -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/debug.c -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/dont_break_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/dont_break_me -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/entry.sh -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{static_or_dyn@mIc?_12923} 2 | -------------------------------------------------------------------------------- /Reversing/Don't Break Me!/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Don't Break Me!/prompt.md -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/Dockerfile -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/entry.sh -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{If_u_h8_JAVA_and_@SM_try_c_sharp_2922} -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/mr_game_and_watch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/mr_game_and_watch.class -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/mr_game_and_watch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/mr_game_and_watch.java -------------------------------------------------------------------------------- /Reversing/Mr. Game and Watch/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Mr. Game and Watch/prompt.md -------------------------------------------------------------------------------- /Reversing/Plain Jane/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Plain Jane/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Plain Jane/plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Plain Jane/plain -------------------------------------------------------------------------------- /Reversing/Plain Jane/plain_jane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Plain Jane/plain_jane.c -------------------------------------------------------------------------------- /Reversing/Plain Jane/plain_jane.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Plain Jane/plain_jane.s -------------------------------------------------------------------------------- /Reversing/Plain Jane/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Plain Jane/prompt.md -------------------------------------------------------------------------------- /Reversing/Purple Socks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/Dockerfile -------------------------------------------------------------------------------- /Reversing/Purple Socks/commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/commandline.c -------------------------------------------------------------------------------- /Reversing/Purple Socks/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/commandline.h -------------------------------------------------------------------------------- /Reversing/Purple Socks/decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/decrypter.py -------------------------------------------------------------------------------- /Reversing/Purple Socks/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/enc.c -------------------------------------------------------------------------------- /Reversing/Purple Socks/enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/enc.h -------------------------------------------------------------------------------- /Reversing/Purple Socks/enc.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/enc.out -------------------------------------------------------------------------------- /Reversing/Purple Socks/encrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/encrypter.py -------------------------------------------------------------------------------- /Reversing/Purple Socks/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/entry.sh -------------------------------------------------------------------------------- /Reversing/Purple Socks/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{encrypti0n_1s_gr8t_12921} 2 | -------------------------------------------------------------------------------- /Reversing/Purple Socks/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/prompt.md -------------------------------------------------------------------------------- /Reversing/Purple Socks/purple_socks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/purple_socks -------------------------------------------------------------------------------- /Reversing/Purple Socks/solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Purple Socks/solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Sora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/Dockerfile -------------------------------------------------------------------------------- /Reversing/Sora/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/Sora/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/entry.sh -------------------------------------------------------------------------------- /Reversing/Sora/flag.txt: -------------------------------------------------------------------------------- 1 | auctf{that_w@s_2_ezy_29302} 2 | -------------------------------------------------------------------------------- /Reversing/Sora/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/keygen.c -------------------------------------------------------------------------------- /Reversing/Sora/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/prompt.md -------------------------------------------------------------------------------- /Reversing/Sora/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/solve.py -------------------------------------------------------------------------------- /Reversing/Sora/sora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/Sora/sora -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/commandline.c -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/commandline.h -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/main.c -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/prompt.md -------------------------------------------------------------------------------- /Reversing/TI-83 Beta/rev5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/TI-83 Beta/rev5.sln -------------------------------------------------------------------------------- /Reversing/mobile0/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile0/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/mobile0/mobile0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile0/mobile0.apk -------------------------------------------------------------------------------- /Reversing/mobile0/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile0/prompt.md -------------------------------------------------------------------------------- /Reversing/mobile1/Solution/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile1/Solution/writeup.md -------------------------------------------------------------------------------- /Reversing/mobile1/mobile1.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile1/mobile1.ipa -------------------------------------------------------------------------------- /Reversing/mobile1/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/mobile1/prompt.md -------------------------------------------------------------------------------- /Reversing/reversing_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Reversing/reversing_challenges.md -------------------------------------------------------------------------------- /Sequence/1/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/1/answer.txt -------------------------------------------------------------------------------- /Sequence/1/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/1/prompt.txt -------------------------------------------------------------------------------- /Sequence/Can You SeeDa Sequence/answer.txt: -------------------------------------------------------------------------------- 1 | 103, 77, 122, 91, 55 -------------------------------------------------------------------------------- /Sequence/Can You SeeDa Sequence/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Can You SeeDa Sequence/prompt.txt -------------------------------------------------------------------------------- /Sequence/Can You SeeDa Sequence/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Can You SeeDa Sequence/writeup.txt -------------------------------------------------------------------------------- /Sequence/Pi Day/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Pi Day/answer.txt -------------------------------------------------------------------------------- /Sequence/Pi Day/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Pi Day/prompt.txt -------------------------------------------------------------------------------- /Sequence/Polar Bears/answer.txt: -------------------------------------------------------------------------------- 1 | 16, 23, 42 -------------------------------------------------------------------------------- /Sequence/Polar Bears/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Polar Bears/prompt.txt -------------------------------------------------------------------------------- /Sequence/Polar Bears/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Polar Bears/writeup.txt -------------------------------------------------------------------------------- /Sequence/Prime Rib/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Prime Rib/answer.txt -------------------------------------------------------------------------------- /Sequence/Prime Rib/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/Prime Rib/prompt.txt -------------------------------------------------------------------------------- /Sequence/War Eagle/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/War Eagle/answer.txt -------------------------------------------------------------------------------- /Sequence/War Eagle/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Sequence/War Eagle/prompt.txt -------------------------------------------------------------------------------- /Signals/5 Layer Dip/5LayerDip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/5LayerDip.wav -------------------------------------------------------------------------------- /Signals/5 Layer Dip/Answer/FTP.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/Answer/FTP.pcap -------------------------------------------------------------------------------- /Signals/5 Layer Dip/Answer/ImportantFile.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/Answer/ImportantFile.docx -------------------------------------------------------------------------------- /Signals/5 Layer Dip/Answer/hex_pcap_no_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/Answer/hex_pcap_no_ascii.txt -------------------------------------------------------------------------------- /Signals/5 Layer Dip/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/Answer/writeup.txt -------------------------------------------------------------------------------- /Signals/5 Layer Dip/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/5 Layer Dip/prompt.txt -------------------------------------------------------------------------------- /Signals/Digital/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Digital/Writeup.txt -------------------------------------------------------------------------------- /Signals/Digital/digital.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Digital/digital.wav -------------------------------------------------------------------------------- /Signals/Digital/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Digital/prompt.txt -------------------------------------------------------------------------------- /Signals/FCC hunter/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/FCC hunter/Prompt.txt -------------------------------------------------------------------------------- /Signals/FCC hunter/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/FCC hunter/Writeup.txt -------------------------------------------------------------------------------- /Signals/Pick up that CAN/PickUpThatCan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Pick up that CAN/PickUpThatCan.log -------------------------------------------------------------------------------- /Signals/Pick up that CAN/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Pick up that CAN/Prompt.txt -------------------------------------------------------------------------------- /Signals/Pick up that CAN/Writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Pick up that CAN/Writeup.txt -------------------------------------------------------------------------------- /Signals/Pick up that CAN/createVcan0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/Pick up that CAN/createVcan0.sh -------------------------------------------------------------------------------- /Signals/You Can Tell From Some of The Pixels/Answer/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/You Can Tell From Some of The Pixels/Answer/flag.png -------------------------------------------------------------------------------- /Signals/You Can Tell From Some of The Pixels/Answer/writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/You Can Tell From Some of The Pixels/Answer/writeup.txt -------------------------------------------------------------------------------- /Signals/You Can Tell From Some of The Pixels/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/You Can Tell From Some of The Pixels/prompt.txt -------------------------------------------------------------------------------- /Signals/You Can Tell From Some of The Pixels/youCanTellByThePixels.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Signals/You Can Tell From Some of The Pixels/youCanTellByThePixels.wav -------------------------------------------------------------------------------- /Web/web1/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web1/.htaccess -------------------------------------------------------------------------------- /Web/web1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web1/Dockerfile -------------------------------------------------------------------------------- /Web/web1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web1/index.html -------------------------------------------------------------------------------- /Web/web1/robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web1/robots.php -------------------------------------------------------------------------------- /Web/web2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web2/Dockerfile -------------------------------------------------------------------------------- /Web/web2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web2/index.php -------------------------------------------------------------------------------- /Web/web3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web3/Dockerfile -------------------------------------------------------------------------------- /Web/web3/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web3/authentication.js -------------------------------------------------------------------------------- /Web/web3/final.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web3/final.php -------------------------------------------------------------------------------- /Web/web3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web3/index.html -------------------------------------------------------------------------------- /Web/web3/nextstep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web3/nextstep.php -------------------------------------------------------------------------------- /Web/web4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/Dockerfile -------------------------------------------------------------------------------- /Web/web4/flag.txt: -------------------------------------------------------------------------------- 1 | YXVjdGZ7MHdAc3BfNnJvSzNOX0B1dGh9Cg== 2 | -------------------------------------------------------------------------------- /Web/web4/ftp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/ftp_server.py -------------------------------------------------------------------------------- /Web/web4/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/requirements.txt -------------------------------------------------------------------------------- /Web/web4/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/startup.sh -------------------------------------------------------------------------------- /Web/web4/templates/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/templates/help -------------------------------------------------------------------------------- /Web/web4/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web4/web_server.py -------------------------------------------------------------------------------- /Web/web5/.htaccess: -------------------------------------------------------------------------------- 1 | Options +ExecCGI 2 | SetHandler cgi-script .sh 3 | -------------------------------------------------------------------------------- /Web/web5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/Dockerfile -------------------------------------------------------------------------------- /Web/web5/Dockerfile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/Dockerfile.bak -------------------------------------------------------------------------------- /Web/web5/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/flag -------------------------------------------------------------------------------- /Web/web5/flag.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/flag.txt.gz -------------------------------------------------------------------------------- /Web/web5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/index.html -------------------------------------------------------------------------------- /Web/web5/myscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web5/myscript -------------------------------------------------------------------------------- /Web/web_writeups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/Web/web_writeups.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auehc/AUCTF-2020/HEAD/up.sh --------------------------------------------------------------------------------