├── 2018 ├── BSides Delhi CTF 2018 │ └── rev.py ├── Hack.lu CTF 2018 │ ├── file │ └── rev │ │ └── BabyReverse.py ├── N1CTF │ ├── Crypto │ │ ├── baby_N1ES │ │ │ ├── N1ES.py │ │ │ └── challenge.py │ │ └── file │ └── file ├── RCTF 2018 │ ├── file │ └── rev │ │ ├── babyre │ │ ├── sp.py │ │ └── sp.rr2 │ │ └── file ├── Securinets CTF Quals 2018 │ ├── file │ └── rev │ │ ├── Service Hidden in the Bush │ │ └── file.py │ │ └── file ├── UIUCTF_2018 │ └── triptych.py └── file ├── 2019 ├── ENCRYPT CTF │ ├── crypto │ │ ├── RSA_Baby.py │ │ └── file │ └── file ├── KipodAfterFree CTF │ ├── file │ └── rev │ │ ├── dkdos │ │ ├── README.md │ │ ├── dkdos.exe │ │ ├── dkdos.py │ │ ├── fun.png │ │ └── password.png │ │ └── file ├── NewbieCTF │ ├── file │ ├── pwn │ │ ├── dRop_the_beat │ │ │ ├── drop_the_beat_easy │ │ │ ├── drop_the_beat_easy.py │ │ │ ├── leak_to_address.py │ │ │ └── libc.so.6 │ │ └── file │ └── rev │ │ ├── babyrev │ │ ├── babyrev.exe │ │ └── babyrev.py │ │ └── file ├── Securinets │ ├── file │ ├── pwn │ │ └── Welcome.PNG │ └── rev │ │ ├── Matrix_of_Hell!.py │ │ └── RBOOM!.py ├── Sunshine │ ├── file │ └── rev │ │ ├── WrestleOfMania │ │ ├── WrestleOfMania │ │ ├── WrestleOfMania.py │ │ └── WrestleOfMania.rr2 │ │ └── file ├── TAMUctf │ ├── file │ └── rev │ │ ├── Cr4ckZ33C0d3 │ │ ├── prodkey │ │ └── prodkey.py │ │ ├── Obfuscaxor │ │ ├── obfuscaxor │ │ ├── obfuscaxor.py │ │ └── obfuscaxor.rr2 │ │ └── file ├── TUCTF │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ ├── shellme32 │ │ │ ├── shellme32 │ │ │ └── shellme32.py │ │ ├── shellme64 │ │ │ ├── shellme64 │ │ │ └── shellme64.py │ │ └── thefirst │ │ │ ├── thefirst │ │ │ └── thefirst.py │ └── rev │ │ ├── core │ │ ├── README.md │ │ ├── core │ │ ├── core.PNG │ │ └── core.py │ │ ├── file │ │ └── run │ │ ├── run.o │ │ └── run.py └── file ├── 2020 ├── #kksctf open 2020 │ ├── README.md │ └── rev │ │ └── Yet Another Crypto Task │ │ ├── README.md │ │ ├── Yet Another Crypto Task.py │ │ └── task ├── Aero CTF 2020 │ ├── README.md │ └── rev │ │ ├── 1000 and 1 night │ │ ├── README.md │ │ ├── file.txt │ │ ├── files.py │ │ ├── files.zip │ │ └── files_angr.py │ │ └── README.md ├── Affinity CTF Lite (Junior_Beginner) │ ├── README.md │ └── rev │ │ └── pseudo-pseudo_random.py ├── BSides Algiers 2021 Quals │ ├── README.md │ └── rev │ │ ├── Lookups │ │ ├── README.md │ │ ├── fun.nasm │ │ ├── lookups │ │ └── solver.c │ │ └── README.md ├── COMPFEST CTF 2020 │ ├── README.md │ ├── pwn │ │ ├── Binary Exploitation is Ez │ │ │ ├── binary-exploitation-is-ez.zip │ │ │ └── ez.py │ │ └── README.md │ └── rev │ │ ├── CreeptiCity │ │ ├── README.md │ │ ├── creepticity.zip │ │ ├── encryptor.c │ │ ├── encryptor.py │ │ └── encryptor_path │ │ └── README.md ├── CSAW │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── rop │ │ │ ├── README.md │ │ │ ├── libc-2.27.so │ │ │ ├── rop │ │ │ └── rop.py │ └── rev │ │ ├── README.md │ │ └── not_malware │ │ ├── README.md │ │ ├── not_malware │ │ ├── not_malware.py │ │ ├── not_malware_path │ │ └── not_malware_v1.py ├── DawgCTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ ├── missyelliott │ │ └── missyelliott.py ├── DefCamp CTF 2020 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ ├── bazooka │ │ ├── README.md │ │ ├── pwn_bazooka_bazooka │ │ └── pwn_bazooka_bazooka.py │ │ └── darkmagic │ │ ├── README.md │ │ ├── pwn_darkmagic │ │ └── pwn_darkmagic.py ├── Fword_CTF │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── welcome_pwn │ │ │ ├── README.md │ │ │ ├── libc6_2.30-0ubuntu2.1_i386.so │ │ │ ├── molotov │ │ │ └── molotov.py │ └── rev │ │ ├── Auto │ │ ├── Auto.zip │ │ ├── README.md │ │ └── solver.py │ │ ├── README.md │ │ └── welcome │ │ ├── README.md │ │ ├── welcome │ │ └── welcome.py ├── Google_2020 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── beginner │ │ ├── README.md │ │ ├── a.out │ │ ├── solver.bin │ │ ├── solver.c │ │ └── solver.py ├── HSCTF_7 │ ├── README.md │ ├── crypto │ │ ├── README.md │ │ └── Randomization_1 │ │ │ ├── README.md │ │ │ └── rand.py │ ├── pwn │ │ ├── README.md │ │ └── pwnagotchi │ │ │ ├── README.md │ │ │ ├── pwnagotchi │ │ │ └── pwnagotchi.py │ └── rev │ │ ├── AP Lab: English Language │ │ ├── English.py │ │ └── README.md │ │ ├── README.md │ │ └── dis │ │ ├── README.md │ │ ├── dis.py │ │ └── disas ├── JISCTF 2020 Qualifications │ ├── Crypto │ │ ├── N0T-B4By.py │ │ ├── N0T-B4By.zip │ │ └── README.md │ └── README.md ├── Newark Academy CTF 2020 │ ├── General Skills │ │ ├── README.md │ │ └── Zip Madness │ │ │ ├── README.md │ │ │ └── unzip.py │ ├── README.md │ └── pwn │ │ ├── Format │ │ ├── README.md │ │ ├── format │ │ ├── format.c │ │ └── format.py │ │ ├── README.md │ │ └── dROPit │ │ ├── README.md │ │ ├── dropit │ │ └── dropit.py ├── RACTF │ ├── README.md │ ├── pwn │ │ ├── FIAS │ │ │ ├── fias │ │ │ ├── fias_v1.py │ │ │ └── fias_v2.py │ │ ├── README.md │ │ ├── fiap │ │ │ ├── fiap │ │ │ └── fiap.py │ │ └── nra │ │ │ ├── nra │ │ │ └── nra.py │ └── rev │ │ ├── README.md │ │ └── Snakes and Ladders │ │ └── main.py ├── README.md ├── UMDCTF │ ├── README.md │ └── pwn │ │ ├── README.md │ │ ├── baby │ │ └── baby.py ├── VULNCON CTF 2020 │ ├── README.md │ └── pwn │ │ ├── Looping │ │ ├── README.md │ │ ├── libc.so.6 │ │ ├── looping │ │ └── looping.py │ │ └── README.md ├── X-MAS CTF 2020 │ ├── README.md │ ├── programming │ │ ├── Biggest Lowest.py │ │ └── README.md │ ├── rev │ │ ├── README.md │ │ └── thou shall pass │ │ │ ├── README.md │ │ │ ├── thou_shall_pass │ │ │ └── thou_shall_pass.py │ └── shell │ │ ├── Complaint.PNG │ │ └── README.md ├── castorsCTF20 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ └── babybof1 pt2 │ │ ├── README.md │ │ ├── babybof │ │ ├── babybof.py │ │ ├── leak_gets.PNG │ │ └── libc.PNG ├── csictf2020 │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── hello │ │ │ ├── hello │ │ │ ├── hello.py │ │ │ └── libc.so.6 │ └── rev │ │ ├── README.md │ │ └── pydis2ctf │ │ ├── C1cipher.txt │ │ ├── C2cipher.txt │ │ ├── encodedflag.txt │ │ └── pydis2ctf.py ├── redpwnCTF 2020 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ └── the-library │ │ ├── libc.so.6 │ │ ├── the-library │ │ ├── the-library.c │ │ └── the-library.py └── ångstromCTF 2020 │ ├── Canary │ ├── README.md │ ├── canary │ └── canary.py │ ├── README.md │ └── Wacko Images │ ├── README.md │ ├── enc.png │ ├── flag.png │ ├── image-decode.py │ └── image-encryption.py ├── 2021 ├── 0x41414141 │ ├── README.md │ ├── misc │ │ ├── README.md │ │ └── file reader │ │ │ ├── Przechwytywanie.PNG │ │ │ └── README.md │ └── pwn │ │ ├── README.md │ │ ├── Return Of The ROPs │ │ ├── README.md │ │ ├── Return Of The ROPs.7z │ │ └── ret-of-the-rops.py │ │ └── moving-signals │ │ ├── README.md │ │ ├── moving-signals.py │ │ └── moving_signals ├── ASIS CTF Finals 2021 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── crina │ │ ├── Crina_5eb8a5f5f171760017da7ab66ae1a0a5bd79f650.txz │ │ ├── README.md │ │ ├── crina.py │ │ └── test.png ├── ASIS CTF Quals 2021 │ ├── README.md │ └── rev │ │ ├── Beans talk │ │ ├── README.md │ │ ├── beanstalk │ │ ├── coder.c │ │ └── solver.py │ │ └── README.md ├── BSidesSF │ ├── README.md │ └── pwn │ │ ├── Pwnzoo │ │ ├── Pwnzoo.py │ │ ├── README.md │ │ └── pwnzoo │ │ ├── README.md │ │ └── Runme3 │ │ ├── README.md │ │ ├── Runme3 │ │ ├── Runme3.nasm │ │ ├── Runme3.py │ │ └── runme ├── BlueHens CTF 2021 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ ├── Tiny Tim │ │ ├── README.md │ │ ├── tiny-tim.out │ │ └── tiny_tim.py │ │ └── beef-of-finitude │ │ ├── README.md │ │ ├── bof.out │ │ └── bof.py ├── COMPFEST CTF 2021 │ ├── README.md │ ├── for │ │ ├── README.md │ │ └── alogus │ │ │ ├── Dillan_Duck.zip │ │ │ ├── README.md │ │ │ ├── a.png │ │ │ ├── find_password.py │ │ │ └── keyloger.py │ └── rev │ │ ├── Magical Mystery Club │ │ ├── README.md │ │ ├── mystery_club │ │ └── mystery_club.py │ │ ├── Pave The Way │ │ ├── README.md │ │ ├── chall.PNG │ │ ├── chall.jar │ │ └── chall.py │ │ └── README.md ├── Cyber Santa is Coming to Town │ ├── README.md │ └── rev │ │ ├── README.md │ │ ├── bamboozled │ │ ├── README.md │ │ ├── bamboozled.py │ │ ├── rev_bamboozled.zip │ │ └── solver.py │ │ └── upgraded │ │ ├── 1.png │ │ ├── 2.png │ │ ├── README.md │ │ ├── rev_upgraded.c │ │ └── rev_upgraded.zip ├── DCTF │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── formats_last_theorem │ │ │ ├── README.md │ │ │ ├── formats_last_theorem │ │ │ └── formats_last_theorem.py │ └── rev │ │ ├── README.md │ │ ├── hansel_und_gretel │ │ ├── README.md │ │ ├── hansel_und_gretel │ │ └── hansel_und_gretel.py │ │ └── hercules │ │ ├── README.md │ │ ├── decode_flag.py │ │ ├── get_encode_flag.py │ │ ├── get_seed.c │ │ ├── hercules │ │ └── plik.txt ├── DEADFACE CTF │ ├── README.md │ └── rev │ │ ├── Cereal Killer 2 │ │ ├── README.md │ │ └── re02.exe │ │ └── README.md ├── DamCTF 2021 │ ├── README.md │ ├── misc │ │ ├── README.md │ │ └── bad-patterns │ │ │ ├── README.md │ │ │ └── encode_decode.py │ └── pwn │ │ ├── README.md │ │ └── cookie-monster │ │ ├── README.md │ │ ├── cookie-monster │ │ └── cookie-monster.py ├── Damncon 2021 │ ├── Fool │ │ ├── Lets_see_yours_skills │ │ │ ├── 6c45c247-0e6a-49c3-a478-58be7c51d124-output.zip │ │ │ └── README.md │ │ └── README.md │ └── README.md ├── DiceCTF │ ├── README.md │ └── pwn │ │ ├── README.md │ │ └── babyrop │ │ ├── README.md │ │ ├── babyrop.7z │ │ └── babyrop.py ├── Digital Overdose 2021 Autumn CTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── time │ │ ├── README.md │ │ ├── time │ │ └── time.c ├── Dragon CTF 2021 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── Run of the Mill │ │ ├── README.md │ │ ├── runofthemill │ │ └── runofthemill.py ├── Foobar_CTF │ ├── README.md │ ├── pwn │ │ ├── Oldskool │ │ │ ├── README.md │ │ │ ├── chall.7z │ │ │ └── chall.py │ │ ├── README.md │ │ └── rOw Row roW │ │ │ ├── README.md │ │ │ ├── chall │ │ │ ├── chall.asm │ │ │ ├── chall.py │ │ │ └── chall.raw │ └── rev │ │ ├── README.md │ │ └── childrev │ │ ├── README.md │ │ ├── childrev │ │ └── childrev.py ├── GrabCON CTF │ ├── README.md │ └── pwn │ │ ├── Can you? │ │ ├── README.md │ │ ├── cancancan │ │ └── cancancan.py │ │ ├── Pwn CTF │ │ ├── README.md │ │ ├── pwn2 │ │ └── pwn2.py │ │ └── README.md ├── HSCTF 8 │ ├── README.md │ ├── algo │ │ ├── README.md │ │ ├── not-really-math.pdf │ │ └── not-really-math_v2.py │ └── rev │ │ ├── Multidimensional │ │ ├── Multidimensional.java │ │ ├── Multidimensional.py │ │ └── README.md │ │ ├── README.md │ │ └── WarmupRev │ │ ├── README.md │ │ ├── WarmupRev.java │ │ └── WarmupRev.py ├── ImaginaryCTF 2021 │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── string_editor_1 │ │ │ ├── README.md │ │ │ ├── libc.so.6 │ │ │ ├── string_editor_1 │ │ │ └── string_editor_1.py │ └── rev │ │ ├── README.md │ │ └── jumprope │ │ ├── README.md │ │ ├── gen_val.c │ │ ├── jumprope │ │ └── jumprope.py ├── LIT CTF │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ ├── editor_pwn │ │ │ ├── README.md │ │ │ ├── editor_pwn.zip │ │ │ └── solver.py │ │ ├── gets_pwn │ │ │ ├── README.md │ │ │ ├── gets.py │ │ │ └── gets_pwn.zip │ │ └── madlibs_pwn │ │ │ ├── README.md │ │ │ ├── madlibs.py │ │ │ └── madlibs_pwn.zip │ └── rev │ │ ├── NeverGonna LetYouDown │ │ ├── Never Gonna Let You Down.zip │ │ ├── README.md │ │ └── solver.py │ │ ├── README.md │ │ └── shuffle1 │ │ ├── README.md │ │ ├── shuffle1.zip │ │ └── solve.py ├── NahamCon CTF 2021 │ ├── README.md │ └── Zenith │ │ ├── README.md │ │ ├── a.PNG │ │ ├── a1.PNG │ │ ├── a2.PNG │ │ ├── a3.PNG │ │ ├── a4.PNG │ │ ├── a5.PNG │ │ ├── a6.PNG │ │ └── a7.PNG ├── PBjar CTF '21 │ ├── README.md │ └── pwn │ │ ├── FmtStr │ │ ├── README.md │ │ ├── fmtstr.7z │ │ └── fmtstr.py │ │ ├── README.md │ │ └── ret2libc │ │ ├── README.md │ │ ├── ret2libc.py │ │ └── ret2libc.zip ├── README.md ├── RTLxHA CTF 21 │ ├── README.md │ └── rev │ │ ├── Bites │ │ ├── README.md │ │ ├── dc9_bites.txt │ │ ├── flag.txt │ │ └── solve.py │ │ └── README.md ├── RaRCTF 2021 │ ├── README.md │ ├── crypto │ │ ├── README.md │ │ └── minigen │ │ │ ├── README.md │ │ │ ├── minigen.py │ │ │ ├── minigen_solve.py │ │ │ └── output.txt │ ├── pwn │ │ ├── Not That Simple │ │ │ ├── README.md │ │ │ ├── notsimple │ │ │ └── notsimple.py │ │ └── README.md │ └── rev │ │ ├── Infinite Free Trial │ │ ├── README.md │ │ ├── ift.py │ │ └── ift.zip │ │ ├── README.md │ │ ├── Very TriVial ReVersing │ │ ├── README.md │ │ ├── vtr-alternate │ │ ├── vtr-alternate.py │ │ └── vtr-alternate.rr2 │ │ └── verybabyrev │ │ ├── README.md │ │ ├── verybabyrev │ │ └── verybabyrev.py ├── S.H.E.L.L. CTF │ ├── README.md │ ├── crypto │ │ ├── README.md │ │ └── arc-cipher │ │ │ ├── README.md │ │ │ ├── script.py │ │ │ └── solver.py │ └── rev │ │ ├── README.md │ │ └── assembly │ │ ├── README.md │ │ ├── asm_code.nasm │ │ ├── asm_code.txt │ │ ├── fun.nasm │ │ └── solver.c ├── SPbCTF's Student CTF 2021 Quals │ ├── README.md │ └── rev │ │ ├── Paf │ │ ├── README.md │ │ ├── paf_5aa0839763.elf │ │ └── paf_5aa0839763.py │ │ └── README.md ├── TMUCTF 2021 │ ├── README.md │ └── rev │ │ ├── Crack House │ │ ├── CrackHouse.7z │ │ ├── README.md │ │ ├── gen_license.c │ │ └── solver.py │ │ └── README.md ├── UIUCTF 2021 │ ├── README.md │ └── rev │ │ ├── Prime Extravaganza │ │ ├── README.md │ │ ├── challenge │ │ └── solve.py │ │ ├── README.md │ │ ├── Tedious │ │ ├── README.md │ │ ├── Tedious.py │ │ └── challenge │ │ ├── hvhpgs{synt} │ │ ├── README.md │ │ ├── chal │ │ └── solve.py │ │ └── signals │ │ ├── README.md │ │ ├── signals │ │ └── signals.py ├── UMDCTF │ ├── README.md │ └── rev │ │ ├── FeistyCrypt │ │ ├── FeistyCrypt.7z │ │ ├── FeistyCrypt.py │ │ └── README.md │ │ └── README.md ├── VULNCON CTF │ ├── README.md │ ├── crypto │ │ ├── README.md │ │ └── mfine │ │ │ ├── README.md │ │ │ ├── mfine.py │ │ │ └── mfine.zip │ └── pwn │ │ ├── More than Shellcoding │ │ ├── More_than_shellcoding │ │ ├── More_than_shellcoding.py │ │ ├── README.md │ │ └── shell.asm │ │ └── README.md ├── WPICTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── WannaSigh++ │ │ ├── README.md │ │ ├── wannasigh_elf3.7z │ │ └── wannasigh_elf3.py ├── corCTF 2021 │ ├── README.md │ └── crypto │ │ ├── 4096 │ │ ├── 4096.py │ │ ├── 4096.tar.xz │ │ └── README.md │ │ └── README.md ├── darkCON_CTF │ ├── README.md │ └── pwn │ │ ├── README.md │ │ └── easy-rop │ │ ├── README.md │ │ ├── easy-rop │ │ └── easy-rop.py ├── idekCTF 2021 │ ├── README.md │ └── crypto │ │ ├── Hashbrowns │ │ ├── Hashbrowns.py │ │ └── README.md │ │ ├── Polyphenol │ │ ├── Polyphenol.py │ │ └── README.md │ │ └── README.md ├── picoCTF2021 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ └── filtered-shellcode │ │ ├── README.md │ │ ├── filtered_shellcode.nasm │ │ └── filtered_shellcode.py └── redpwn │ ├── README.md │ └── rev │ ├── README.md │ └── dimensionality │ ├── README.md │ ├── chall │ └── chall.py ├── 2022 ├── ADDA CTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── elves │ │ ├── README.md │ │ ├── elvspeak.zip │ │ ├── file.txt │ │ └── solve.py ├── CSAW CTF Qualification Round 2022 │ ├── README.md │ └── rev │ │ ├── Conti │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── Conti.7z │ │ ├── Program.cs │ │ ├── README.md │ │ ├── encryptedFiles.zip │ │ └── manifesto.pdf │ │ └── README.md ├── FooBar CTF 2022 │ ├── README.md │ ├── pwn │ │ ├── Hunters │ │ │ ├── Hunters │ │ │ ├── Hunters.py │ │ │ ├── Hunters_asm.nasm │ │ │ └── README.md │ │ ├── README.md │ │ └── Warmup │ │ │ ├── README.md │ │ │ ├── Warmup.py │ │ │ ├── chall │ │ │ └── libc.so.6 │ └── rev │ │ ├── Baby Rev │ │ ├── README.md │ │ ├── baby_rev.py │ │ └── chall │ │ ├── Entropy Solver │ │ ├── README.md │ │ ├── entropy │ │ └── entropy.py │ │ ├── Let's gooo │ │ ├── README.md │ │ ├── encrypteddata.txt │ │ ├── malgo │ │ └── malgo.go │ │ └── README.md ├── GDG Algiers CTF 2022 │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── mind-games │ │ │ ├── README.md │ │ │ ├── mind-games.py │ │ │ ├── mind-games.zip │ │ │ └── mind-games_1.c │ └── rev │ │ ├── README.md │ │ └── oldschool │ │ ├── 1.png │ │ ├── README.md │ │ ├── oldschool.c │ │ ├── oldschool.com │ │ ├── oldschool.nasm │ │ └── oldschool.py ├── Global CyberPeace Challenge 3.0 CTF-IT │ ├── README.md │ └── rev │ │ ├── CrackMe Native │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── README.md │ │ ├── f65cd923-4a36-4ae6-ba82-a936c6f76514.apk │ │ └── solve.py │ │ ├── License Key Circumvention Level 4 │ │ ├── 3e0175f3-b606-4db1-9f21-f32ecc0237bc.zip │ │ └── README.md │ │ └── README.md ├── MapleCTF 2022 │ ├── README.md │ └── pwn │ │ ├── README.md │ │ ├── warmup1 │ │ ├── README.md │ │ ├── warmup1 │ │ └── warmup1.py │ │ └── warmup2 │ │ ├── README.md │ │ ├── warmup2 │ │ └── warmup2.py ├── Newark Academy CTF │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── Return │ │ │ ├── README.md │ │ │ ├── ret2 │ │ │ ├── ret2.c │ │ │ └── ret2.py │ └── rev │ │ ├── Elsewhere │ │ ├── README.md │ │ ├── elsewhere │ │ ├── elsewhere_patch │ │ ├── input.py │ │ ├── patch_xor_raw.py │ │ ├── plik │ │ ├── print_xor.py │ │ ├── run.py │ │ ├── write │ │ ├── write.asm │ │ ├── xor_raw │ │ └── xor_raw.py │ │ └── README.md ├── NiteCTF 2022 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── goodware │ │ ├── README.md │ │ ├── flag.enc │ │ ├── goodware │ │ └── solver.c ├── PING2022 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── crypto │ │ ├── README.md │ │ ├── dd21bfaa4d6b007213e45062322485fa.zip │ │ └── solver.py ├── README.md ├── TAMUctf 2022 │ ├── README.md │ ├── pwn │ │ ├── One and Done │ │ │ ├── README.md │ │ │ ├── one-and-done.py │ │ │ └── one-and-done.zip │ │ └── README.md │ └── rev │ │ ├── README.md │ │ ├── REdo 3 │ │ ├── README.md │ │ └── pizza │ │ └── Unboxing │ │ ├── README.md │ │ ├── solver-template.py │ │ ├── sp.rr2 │ │ ├── sp1.rr2 │ │ └── stdio.txt ├── UTCTF-2022 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── UTCTF Adventure ROM 4 │ │ ├── README.md │ │ └── game.gb ├── Wolverine Security ConferenceCTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ ├── n33dl3 │ │ ├── README.md │ │ ├── n33dl3 │ │ └── n33dl3_1 │ │ └── symmetry │ │ ├── README.md │ │ ├── symmetry │ │ ├── symmetry_decode.c │ │ └── symmetry_encode.c ├── p4ctf 2022 │ ├── README.md │ └── rev │ │ ├── Hack'n'slash-ware │ │ ├── 21397485be37220aeea90c382574d2c1337c6b6724ba34a14911b7fceb335abc_hack-n-slash-ware.tar.gz │ │ ├── README.md │ │ ├── hack-n-slash_N_.c │ │ ├── hack-n-slash_enc.py │ │ ├── hack-n-slash_solve.py │ │ ├── p4_ctf.nasm │ │ └── p4_ctf.png │ │ └── README.md ├── vsCTF 2022 │ ├── README.md │ └── rev │ │ ├── Binary Flood │ │ ├── Binary Flood.zip │ │ ├── README.md │ │ ├── file.pdf │ │ ├── file.png │ │ └── solve.py │ │ ├── Functional CPP │ │ ├── README.md │ │ ├── challenge │ │ ├── challenge.py │ │ ├── gdb_0.png │ │ └── gdb_1.png │ │ ├── README.md │ │ └── Tuning Test │ │ ├── README.md │ │ ├── zzz │ │ └── zzz.py └── zer0pts CTF 2022 │ ├── README.md │ └── rev │ ├── README.md │ └── service │ ├── README.md │ ├── service.py │ └── service_effb65331425e241f1bb4a43e96594ad.tar.gz ├── 2023 ├── Byte Bandits CTF 2023 │ ├── README.md │ ├── pwn │ │ ├── Medium pwn │ │ │ ├── README.md │ │ │ ├── medium_pwn.zip │ │ │ └── solver.py │ │ └── README.md │ └── rev │ │ ├── README.md │ │ └── ez-pz-xor │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── README.md │ │ ├── ez-pz_xor.zip │ │ └── ez-pz_xor_injection.py ├── Codeby Games CTF │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── links │ │ ├── README.md │ │ ├── links.exe │ │ └── solve.py ├── ISITDTU │ ├── README.md │ └── rev │ │ ├── README.md │ │ ├── dot │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── README.md │ │ └── solver.py │ │ ├── re01 │ │ ├── 1.png │ │ ├── README.md │ │ ├── fun.nasm │ │ ├── re01 │ │ └── re01_solver.c │ │ └── sanity_check │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── README.md │ │ ├── sanity_check │ │ └── solver.py ├── IrisCTF 2023 │ ├── README.md │ ├── pwn │ │ ├── README.md │ │ └── ret2libm │ │ │ ├── README.md │ │ │ ├── ret2libm.zip │ │ │ └── solver.py │ └── rev │ │ ├── Alien Math │ │ ├── README.md │ │ ├── alien_math │ │ ├── number │ │ ├── number.c │ │ ├── solver.py │ │ ├── solver_local.py │ │ ├── srand_rand │ │ └── srand_rand.c │ │ └── README.md ├── PCTF │ ├── README.md │ └── pwn │ │ ├── README.md │ │ ├── bookshelf │ │ ├── README.md │ │ ├── bookshelf │ │ ├── libc.so.6 │ │ └── solver.py │ │ ├── bookshelfv2 │ │ ├── README.md │ │ ├── bookshelf │ │ ├── libc.so.6 │ │ └── solver.py │ │ └── printshop │ │ ├── README.md │ │ ├── printshop │ │ └── solver.py ├── README.md ├── TCP1P │ ├── README.md │ └── rev │ │ ├── ELF Cracker │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 91.png │ │ ├── README.md │ │ ├── elf-cracker │ │ ├── flag │ │ └── solver.py │ │ └── README.md ├── bi0sCTF 2022 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── Rusted │ │ ├── README.md │ │ ├── rusted │ │ └── solver.py └── uiuctf │ ├── README.md │ └── rev │ ├── README.md │ └── vmwhere1 │ ├── README.md │ ├── chal │ ├── program │ └── solver.py ├── 2024 ├── Blue Water CTF 2024 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── maybe Checker │ │ ├── README.md │ │ ├── maybe_checker │ │ └── maybe_checker.py ├── CSAW'24 │ ├── README.md │ └── rev │ │ ├── Archeology │ │ ├── README.md │ │ ├── chal │ │ ├── hieroglyphs.txt │ │ ├── message.txt │ │ └── solver.py │ │ └── README.md ├── CYBERGON CTF_2024 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── hashhash │ │ ├── README.md │ │ ├── fun.nasm │ │ ├── hashhash │ │ └── solver.c ├── GCC CTF 2024 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── Warp_jump │ │ ├── README.md │ │ ├── solver.c │ │ └── warp_jump ├── README.md ├── SekaiCTF 2024 │ ├── README.md │ └── rev │ │ ├── Crack Me │ │ ├── 1.png │ │ ├── 2.png │ │ ├── README.md │ │ └── decode_pass.py │ │ ├── README.md │ │ └── X64 Extension │ │ ├── README.md │ │ ├── decode.nasm │ │ ├── dist.zip │ │ └── encode.nasm ├── TetCTF 2024 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── Warm up │ │ ├── README.md │ │ ├── challenge │ │ ├── help_gdb.py │ │ └── solver.py ├── UofTCTF 2024 │ ├── README.md │ └── rev │ │ ├── CEO's Lost Password │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── Bank.java │ │ ├── BankChallenge.jar │ │ ├── README.md │ │ ├── a.java │ │ └── solver.py │ │ ├── Love Debug │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── README.md │ │ └── love-letter-for-you │ │ ├── README.md │ │ └── Random Maze │ │ ├── 1.png │ │ ├── README.md │ │ ├── maze │ │ └── solver.py ├── World Wide CTF 2024 │ ├── README.md │ └── rev │ │ ├── Flag Checker │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── README.md │ │ ├── flag-checker.exe │ │ └── output.bin │ │ └── README.md └── b01lers CTF 2024 │ ├── README.md │ ├── misc │ ├── README.md │ ├── bash cat with pipe │ │ └── README.md │ └── wabash │ │ └── README.md │ ├── pwn │ ├── README.md │ └── seeing-red │ │ ├── 1.png │ │ ├── README.md │ │ ├── chal │ │ └── solve.py │ └── rev │ ├── Annnnnnny Second Now │ ├── Annnnnnny-Second-Now │ ├── README.md │ └── solve.py │ ├── README.md │ └── js-safe │ ├── README.md │ ├── js-safe-dist.tar.gz │ ├── solve_js.js │ └── solve_z3.py ├── 2025 ├── BearcatCTF 2025: World Tour │ ├── README.md │ ├── pwn │ │ ├── CallingConvention │ │ │ ├── README.md │ │ │ ├── calling_convention.zip │ │ │ └── solve.py │ │ └── README.md │ └── rev │ │ ├── Hungry Hungry Hippos │ │ ├── 1.png │ │ ├── 2.png │ │ ├── README.md │ │ ├── hungry │ │ └── solve.py │ │ ├── README.md │ │ └── crython │ │ ├── README.md │ │ ├── crython.py │ │ └── solve.py ├── Break the Syntax CTF 2025 │ ├── README.md │ └── rev │ │ ├── README.md │ │ ├── Translator │ │ ├── README.md │ │ ├── solve.py │ │ ├── text │ │ └── translator │ │ └── the Last Xor in Lithuania │ │ ├── README.md │ │ ├── a.out │ │ └── solve.py ├── IrisCTF 2025 │ ├── README.md │ └── rev │ │ ├── Crispy Kelp │ │ ├── README.md │ │ ├── crispy-kelp.tar.gz │ │ └── solver.py │ │ └── README.md ├── L3akCTF 2025 │ ├── README.md │ └── rev │ │ ├── Alpha │ │ ├── README.md │ │ ├── chal │ │ ├── code_asm.txt │ │ ├── gdb_decode_code.py │ │ └── solver.py │ │ ├── README.md │ │ └── pacman │ │ ├── README.md │ │ ├── pac │ │ └── solver.py ├── LA CTF 2025 │ ├── README.md │ └── rev │ │ ├── README.md │ │ └── the-eye │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── solve.py │ │ └── the-eye ├── NahamCon CTF 2025 │ ├── README.md │ └── rev │ │ ├── It's Locked │ │ ├── README.md │ │ ├── bclVerifyDec.sh │ │ ├── crack_password.sh │ │ ├── decode.sh │ │ └── flag.sh │ │ ├── No! Not again! │ │ ├── 1.png │ │ ├── README.md │ │ ├── crackme-rust-fun.exe │ │ └── solver.py │ │ ├── README.md │ │ └── What's a base amongst friends? │ │ ├── README.md │ │ ├── solver.py │ │ └── whats-a-base └── README.md └── README.md /2018/BSides Delhi CTF 2018/rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/BSides Delhi CTF 2018/rev.py -------------------------------------------------------------------------------- /2018/Hack.lu CTF 2018/file: -------------------------------------------------------------------------------- 1 | Hack.lu CTF 2018 2 | -------------------------------------------------------------------------------- /2018/Hack.lu CTF 2018/rev/BabyReverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/Hack.lu CTF 2018/rev/BabyReverse.py -------------------------------------------------------------------------------- /2018/N1CTF/Crypto/baby_N1ES/N1ES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/N1CTF/Crypto/baby_N1ES/N1ES.py -------------------------------------------------------------------------------- /2018/N1CTF/Crypto/baby_N1ES/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/N1CTF/Crypto/baby_N1ES/challenge.py -------------------------------------------------------------------------------- /2018/N1CTF/Crypto/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/N1CTF/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/RCTF 2018/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/RCTF 2018/rev/babyre/sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/RCTF 2018/rev/babyre/sp.py -------------------------------------------------------------------------------- /2018/RCTF 2018/rev/babyre/sp.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/RCTF 2018/rev/babyre/sp.rr2 -------------------------------------------------------------------------------- /2018/RCTF 2018/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/Securinets CTF Quals 2018/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/Securinets CTF Quals 2018/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2018/UIUCTF_2018/triptych.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2018/UIUCTF_2018/triptych.py -------------------------------------------------------------------------------- /2018/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/ENCRYPT CTF/crypto/RSA_Baby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/ENCRYPT CTF/crypto/RSA_Baby.py -------------------------------------------------------------------------------- /2019/ENCRYPT CTF/crypto/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/ENCRYPT CTF/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/dkdos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/KipodAfterFree CTF/rev/dkdos/README.md -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/dkdos/dkdos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/KipodAfterFree CTF/rev/dkdos/dkdos.exe -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/dkdos/dkdos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/KipodAfterFree CTF/rev/dkdos/dkdos.py -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/dkdos/fun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/KipodAfterFree CTF/rev/dkdos/fun.png -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/dkdos/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/KipodAfterFree CTF/rev/dkdos/password.png -------------------------------------------------------------------------------- /2019/KipodAfterFree CTF/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/NewbieCTF/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/NewbieCTF/pwn/dRop_the_beat/drop_the_beat_easy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/pwn/dRop_the_beat/drop_the_beat_easy -------------------------------------------------------------------------------- /2019/NewbieCTF/pwn/dRop_the_beat/drop_the_beat_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/pwn/dRop_the_beat/drop_the_beat_easy.py -------------------------------------------------------------------------------- /2019/NewbieCTF/pwn/dRop_the_beat/leak_to_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/pwn/dRop_the_beat/leak_to_address.py -------------------------------------------------------------------------------- /2019/NewbieCTF/pwn/dRop_the_beat/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/pwn/dRop_the_beat/libc.so.6 -------------------------------------------------------------------------------- /2019/NewbieCTF/pwn/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/NewbieCTF/rev/babyrev/babyrev.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/rev/babyrev/babyrev.exe -------------------------------------------------------------------------------- /2019/NewbieCTF/rev/babyrev/babyrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/NewbieCTF/rev/babyrev/babyrev.py -------------------------------------------------------------------------------- /2019/NewbieCTF/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/Securinets/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/Securinets/pwn/Welcome.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Securinets/pwn/Welcome.PNG -------------------------------------------------------------------------------- /2019/Securinets/rev/Matrix_of_Hell!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Securinets/rev/Matrix_of_Hell!.py -------------------------------------------------------------------------------- /2019/Securinets/rev/RBOOM!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Securinets/rev/RBOOM!.py -------------------------------------------------------------------------------- /2019/Sunshine/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/Sunshine/rev/WrestleOfMania/WrestleOfMania: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Sunshine/rev/WrestleOfMania/WrestleOfMania -------------------------------------------------------------------------------- /2019/Sunshine/rev/WrestleOfMania/WrestleOfMania.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Sunshine/rev/WrestleOfMania/WrestleOfMania.py -------------------------------------------------------------------------------- /2019/Sunshine/rev/WrestleOfMania/WrestleOfMania.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/Sunshine/rev/WrestleOfMania/WrestleOfMania.rr2 -------------------------------------------------------------------------------- /2019/Sunshine/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TAMUctf/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TAMUctf/rev/Cr4ckZ33C0d3/prodkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TAMUctf/rev/Cr4ckZ33C0d3/prodkey -------------------------------------------------------------------------------- /2019/TAMUctf/rev/Cr4ckZ33C0d3/prodkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TAMUctf/rev/Cr4ckZ33C0d3/prodkey.py -------------------------------------------------------------------------------- /2019/TAMUctf/rev/Obfuscaxor/obfuscaxor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TAMUctf/rev/Obfuscaxor/obfuscaxor -------------------------------------------------------------------------------- /2019/TAMUctf/rev/Obfuscaxor/obfuscaxor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TAMUctf/rev/Obfuscaxor/obfuscaxor.py -------------------------------------------------------------------------------- /2019/TAMUctf/rev/Obfuscaxor/obfuscaxor.rr2: -------------------------------------------------------------------------------- 1 | #!/usr/bin/rarun2 2 | program=./obfuscaxor 3 | stdin="p3Asujmn9CEeCB3A" 4 | stdout= 5 | -------------------------------------------------------------------------------- /2019/TAMUctf/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TUCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TUCTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TUCTF/pwn/shellme32/shellme32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/shellme32/shellme32 -------------------------------------------------------------------------------- /2019/TUCTF/pwn/shellme32/shellme32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/shellme32/shellme32.py -------------------------------------------------------------------------------- /2019/TUCTF/pwn/shellme64/shellme64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/shellme64/shellme64 -------------------------------------------------------------------------------- /2019/TUCTF/pwn/shellme64/shellme64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/shellme64/shellme64.py -------------------------------------------------------------------------------- /2019/TUCTF/pwn/thefirst/thefirst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/thefirst/thefirst -------------------------------------------------------------------------------- /2019/TUCTF/pwn/thefirst/thefirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/pwn/thefirst/thefirst.py -------------------------------------------------------------------------------- /2019/TUCTF/rev/core/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![tekst alternatywny](./core.PNG) 3 | -------------------------------------------------------------------------------- /2019/TUCTF/rev/core/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/rev/core/core -------------------------------------------------------------------------------- /2019/TUCTF/rev/core/core.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/rev/core/core.PNG -------------------------------------------------------------------------------- /2019/TUCTF/rev/core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/rev/core/core.py -------------------------------------------------------------------------------- /2019/TUCTF/rev/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2019/TUCTF/rev/run/run.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/rev/run/run.o -------------------------------------------------------------------------------- /2019/TUCTF/rev/run/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2019/TUCTF/rev/run/run.py -------------------------------------------------------------------------------- /2019/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/#kksctf open 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/#kksctf open 2020/rev/Yet Another Crypto Task/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/#kksctf open 2020/rev/Yet Another Crypto Task/task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/#kksctf open 2020/rev/Yet Another Crypto Task/task -------------------------------------------------------------------------------- /2020/Aero CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/1000 and 1 night/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/1000 and 1 night/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Aero CTF 2020/rev/1000 and 1 night/file.txt -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/1000 and 1 night/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Aero CTF 2020/rev/1000 and 1 night/files.py -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/1000 and 1 night/files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Aero CTF 2020/rev/1000 and 1 night/files.zip -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/1000 and 1 night/files_angr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Aero CTF 2020/rev/1000 and 1 night/files_angr.py -------------------------------------------------------------------------------- /2020/Aero CTF 2020/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Affinity CTF Lite (Junior_Beginner)/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/rev/Lookups/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/rev/Lookups/fun.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/BSides Algiers 2021 Quals/rev/Lookups/fun.nasm -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/rev/Lookups/lookups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/BSides Algiers 2021 Quals/rev/Lookups/lookups -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/rev/Lookups/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/BSides Algiers 2021 Quals/rev/Lookups/solver.c -------------------------------------------------------------------------------- /2020/BSides Algiers 2021 Quals/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/pwn/Binary Exploitation is Ez/ez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/COMPFEST CTF 2020/pwn/Binary Exploitation is Ez/ez.py -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/CreeptiCity/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/CreeptiCity/creepticity.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/COMPFEST CTF 2020/rev/CreeptiCity/creepticity.zip -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor.c -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor.py -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/COMPFEST CTF 2020/rev/CreeptiCity/encryptor_path -------------------------------------------------------------------------------- /2020/COMPFEST CTF 2020/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/pwn/rop/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/pwn/rop/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/pwn/rop/libc-2.27.so -------------------------------------------------------------------------------- /2020/CSAW/pwn/rop/rop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/pwn/rop/rop -------------------------------------------------------------------------------- /2020/CSAW/pwn/rop/rop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/pwn/rop/rop.py -------------------------------------------------------------------------------- /2020/CSAW/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/rev/not_malware/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/CSAW/rev/not_malware/not_malware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/rev/not_malware/not_malware -------------------------------------------------------------------------------- /2020/CSAW/rev/not_malware/not_malware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/rev/not_malware/not_malware.py -------------------------------------------------------------------------------- /2020/CSAW/rev/not_malware/not_malware_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/rev/not_malware/not_malware_path -------------------------------------------------------------------------------- /2020/CSAW/rev/not_malware/not_malware_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/CSAW/rev/not_malware/not_malware_v1.py -------------------------------------------------------------------------------- /2020/DawgCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DawgCTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DawgCTF/rev/missyelliott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DawgCTF/rev/missyelliott -------------------------------------------------------------------------------- /2020/DawgCTF/rev/missyelliott.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DawgCTF/rev/missyelliott.py -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/bazooka/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/bazooka/pwn_bazooka_bazooka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DefCamp CTF 2020/pwn/bazooka/pwn_bazooka_bazooka -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/bazooka/pwn_bazooka_bazooka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DefCamp CTF 2020/pwn/bazooka/pwn_bazooka_bazooka.py -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/darkmagic/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/darkmagic/pwn_darkmagic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DefCamp CTF 2020/pwn/darkmagic/pwn_darkmagic -------------------------------------------------------------------------------- /2020/DefCamp CTF 2020/pwn/darkmagic/pwn_darkmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/DefCamp CTF 2020/pwn/darkmagic/pwn_darkmagic.py -------------------------------------------------------------------------------- /2020/Fword_CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/pwn/welcome_pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/pwn/welcome_pwn/libc6_2.30-0ubuntu2.1_i386.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/pwn/welcome_pwn/libc6_2.30-0ubuntu2.1_i386.so -------------------------------------------------------------------------------- /2020/Fword_CTF/pwn/welcome_pwn/molotov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/pwn/welcome_pwn/molotov -------------------------------------------------------------------------------- /2020/Fword_CTF/pwn/welcome_pwn/molotov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/pwn/welcome_pwn/molotov.py -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/Auto/Auto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/rev/Auto/Auto.zip -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/Auto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/Auto/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/rev/Auto/solver.py -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/welcome/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/welcome/welcome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/rev/welcome/welcome -------------------------------------------------------------------------------- /2020/Fword_CTF/rev/welcome/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Fword_CTF/rev/welcome/welcome.py -------------------------------------------------------------------------------- /2020/Google_2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Google_2020/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Google_2020/rev/beginner/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Google_2020/rev/beginner/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Google_2020/rev/beginner/a.out -------------------------------------------------------------------------------- /2020/Google_2020/rev/beginner/solver.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Google_2020/rev/beginner/solver.bin -------------------------------------------------------------------------------- /2020/Google_2020/rev/beginner/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Google_2020/rev/beginner/solver.c -------------------------------------------------------------------------------- /2020/Google_2020/rev/beginner/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Google_2020/rev/beginner/solver.py -------------------------------------------------------------------------------- /2020/HSCTF_7/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/crypto/Randomization_1/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/crypto/Randomization_1/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/crypto/Randomization_1/rand.py -------------------------------------------------------------------------------- /2020/HSCTF_7/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/pwn/pwnagotchi/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/pwn/pwnagotchi/pwnagotchi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/pwn/pwnagotchi/pwnagotchi -------------------------------------------------------------------------------- /2020/HSCTF_7/pwn/pwnagotchi/pwnagotchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/pwn/pwnagotchi/pwnagotchi.py -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/AP Lab: English Language/English.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/rev/AP Lab: English Language/English.py -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/AP Lab: English Language/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/dis/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/dis/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/rev/dis/dis.py -------------------------------------------------------------------------------- /2020/HSCTF_7/rev/dis/disas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/HSCTF_7/rev/dis/disas -------------------------------------------------------------------------------- /2020/JISCTF 2020 Qualifications/Crypto/N0T-B4By.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/JISCTF 2020 Qualifications/Crypto/N0T-B4By.py -------------------------------------------------------------------------------- /2020/JISCTF 2020 Qualifications/Crypto/N0T-B4By.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/JISCTF 2020 Qualifications/Crypto/N0T-B4By.zip -------------------------------------------------------------------------------- /2020/JISCTF 2020 Qualifications/Crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/JISCTF 2020 Qualifications/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/General Skills/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/General Skills/Zip Madness/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/General Skills/Zip Madness/unzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/General Skills/Zip Madness/unzip.py -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/Format/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/Format/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/pwn/Format/format -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/Format/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/pwn/Format/format.c -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/Format/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/pwn/Format/format.py -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/dROPit/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/dROPit/dropit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/pwn/dROPit/dropit -------------------------------------------------------------------------------- /2020/Newark Academy CTF 2020/pwn/dROPit/dropit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/Newark Academy CTF 2020/pwn/dROPit/dropit.py -------------------------------------------------------------------------------- /2020/RACTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/RACTF/pwn/FIAS/fias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/FIAS/fias -------------------------------------------------------------------------------- /2020/RACTF/pwn/FIAS/fias_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/FIAS/fias_v1.py -------------------------------------------------------------------------------- /2020/RACTF/pwn/FIAS/fias_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/FIAS/fias_v2.py -------------------------------------------------------------------------------- /2020/RACTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/RACTF/pwn/fiap/fiap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/fiap/fiap -------------------------------------------------------------------------------- /2020/RACTF/pwn/fiap/fiap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/fiap/fiap.py -------------------------------------------------------------------------------- /2020/RACTF/pwn/nra/nra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/nra/nra -------------------------------------------------------------------------------- /2020/RACTF/pwn/nra/nra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/pwn/nra/nra.py -------------------------------------------------------------------------------- /2020/RACTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/RACTF/rev/Snakes and Ladders/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/RACTF/rev/Snakes and Ladders/main.py -------------------------------------------------------------------------------- /2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/UMDCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/UMDCTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/UMDCTF/pwn/baby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/UMDCTF/pwn/baby -------------------------------------------------------------------------------- /2020/UMDCTF/pwn/baby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/UMDCTF/pwn/baby.py -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/pwn/Looping/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/pwn/Looping/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/VULNCON CTF 2020/pwn/Looping/libc.so.6 -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/pwn/Looping/looping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/VULNCON CTF 2020/pwn/Looping/looping -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/pwn/Looping/looping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/VULNCON CTF 2020/pwn/Looping/looping.py -------------------------------------------------------------------------------- /2020/VULNCON CTF 2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/programming/Biggest Lowest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/X-MAS CTF 2020/programming/Biggest Lowest.py -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/programming/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/rev/thou shall pass/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/rev/thou shall pass/thou_shall_pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/X-MAS CTF 2020/rev/thou shall pass/thou_shall_pass -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/rev/thou shall pass/thou_shall_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/X-MAS CTF 2020/rev/thou shall pass/thou_shall_pass.py -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/shell/Complaint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/X-MAS CTF 2020/shell/Complaint.PNG -------------------------------------------------------------------------------- /2020/X-MAS CTF 2020/shell/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![tekst alternatywny](./Complaint.PNG) 3 | -------------------------------------------------------------------------------- /2020/castorsCTF20/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/babybof1 pt2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/castorsCTF20/pwn/babybof1 pt2/README.md -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/babybof1 pt2/babybof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/castorsCTF20/pwn/babybof1 pt2/babybof -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/babybof1 pt2/babybof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/castorsCTF20/pwn/babybof1 pt2/babybof.py -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/babybof1 pt2/leak_gets.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/castorsCTF20/pwn/babybof1 pt2/leak_gets.PNG -------------------------------------------------------------------------------- /2020/castorsCTF20/pwn/babybof1 pt2/libc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/castorsCTF20/pwn/babybof1 pt2/libc.PNG -------------------------------------------------------------------------------- /2020/csictf2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/csictf2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/csictf2020/pwn/hello/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/pwn/hello/hello -------------------------------------------------------------------------------- /2020/csictf2020/pwn/hello/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/pwn/hello/hello.py -------------------------------------------------------------------------------- /2020/csictf2020/pwn/hello/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/pwn/hello/libc.so.6 -------------------------------------------------------------------------------- /2020/csictf2020/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/csictf2020/rev/pydis2ctf/C1cipher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/rev/pydis2ctf/C1cipher.txt -------------------------------------------------------------------------------- /2020/csictf2020/rev/pydis2ctf/C2cipher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/rev/pydis2ctf/C2cipher.txt -------------------------------------------------------------------------------- /2020/csictf2020/rev/pydis2ctf/encodedflag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/rev/pydis2ctf/encodedflag.txt -------------------------------------------------------------------------------- /2020/csictf2020/rev/pydis2ctf/pydis2ctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/csictf2020/rev/pydis2ctf/pydis2ctf.py -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/pwn/the-library/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/redpwnCTF 2020/pwn/the-library/libc.so.6 -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/pwn/the-library/the-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/redpwnCTF 2020/pwn/the-library/the-library -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/pwn/the-library/the-library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/redpwnCTF 2020/pwn/the-library/the-library.c -------------------------------------------------------------------------------- /2020/redpwnCTF 2020/pwn/the-library/the-library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/redpwnCTF 2020/pwn/the-library/the-library.py -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Canary/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Canary/canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Canary/canary -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Canary/canary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Canary/canary.py -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Wacko Images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Wacko Images/README.md -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Wacko Images/enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Wacko Images/enc.png -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Wacko Images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Wacko Images/flag.png -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Wacko Images/image-decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Wacko Images/image-decode.py -------------------------------------------------------------------------------- /2020/ångstromCTF 2020/Wacko Images/image-encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2020/ångstromCTF 2020/Wacko Images/image-encryption.py -------------------------------------------------------------------------------- /2021/0x41414141/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/0x41414141/misc/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/0x41414141/misc/file reader/Przechwytywanie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/0x41414141/misc/file reader/Przechwytywanie.PNG -------------------------------------------------------------------------------- /2021/0x41414141/misc/file reader/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![tekst alternatywny](./Przechwytywanie.PNG) 3 | -------------------------------------------------------------------------------- /2021/0x41414141/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/0x41414141/pwn/Return Of The ROPs/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/0x41414141/pwn/Return Of The ROPs/Return Of The ROPs.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/0x41414141/pwn/Return Of The ROPs/Return Of The ROPs.7z -------------------------------------------------------------------------------- /2021/0x41414141/pwn/Return Of The ROPs/ret-of-the-rops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/0x41414141/pwn/Return Of The ROPs/ret-of-the-rops.py -------------------------------------------------------------------------------- /2021/0x41414141/pwn/moving-signals/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/0x41414141/pwn/moving-signals/moving-signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/0x41414141/pwn/moving-signals/moving-signals.py -------------------------------------------------------------------------------- /2021/0x41414141/pwn/moving-signals/moving_signals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/0x41414141/pwn/moving-signals/moving_signals -------------------------------------------------------------------------------- /2021/ASIS CTF Finals 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ASIS CTF Finals 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ASIS CTF Finals 2021/rev/crina/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Finals 2021/rev/crina/README.md -------------------------------------------------------------------------------- /2021/ASIS CTF Finals 2021/rev/crina/crina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Finals 2021/rev/crina/crina.py -------------------------------------------------------------------------------- /2021/ASIS CTF Finals 2021/rev/crina/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Finals 2021/rev/crina/test.png -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/rev/Beans talk/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/rev/Beans talk/beanstalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Quals 2021/rev/Beans talk/beanstalk -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/rev/Beans talk/coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Quals 2021/rev/Beans talk/coder.c -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/rev/Beans talk/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ASIS CTF Quals 2021/rev/Beans talk/solver.py -------------------------------------------------------------------------------- /2021/ASIS CTF Quals 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BSidesSF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Pwnzoo/Pwnzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Pwnzoo/Pwnzoo.py -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Pwnzoo/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Pwnzoo/pwnzoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Pwnzoo/pwnzoo -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Runme3/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Runme3/Runme3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Runme3/Runme3 -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Runme3/Runme3.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Runme3/Runme3.nasm -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Runme3/Runme3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Runme3/Runme3.py -------------------------------------------------------------------------------- /2021/BSidesSF/pwn/Runme3/runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BSidesSF/pwn/Runme3/runme -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/Tiny Tim/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/Tiny Tim/tiny-tim.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BlueHens CTF 2021/pwn/Tiny Tim/tiny-tim.out -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/Tiny Tim/tiny_tim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BlueHens CTF 2021/pwn/Tiny Tim/tiny_tim.py -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/beef-of-finitude/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/beef-of-finitude/bof.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BlueHens CTF 2021/pwn/beef-of-finitude/bof.out -------------------------------------------------------------------------------- /2021/BlueHens CTF 2021/pwn/beef-of-finitude/bof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/BlueHens CTF 2021/pwn/beef-of-finitude/bof.py -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/alogus/Dillan_Duck.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/for/alogus/Dillan_Duck.zip -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/alogus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/for/alogus/README.md -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/alogus/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/for/alogus/a.png -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/alogus/find_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/for/alogus/find_password.py -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/for/alogus/keyloger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/for/alogus/keyloger.py -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Magical Mystery Club/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Magical Mystery Club/mystery_club: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/rev/Magical Mystery Club/mystery_club -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Magical Mystery Club/mystery_club.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/rev/Magical Mystery Club/mystery_club.py -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Pave The Way/README.md: -------------------------------------------------------------------------------- 1 | ![](./chall.PNG) 2 | -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Pave The Way/chall.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/rev/Pave The Way/chall.PNG -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Pave The Way/chall.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/rev/Pave The Way/chall.jar -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/Pave The Way/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/COMPFEST CTF 2021/rev/Pave The Way/chall.py -------------------------------------------------------------------------------- /2021/COMPFEST CTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/bamboozled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/bamboozled/README.md -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/bamboozled/bamboozled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/bamboozled/bamboozled.py -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/bamboozled/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/bamboozled/solver.py -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/upgraded/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/upgraded/1.png -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/upgraded/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/upgraded/2.png -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/upgraded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/upgraded/README.md -------------------------------------------------------------------------------- /2021/Cyber Santa is Coming to Town/rev/upgraded/rev_upgraded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Cyber Santa is Coming to Town/rev/upgraded/rev_upgraded.c -------------------------------------------------------------------------------- /2021/DCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/pwn/formats_last_theorem/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/pwn/formats_last_theorem/formats_last_theorem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/pwn/formats_last_theorem/formats_last_theorem -------------------------------------------------------------------------------- /2021/DCTF/pwn/formats_last_theorem/formats_last_theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/pwn/formats_last_theorem/formats_last_theorem.py -------------------------------------------------------------------------------- /2021/DCTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/rev/hansel_und_gretel/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/rev/hansel_und_gretel/hansel_und_gretel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hansel_und_gretel/hansel_und_gretel -------------------------------------------------------------------------------- /2021/DCTF/rev/hansel_und_gretel/hansel_und_gretel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hansel_und_gretel/hansel_und_gretel.py -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/decode_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hercules/decode_flag.py -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/get_encode_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hercules/get_encode_flag.py -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/get_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hercules/get_seed.c -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/hercules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hercules/hercules -------------------------------------------------------------------------------- /2021/DCTF/rev/hercules/plik.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DCTF/rev/hercules/plik.txt -------------------------------------------------------------------------------- /2021/DEADFACE CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DEADFACE CTF/rev/Cereal Killer 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DEADFACE CTF/rev/Cereal Killer 2/README.md -------------------------------------------------------------------------------- /2021/DEADFACE CTF/rev/Cereal Killer 2/re02.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DEADFACE CTF/rev/Cereal Killer 2/re02.exe -------------------------------------------------------------------------------- /2021/DEADFACE CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/misc/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/misc/bad-patterns/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/misc/bad-patterns/encode_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DamCTF 2021/misc/bad-patterns/encode_decode.py -------------------------------------------------------------------------------- /2021/DamCTF 2021/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/pwn/cookie-monster/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DamCTF 2021/pwn/cookie-monster/cookie-monster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DamCTF 2021/pwn/cookie-monster/cookie-monster -------------------------------------------------------------------------------- /2021/DamCTF 2021/pwn/cookie-monster/cookie-monster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DamCTF 2021/pwn/cookie-monster/cookie-monster.py -------------------------------------------------------------------------------- /2021/Damncon 2021/Fool/Lets_see_yours_skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Damncon 2021/Fool/Lets_see_yours_skills/README.md -------------------------------------------------------------------------------- /2021/Damncon 2021/Fool/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Damncon 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DiceCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DiceCTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DiceCTF/pwn/babyrop/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/DiceCTF/pwn/babyrop/babyrop.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DiceCTF/pwn/babyrop/babyrop.7z -------------------------------------------------------------------------------- /2021/DiceCTF/pwn/babyrop/babyrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/DiceCTF/pwn/babyrop/babyrop.py -------------------------------------------------------------------------------- /2021/Digital Overdose 2021 Autumn CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Digital Overdose 2021 Autumn CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Digital Overdose 2021 Autumn CTF/rev/time/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Digital Overdose 2021 Autumn CTF/rev/time/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Digital Overdose 2021 Autumn CTF/rev/time/time -------------------------------------------------------------------------------- /2021/Digital Overdose 2021 Autumn CTF/rev/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Digital Overdose 2021 Autumn CTF/rev/time/time.c -------------------------------------------------------------------------------- /2021/Dragon CTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Dragon CTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Dragon CTF 2021/rev/Run of the Mill/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Dragon CTF 2021/rev/Run of the Mill/runofthemill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Dragon CTF 2021/rev/Run of the Mill/runofthemill -------------------------------------------------------------------------------- /2021/Dragon CTF 2021/rev/Run of the Mill/runofthemill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Dragon CTF 2021/rev/Run of the Mill/runofthemill.py -------------------------------------------------------------------------------- /2021/Foobar_CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/Oldskool/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/Oldskool/chall.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/Oldskool/chall.7z -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/Oldskool/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/Oldskool/chall.py -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/rOw Row roW/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/rOw Row roW/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/rOw Row roW/chall -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/rOw Row roW/chall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/rOw Row roW/chall.asm -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/rOw Row roW/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/rOw Row roW/chall.py -------------------------------------------------------------------------------- /2021/Foobar_CTF/pwn/rOw Row roW/chall.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/pwn/rOw Row roW/chall.raw -------------------------------------------------------------------------------- /2021/Foobar_CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/rev/childrev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/Foobar_CTF/rev/childrev/childrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/rev/childrev/childrev -------------------------------------------------------------------------------- /2021/Foobar_CTF/rev/childrev/childrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/Foobar_CTF/rev/childrev/childrev.py -------------------------------------------------------------------------------- /2021/GrabCON CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Can you?/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Can you?/cancancan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/GrabCON CTF/pwn/Can you?/cancancan -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Can you?/cancancan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/GrabCON CTF/pwn/Can you?/cancancan.py -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Pwn CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Pwn CTF/pwn2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/GrabCON CTF/pwn/Pwn CTF/pwn2 -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/Pwn CTF/pwn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/GrabCON CTF/pwn/Pwn CTF/pwn2.py -------------------------------------------------------------------------------- /2021/GrabCON CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/algo/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/algo/not-really-math.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/algo/not-really-math.pdf -------------------------------------------------------------------------------- /2021/HSCTF 8/algo/not-really-math_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/algo/not-really-math_v2.py -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/Multidimensional/Multidimensional.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/rev/Multidimensional/Multidimensional.java -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/Multidimensional/Multidimensional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/rev/Multidimensional/Multidimensional.py -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/Multidimensional/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/WarmupRev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/WarmupRev/WarmupRev.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/rev/WarmupRev/WarmupRev.java -------------------------------------------------------------------------------- /2021/HSCTF 8/rev/WarmupRev/WarmupRev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/HSCTF 8/rev/WarmupRev/WarmupRev.py -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/pwn/string_editor_1/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/pwn/string_editor_1/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/pwn/string_editor_1/libc.so.6 -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/pwn/string_editor_1/string_editor_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/pwn/string_editor_1/string_editor_1 -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/pwn/string_editor_1/string_editor_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/pwn/string_editor_1/string_editor_1.py -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/rev/jumprope/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/rev/jumprope/gen_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/rev/jumprope/gen_val.c -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/rev/jumprope/jumprope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/rev/jumprope/jumprope -------------------------------------------------------------------------------- /2021/ImaginaryCTF 2021/rev/jumprope/jumprope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/ImaginaryCTF 2021/rev/jumprope/jumprope.py -------------------------------------------------------------------------------- /2021/LIT CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/editor_pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/editor_pwn/editor_pwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/editor_pwn/editor_pwn.zip -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/editor_pwn/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/editor_pwn/solver.py -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/gets_pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/gets_pwn/gets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/gets_pwn/gets.py -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/gets_pwn/gets_pwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/gets_pwn/gets_pwn.zip -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/madlibs_pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/madlibs_pwn/madlibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/madlibs_pwn/madlibs.py -------------------------------------------------------------------------------- /2021/LIT CTF/pwn/madlibs_pwn/madlibs_pwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/pwn/madlibs_pwn/madlibs_pwn.zip -------------------------------------------------------------------------------- /2021/LIT CTF/rev/NeverGonna LetYouDown/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/rev/NeverGonna LetYouDown/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/rev/NeverGonna LetYouDown/solver.py -------------------------------------------------------------------------------- /2021/LIT CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/rev/shuffle1/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/LIT CTF/rev/shuffle1/shuffle1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/rev/shuffle1/shuffle1.zip -------------------------------------------------------------------------------- /2021/LIT CTF/rev/shuffle1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/LIT CTF/rev/shuffle1/solve.py -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/README.md -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a1.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a2.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a3.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a4.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a5.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a6.PNG -------------------------------------------------------------------------------- /2021/NahamCon CTF 2021/Zenith/a7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/NahamCon CTF 2021/Zenith/a7.PNG -------------------------------------------------------------------------------- /2021/PBjar CTF '21/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/FmtStr/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/FmtStr/fmtstr.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/PBjar CTF '21/pwn/FmtStr/fmtstr.7z -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/FmtStr/fmtstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/PBjar CTF '21/pwn/FmtStr/fmtstr.py -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/ret2libc/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/ret2libc/ret2libc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/PBjar CTF '21/pwn/ret2libc/ret2libc.py -------------------------------------------------------------------------------- /2021/PBjar CTF '21/pwn/ret2libc/ret2libc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/PBjar CTF '21/pwn/ret2libc/ret2libc.zip -------------------------------------------------------------------------------- /2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/rev/Bites/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/rev/Bites/dc9_bites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RTLxHA CTF 21/rev/Bites/dc9_bites.txt -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/rev/Bites/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RTLxHA CTF 21/rev/Bites/flag.txt -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/rev/Bites/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RTLxHA CTF 21/rev/Bites/solve.py -------------------------------------------------------------------------------- /2021/RTLxHA CTF 21/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/crypto/minigen/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/crypto/minigen/minigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/crypto/minigen/minigen.py -------------------------------------------------------------------------------- /2021/RaRCTF 2021/crypto/minigen/minigen_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/crypto/minigen/minigen_solve.py -------------------------------------------------------------------------------- /2021/RaRCTF 2021/crypto/minigen/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/crypto/minigen/output.txt -------------------------------------------------------------------------------- /2021/RaRCTF 2021/pwn/Not That Simple/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/pwn/Not That Simple/notsimple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/pwn/Not That Simple/notsimple -------------------------------------------------------------------------------- /2021/RaRCTF 2021/pwn/Not That Simple/notsimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/pwn/Not That Simple/notsimple.py -------------------------------------------------------------------------------- /2021/RaRCTF 2021/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Infinite Free Trial/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Infinite Free Trial/ift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/Infinite Free Trial/ift.py -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Infinite Free Trial/ift.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/Infinite Free Trial/ift.zip -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Very TriVial ReVersing/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate.py -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/Very TriVial ReVersing/vtr-alternate.rr2 -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/verybabyrev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/verybabyrev/verybabyrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/verybabyrev/verybabyrev -------------------------------------------------------------------------------- /2021/RaRCTF 2021/rev/verybabyrev/verybabyrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/RaRCTF 2021/rev/verybabyrev/verybabyrev.py -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/crypto/arc-cipher/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/crypto/arc-cipher/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/crypto/arc-cipher/script.py -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/crypto/arc-cipher/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/crypto/arc-cipher/solver.py -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/assembly/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/assembly/asm_code.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/rev/assembly/asm_code.nasm -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/assembly/asm_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/rev/assembly/asm_code.txt -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/assembly/fun.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/rev/assembly/fun.nasm -------------------------------------------------------------------------------- /2021/S.H.E.L.L. CTF/rev/assembly/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/S.H.E.L.L. CTF/rev/assembly/solver.c -------------------------------------------------------------------------------- /2021/SPbCTF's Student CTF 2021 Quals/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/SPbCTF's Student CTF 2021 Quals/rev/Paf/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/SPbCTF's Student CTF 2021 Quals/rev/Paf/paf_5aa0839763.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/SPbCTF's Student CTF 2021 Quals/rev/Paf/paf_5aa0839763.elf -------------------------------------------------------------------------------- /2021/SPbCTF's Student CTF 2021 Quals/rev/Paf/paf_5aa0839763.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/SPbCTF's Student CTF 2021 Quals/rev/Paf/paf_5aa0839763.py -------------------------------------------------------------------------------- /2021/SPbCTF's Student CTF 2021 Quals/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/TMUCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/TMUCTF 2021/rev/Crack House/CrackHouse.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/TMUCTF 2021/rev/Crack House/CrackHouse.7z -------------------------------------------------------------------------------- /2021/TMUCTF 2021/rev/Crack House/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/TMUCTF 2021/rev/Crack House/gen_license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/TMUCTF 2021/rev/Crack House/gen_license.c -------------------------------------------------------------------------------- /2021/TMUCTF 2021/rev/Crack House/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/TMUCTF 2021/rev/Crack House/solver.py -------------------------------------------------------------------------------- /2021/TMUCTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Prime Extravaganza/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Prime Extravaganza/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/Prime Extravaganza/challenge -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Prime Extravaganza/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/Prime Extravaganza/solve.py -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Tedious/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Tedious/Tedious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/Tedious/Tedious.py -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/Tedious/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/Tedious/challenge -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/hvhpgs{synt}/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/hvhpgs{synt}/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/hvhpgs{synt}/chal -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/hvhpgs{synt}/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/hvhpgs{synt}/solve.py -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/signals/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/signals/signals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/signals/signals -------------------------------------------------------------------------------- /2021/UIUCTF 2021/rev/signals/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UIUCTF 2021/rev/signals/signals.py -------------------------------------------------------------------------------- /2021/UMDCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UMDCTF/rev/FeistyCrypt/FeistyCrypt.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UMDCTF/rev/FeistyCrypt/FeistyCrypt.7z -------------------------------------------------------------------------------- /2021/UMDCTF/rev/FeistyCrypt/FeistyCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/UMDCTF/rev/FeistyCrypt/FeistyCrypt.py -------------------------------------------------------------------------------- /2021/UMDCTF/rev/FeistyCrypt/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/UMDCTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/VULNCON CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/VULNCON CTF/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/VULNCON CTF/crypto/mfine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/VULNCON CTF/crypto/mfine/README.md -------------------------------------------------------------------------------- /2021/VULNCON CTF/crypto/mfine/mfine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/VULNCON CTF/crypto/mfine/mfine.py -------------------------------------------------------------------------------- /2021/VULNCON CTF/crypto/mfine/mfine.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/VULNCON CTF/crypto/mfine/mfine.zip -------------------------------------------------------------------------------- /2021/VULNCON CTF/pwn/More than Shellcoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/VULNCON CTF/pwn/More than Shellcoding/README.md -------------------------------------------------------------------------------- /2021/VULNCON CTF/pwn/More than Shellcoding/shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/VULNCON CTF/pwn/More than Shellcoding/shell.asm -------------------------------------------------------------------------------- /2021/VULNCON CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/WPICTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/WPICTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/WPICTF/rev/WannaSigh++/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/WPICTF/rev/WannaSigh++/wannasigh_elf3.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/WPICTF/rev/WannaSigh++/wannasigh_elf3.7z -------------------------------------------------------------------------------- /2021/WPICTF/rev/WannaSigh++/wannasigh_elf3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/WPICTF/rev/WannaSigh++/wannasigh_elf3.py -------------------------------------------------------------------------------- /2021/corCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/corCTF 2021/crypto/4096/4096.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/corCTF 2021/crypto/4096/4096.py -------------------------------------------------------------------------------- /2021/corCTF 2021/crypto/4096/4096.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/corCTF 2021/crypto/4096/4096.tar.xz -------------------------------------------------------------------------------- /2021/corCTF 2021/crypto/4096/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/corCTF 2021/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/darkCON_CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/darkCON_CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/darkCON_CTF/pwn/easy-rop/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/darkCON_CTF/pwn/easy-rop/easy-rop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/darkCON_CTF/pwn/easy-rop/easy-rop -------------------------------------------------------------------------------- /2021/darkCON_CTF/pwn/easy-rop/easy-rop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/darkCON_CTF/pwn/easy-rop/easy-rop.py -------------------------------------------------------------------------------- /2021/idekCTF 2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/idekCTF 2021/crypto/Hashbrowns/Hashbrowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/idekCTF 2021/crypto/Hashbrowns/Hashbrowns.py -------------------------------------------------------------------------------- /2021/idekCTF 2021/crypto/Hashbrowns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/idekCTF 2021/crypto/Hashbrowns/README.md -------------------------------------------------------------------------------- /2021/idekCTF 2021/crypto/Polyphenol/Polyphenol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/idekCTF 2021/crypto/Polyphenol/Polyphenol.py -------------------------------------------------------------------------------- /2021/idekCTF 2021/crypto/Polyphenol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/idekCTF 2021/crypto/Polyphenol/README.md -------------------------------------------------------------------------------- /2021/idekCTF 2021/crypto/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/picoCTF2021/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/picoCTF2021/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/picoCTF2021/pwn/filtered-shellcode/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/picoCTF2021/pwn/filtered-shellcode/filtered_shellcode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/picoCTF2021/pwn/filtered-shellcode/filtered_shellcode.nasm -------------------------------------------------------------------------------- /2021/picoCTF2021/pwn/filtered-shellcode/filtered_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/picoCTF2021/pwn/filtered-shellcode/filtered_shellcode.py -------------------------------------------------------------------------------- /2021/redpwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/redpwn/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/redpwn/rev/dimensionality/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2021/redpwn/rev/dimensionality/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/redpwn/rev/dimensionality/chall -------------------------------------------------------------------------------- /2021/redpwn/rev/dimensionality/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2021/redpwn/rev/dimensionality/chall.py -------------------------------------------------------------------------------- /2022/ADDA CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/ADDA CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/ADDA CTF/rev/elves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/ADDA CTF/rev/elves/README.md -------------------------------------------------------------------------------- /2022/ADDA CTF/rev/elves/elvspeak.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/ADDA CTF/rev/elves/elvspeak.zip -------------------------------------------------------------------------------- /2022/ADDA CTF/rev/elves/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/ADDA CTF/rev/elves/file.txt -------------------------------------------------------------------------------- /2022/ADDA CTF/rev/elves/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/ADDA CTF/rev/elves/solve.py -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/1.png -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/2.png -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/3.png -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/4.png -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/5.png -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/Conti.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/Conti.7z -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/Program.cs -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/README.md -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/Conti/manifesto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/CSAW CTF Qualification Round 2022/rev/Conti/manifesto.pdf -------------------------------------------------------------------------------- /2022/CSAW CTF Qualification Round 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Hunters/Hunters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Hunters/Hunters -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Hunters/Hunters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Hunters/Hunters.py -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Hunters/Hunters_asm.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Hunters/Hunters_asm.nasm -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Hunters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Hunters/README.md -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Warmup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Warmup/README.md -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Warmup/Warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Warmup/Warmup.py -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Warmup/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Warmup/chall -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/pwn/Warmup/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/pwn/Warmup/libc.so.6 -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Baby Rev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Baby Rev/README.md -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Baby Rev/baby_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Baby Rev/baby_rev.py -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Baby Rev/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Baby Rev/chall -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Entropy Solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Entropy Solver/README.md -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Entropy Solver/entropy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Entropy Solver/entropy -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Entropy Solver/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Entropy Solver/entropy.py -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Let's gooo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Let's gooo/README.md -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Let's gooo/encrypteddata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Let's gooo/encrypteddata.txt -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Let's gooo/malgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Let's gooo/malgo -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/Let's gooo/malgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/FooBar CTF 2022/rev/Let's gooo/malgo.go -------------------------------------------------------------------------------- /2022/FooBar CTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/pwn/mind-games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/pwn/mind-games/README.md -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games.py -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games.zip -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/pwn/mind-games/mind-games_1.c -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/1.png -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/README.md -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.c -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.com -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.nasm -------------------------------------------------------------------------------- /2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/GDG Algiers CTF 2022/rev/oldschool/oldschool.py -------------------------------------------------------------------------------- /2022/Global CyberPeace Challenge 3.0 CTF-IT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Global CyberPeace Challenge 3.0 CTF-IT/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/MapleCTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup1/README.md -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup1/warmup1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup1/warmup1 -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup1/warmup1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup1/warmup1.py -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup2/README.md -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup2/warmup2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup2/warmup2 -------------------------------------------------------------------------------- /2022/MapleCTF 2022/pwn/warmup2/warmup2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/MapleCTF 2022/pwn/warmup2/warmup2.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Newark Academy CTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Newark Academy CTF/pwn/Return/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/pwn/Return/README.md -------------------------------------------------------------------------------- /2022/Newark Academy CTF/pwn/Return/ret2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/pwn/Return/ret2 -------------------------------------------------------------------------------- /2022/Newark Academy CTF/pwn/Return/ret2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/pwn/Return/ret2.c -------------------------------------------------------------------------------- /2022/Newark Academy CTF/pwn/Return/ret2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/pwn/Return/ret2.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/elsewhere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/elsewhere -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/elsewhere_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/elsewhere_patch -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/input.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/patch_xor_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/patch_xor_raw.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/plik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/plik -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/print_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/print_xor.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/run.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/write -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/write.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/write.asm -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/xor_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/xor_raw -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/Elsewhere/xor_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Newark Academy CTF/rev/Elsewhere/xor_raw.py -------------------------------------------------------------------------------- /2022/Newark Academy CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/NiteCTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/NiteCTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/NiteCTF 2022/rev/goodware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/NiteCTF 2022/rev/goodware/README.md -------------------------------------------------------------------------------- /2022/NiteCTF 2022/rev/goodware/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/NiteCTF 2022/rev/goodware/flag.enc -------------------------------------------------------------------------------- /2022/NiteCTF 2022/rev/goodware/goodware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/NiteCTF 2022/rev/goodware/goodware -------------------------------------------------------------------------------- /2022/NiteCTF 2022/rev/goodware/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/NiteCTF 2022/rev/goodware/solver.c -------------------------------------------------------------------------------- /2022/PING2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/PING2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/PING2022/rev/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/PING2022/rev/crypto/README.md -------------------------------------------------------------------------------- /2022/PING2022/rev/crypto/dd21bfaa4d6b007213e45062322485fa.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/PING2022/rev/crypto/dd21bfaa4d6b007213e45062322485fa.zip -------------------------------------------------------------------------------- /2022/PING2022/rev/crypto/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/PING2022/rev/crypto/solver.py -------------------------------------------------------------------------------- /2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/TAMUctf 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/TAMUctf 2022/pwn/One and Done/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/pwn/One and Done/README.md -------------------------------------------------------------------------------- /2022/TAMUctf 2022/pwn/One and Done/one-and-done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/pwn/One and Done/one-and-done.py -------------------------------------------------------------------------------- /2022/TAMUctf 2022/pwn/One and Done/one-and-done.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/pwn/One and Done/one-and-done.zip -------------------------------------------------------------------------------- /2022/TAMUctf 2022/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/REdo 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/REdo 3/README.md -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/REdo 3/pizza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/REdo 3/pizza -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/Unboxing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/Unboxing/README.md -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/Unboxing/solver-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/Unboxing/solver-template.py -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/Unboxing/sp.rr2: -------------------------------------------------------------------------------- 1 | #!/usr/bin/rarun2 2 | program=elf4 3 | stdin="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_=" 4 | stdout= 5 | -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/Unboxing/sp1.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/Unboxing/sp1.rr2 -------------------------------------------------------------------------------- /2022/TAMUctf 2022/rev/Unboxing/stdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/TAMUctf 2022/rev/Unboxing/stdio.txt -------------------------------------------------------------------------------- /2022/UTCTF-2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/UTCTF-2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/UTCTF-2022/rev/UTCTF Adventure ROM 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/UTCTF-2022/rev/UTCTF Adventure ROM 4/README.md -------------------------------------------------------------------------------- /2022/UTCTF-2022/rev/UTCTF Adventure ROM 4/game.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/UTCTF-2022/rev/UTCTF Adventure ROM 4/game.gb -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/n33dl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Wolverine Security ConferenceCTF/rev/n33dl3/README.md -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/n33dl3/n33dl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Wolverine Security ConferenceCTF/rev/n33dl3/n33dl3 -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/n33dl3/n33dl3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Wolverine Security ConferenceCTF/rev/n33dl3/n33dl3_1 -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/symmetry/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Flag: 3 | # wsc{s4f3_4nd_s0und} 4 | -------------------------------------------------------------------------------- /2022/Wolverine Security ConferenceCTF/rev/symmetry/symmetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/Wolverine Security ConferenceCTF/rev/symmetry/symmetry -------------------------------------------------------------------------------- /2022/p4ctf 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/README.md -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_N_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_N_.c -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_enc.py -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/hack-n-slash_solve.py -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/p4_ctf.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/p4_ctf.nasm -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/Hack'n'slash-ware/p4_ctf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/p4ctf 2022/rev/Hack'n'slash-ware/p4_ctf.png -------------------------------------------------------------------------------- /2022/p4ctf 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/vsCTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Binary Flood/Binary Flood.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Binary Flood/Binary Flood.zip -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Binary Flood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Binary Flood/README.md -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Binary Flood/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Binary Flood/file.pdf -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Binary Flood/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Binary Flood/file.png -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Binary Flood/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Binary Flood/solve.py -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Functional CPP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Functional CPP/README.md -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Functional CPP/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Functional CPP/challenge -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Functional CPP/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Functional CPP/challenge.py -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Functional CPP/gdb_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Functional CPP/gdb_0.png -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Functional CPP/gdb_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Functional CPP/gdb_1.png -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Tuning Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Tuning Test/README.md -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Tuning Test/zzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Tuning Test/zzz -------------------------------------------------------------------------------- /2022/vsCTF 2022/rev/Tuning Test/zzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/vsCTF 2022/rev/Tuning Test/zzz.py -------------------------------------------------------------------------------- /2022/zer0pts CTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/zer0pts CTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2022/zer0pts CTF 2022/rev/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/zer0pts CTF 2022/rev/service/README.md -------------------------------------------------------------------------------- /2022/zer0pts CTF 2022/rev/service/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2022/zer0pts CTF 2022/rev/service/service.py -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/pwn/Medium pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/pwn/Medium pwn/README.md -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/pwn/Medium pwn/medium_pwn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/pwn/Medium pwn/medium_pwn.zip -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/pwn/Medium pwn/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/pwn/Medium pwn/solver.py -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/1.png -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/2.png -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/3.png -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/README.md -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/ez-pz_xor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/ez-pz_xor.zip -------------------------------------------------------------------------------- /2023/Byte Bandits CTF 2023/rev/ez-pz-xor/ez-pz_xor_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Byte Bandits CTF 2023/rev/ez-pz-xor/ez-pz_xor_injection.py -------------------------------------------------------------------------------- /2023/Codeby Games CTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/Codeby Games CTF/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/Codeby Games CTF/rev/links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Codeby Games CTF/rev/links/README.md -------------------------------------------------------------------------------- /2023/Codeby Games CTF/rev/links/links.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Codeby Games CTF/rev/links/links.exe -------------------------------------------------------------------------------- /2023/Codeby Games CTF/rev/links/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/Codeby Games CTF/rev/links/solve.py -------------------------------------------------------------------------------- /2023/ISITDTU/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/ISITDTU/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/1.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/10.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/11.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/12.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/2.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/3.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/4.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/5.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/6.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/7.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/8.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/9.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/README.md -------------------------------------------------------------------------------- /2023/ISITDTU/rev/dot/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/dot/solver.py -------------------------------------------------------------------------------- /2023/ISITDTU/rev/re01/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/re01/1.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/re01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/re01/README.md -------------------------------------------------------------------------------- /2023/ISITDTU/rev/re01/fun.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/re01/fun.nasm -------------------------------------------------------------------------------- /2023/ISITDTU/rev/re01/re01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/re01/re01 -------------------------------------------------------------------------------- /2023/ISITDTU/rev/re01/re01_solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/re01/re01_solver.c -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/1.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/2.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/3.png -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/README.md -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/sanity_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/sanity_check -------------------------------------------------------------------------------- /2023/ISITDTU/rev/sanity_check/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/ISITDTU/rev/sanity_check/solver.py -------------------------------------------------------------------------------- /2023/IrisCTF 2023/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/IrisCTF 2023/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/IrisCTF 2023/pwn/ret2libm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/pwn/ret2libm/README.md -------------------------------------------------------------------------------- /2023/IrisCTF 2023/pwn/ret2libm/ret2libm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/pwn/ret2libm/ret2libm.zip -------------------------------------------------------------------------------- /2023/IrisCTF 2023/pwn/ret2libm/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/pwn/ret2libm/solver.py -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/README.md -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/alien_math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/alien_math -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/number -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/number.c -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/solver.py -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/solver_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/solver_local.py -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/srand_rand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/srand_rand -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/Alien Math/srand_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/IrisCTF 2023/rev/Alien Math/srand_rand.c -------------------------------------------------------------------------------- /2023/IrisCTF 2023/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/PCTF/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/PCTF/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelf/README.md -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelf/bookshelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelf/bookshelf -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelf/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelf/libc.so.6 -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelf/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelf/solver.py -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelfv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelfv2/README.md -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelfv2/bookshelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelfv2/bookshelf -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelfv2/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelfv2/libc.so.6 -------------------------------------------------------------------------------- /2023/PCTF/pwn/bookshelfv2/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/bookshelfv2/solver.py -------------------------------------------------------------------------------- /2023/PCTF/pwn/printshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/printshop/README.md -------------------------------------------------------------------------------- /2023/PCTF/pwn/printshop/printshop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/printshop/printshop -------------------------------------------------------------------------------- /2023/PCTF/pwn/printshop/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/PCTF/pwn/printshop/solver.py -------------------------------------------------------------------------------- /2023/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/TCP1P/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/1.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/10.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/11.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/2.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/3.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/4.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/5.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/6.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/7.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/8.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/91.png -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/README.md -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/elf-cracker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/elf-cracker -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/flag -------------------------------------------------------------------------------- /2023/TCP1P/rev/ELF Cracker/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/TCP1P/rev/ELF Cracker/solver.py -------------------------------------------------------------------------------- /2023/TCP1P/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/bi0sCTF 2022/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/bi0sCTF 2022/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/bi0sCTF 2022/rev/Rusted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/bi0sCTF 2022/rev/Rusted/README.md -------------------------------------------------------------------------------- /2023/bi0sCTF 2022/rev/Rusted/rusted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/bi0sCTF 2022/rev/Rusted/rusted -------------------------------------------------------------------------------- /2023/bi0sCTF 2022/rev/Rusted/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/bi0sCTF 2022/rev/Rusted/solver.py -------------------------------------------------------------------------------- /2023/uiuctf/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/uiuctf/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2023/uiuctf/rev/vmwhere1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/uiuctf/rev/vmwhere1/README.md -------------------------------------------------------------------------------- /2023/uiuctf/rev/vmwhere1/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/uiuctf/rev/vmwhere1/chal -------------------------------------------------------------------------------- /2023/uiuctf/rev/vmwhere1/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/uiuctf/rev/vmwhere1/program -------------------------------------------------------------------------------- /2023/uiuctf/rev/vmwhere1/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2023/uiuctf/rev/vmwhere1/solver.py -------------------------------------------------------------------------------- /2024/Blue Water CTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/Blue Water CTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/Blue Water CTF 2024/rev/maybe Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/Blue Water CTF 2024/rev/maybe Checker/README.md -------------------------------------------------------------------------------- /2024/Blue Water CTF 2024/rev/maybe Checker/maybe_checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/Blue Water CTF 2024/rev/maybe Checker/maybe_checker -------------------------------------------------------------------------------- /2024/Blue Water CTF 2024/rev/maybe Checker/maybe_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/Blue Water CTF 2024/rev/maybe Checker/maybe_checker.py -------------------------------------------------------------------------------- /2024/CSAW'24/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/CSAW'24/rev/Archeology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CSAW'24/rev/Archeology/README.md -------------------------------------------------------------------------------- /2024/CSAW'24/rev/Archeology/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CSAW'24/rev/Archeology/chal -------------------------------------------------------------------------------- /2024/CSAW'24/rev/Archeology/hieroglyphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CSAW'24/rev/Archeology/hieroglyphs.txt -------------------------------------------------------------------------------- /2024/CSAW'24/rev/Archeology/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CSAW'24/rev/Archeology/message.txt -------------------------------------------------------------------------------- /2024/CSAW'24/rev/Archeology/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CSAW'24/rev/Archeology/solver.py -------------------------------------------------------------------------------- /2024/CSAW'24/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/rev/hashhash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CYBERGON CTF_2024/rev/hashhash/README.md -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/rev/hashhash/fun.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CYBERGON CTF_2024/rev/hashhash/fun.nasm -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/rev/hashhash/hashhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CYBERGON CTF_2024/rev/hashhash/hashhash -------------------------------------------------------------------------------- /2024/CYBERGON CTF_2024/rev/hashhash/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/CYBERGON CTF_2024/rev/hashhash/solver.c -------------------------------------------------------------------------------- /2024/GCC CTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/GCC CTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/GCC CTF 2024/rev/Warp_jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/GCC CTF 2024/rev/Warp_jump/README.md -------------------------------------------------------------------------------- /2024/GCC CTF 2024/rev/Warp_jump/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/GCC CTF 2024/rev/Warp_jump/solver.c -------------------------------------------------------------------------------- /2024/GCC CTF 2024/rev/Warp_jump/warp_jump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/GCC CTF 2024/rev/Warp_jump/warp_jump -------------------------------------------------------------------------------- /2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/Crack Me/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/Crack Me/1.png -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/Crack Me/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/Crack Me/2.png -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/Crack Me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/Crack Me/README.md -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/Crack Me/decode_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/Crack Me/decode_pass.py -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/X64 Extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/X64 Extension/README.md -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/X64 Extension/decode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/X64 Extension/decode.nasm -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/X64 Extension/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/X64 Extension/dist.zip -------------------------------------------------------------------------------- /2024/SekaiCTF 2024/rev/X64 Extension/encode.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/SekaiCTF 2024/rev/X64 Extension/encode.nasm -------------------------------------------------------------------------------- /2024/TetCTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/TetCTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/TetCTF 2024/rev/Warm up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/TetCTF 2024/rev/Warm up/README.md -------------------------------------------------------------------------------- /2024/TetCTF 2024/rev/Warm up/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/TetCTF 2024/rev/Warm up/challenge -------------------------------------------------------------------------------- /2024/TetCTF 2024/rev/Warm up/help_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/TetCTF 2024/rev/Warm up/help_gdb.py -------------------------------------------------------------------------------- /2024/TetCTF 2024/rev/Warm up/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/TetCTF 2024/rev/Warm up/solver.py -------------------------------------------------------------------------------- /2024/UofTCTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/1.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/2.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/3.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/4.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/Bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/Bank.java -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/BankChallenge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/BankChallenge.jar -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/README.md -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/a.java -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/CEO's Lost Password/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/CEO's Lost Password/solver.py -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/1.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/2.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/3.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/4.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/5.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/README.md -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Love Debug/love-letter-for-you: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Love Debug/love-letter-for-you -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Random Maze/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Random Maze/1.png -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Random Maze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Random Maze/README.md -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Random Maze/maze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Random Maze/maze -------------------------------------------------------------------------------- /2024/UofTCTF 2024/rev/Random Maze/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/UofTCTF 2024/rev/Random Maze/solver.py -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/1.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/10.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/11.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/12.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/13.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/14.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/15.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/16.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/2.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/3.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/4.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/5.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/6.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/7.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/8.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/9.png -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/README.md -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/flag-checker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/flag-checker.exe -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/Flag Checker/output.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/World Wide CTF 2024/rev/Flag Checker/output.bin -------------------------------------------------------------------------------- /2024/World Wide CTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/misc/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/misc/bash cat with pipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/misc/bash cat with pipe/README.md -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/misc/wabash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/misc/wabash/README.md -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/pwn/seeing-red/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/pwn/seeing-red/1.png -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/pwn/seeing-red/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/pwn/seeing-red/README.md -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/pwn/seeing-red/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/pwn/seeing-red/chal -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/pwn/seeing-red/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/pwn/seeing-red/solve.py -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/Annnnnnny Second Now/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/Annnnnnny Second Now/README.md -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/Annnnnnny Second Now/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/Annnnnnny Second Now/solve.py -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/js-safe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/js-safe/README.md -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/js-safe/js-safe-dist.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/js-safe/js-safe-dist.tar.gz -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/js-safe/solve_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/js-safe/solve_js.js -------------------------------------------------------------------------------- /2024/b01lers CTF 2024/rev/js-safe/solve_z3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2024/b01lers CTF 2024/rev/js-safe/solve_z3.py -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/pwn/CallingConvention/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/BearcatCTF 2025: World Tour/pwn/CallingConvention/solve.py -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/pwn/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/Hungry Hungry Hippos/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/BearcatCTF 2025: World Tour/rev/Hungry Hungry Hippos/1.png -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/Hungry Hungry Hippos/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/BearcatCTF 2025: World Tour/rev/Hungry Hungry Hippos/2.png -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/crython/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/crython/crython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/BearcatCTF 2025: World Tour/rev/crython/crython.py -------------------------------------------------------------------------------- /2025/BearcatCTF 2025: World Tour/rev/crython/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/BearcatCTF 2025: World Tour/rev/crython/solve.py -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/rev/Translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/Break the Syntax CTF 2025/rev/Translator/README.md -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/rev/Translator/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/Break the Syntax CTF 2025/rev/Translator/solve.py -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/rev/Translator/text: -------------------------------------------------------------------------------- 1 | 幾湂潌蕔䩘桢豝詧䭡䝵敯䡨剱挧䍩硷穏罣㈡䨥贇 2 | -------------------------------------------------------------------------------- /2025/Break the Syntax CTF 2025/rev/Translator/translator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/Break the Syntax CTF 2025/rev/Translator/translator -------------------------------------------------------------------------------- /2025/IrisCTF 2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/IrisCTF 2025/rev/Crispy Kelp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/IrisCTF 2025/rev/Crispy Kelp/README.md -------------------------------------------------------------------------------- /2025/IrisCTF 2025/rev/Crispy Kelp/crispy-kelp.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/IrisCTF 2025/rev/Crispy Kelp/crispy-kelp.tar.gz -------------------------------------------------------------------------------- /2025/IrisCTF 2025/rev/Crispy Kelp/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/IrisCTF 2025/rev/Crispy Kelp/solver.py -------------------------------------------------------------------------------- /2025/IrisCTF 2025/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/L3akCTF 2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/Alpha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/Alpha/README.md -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/Alpha/chal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/Alpha/chal -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/Alpha/code_asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/Alpha/code_asm.txt -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/Alpha/gdb_decode_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/Alpha/gdb_decode_code.py -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/Alpha/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/Alpha/solver.py -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/pacman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/pacman/README.md -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/pacman/pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/pacman/pac -------------------------------------------------------------------------------- /2025/L3akCTF 2025/rev/pacman/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/L3akCTF 2025/rev/pacman/solver.py -------------------------------------------------------------------------------- /2025/LA CTF 2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/LA CTF 2025/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/LA CTF 2025/rev/the-eye/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/LA CTF 2025/rev/the-eye/Dockerfile -------------------------------------------------------------------------------- /2025/LA CTF 2025/rev/the-eye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/LA CTF 2025/rev/the-eye/README.md -------------------------------------------------------------------------------- /2025/LA CTF 2025/rev/the-eye/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/LA CTF 2025/rev/the-eye/solve.py -------------------------------------------------------------------------------- /2025/LA CTF 2025/rev/the-eye/the-eye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/LA CTF 2025/rev/the-eye/the-eye -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/It's Locked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/It's Locked/README.md -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/It's Locked/bclVerifyDec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/It's Locked/bclVerifyDec.sh -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/It's Locked/crack_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/It's Locked/crack_password.sh -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/It's Locked/decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/It's Locked/decode.sh -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/It's Locked/flag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/It's Locked/flag.sh -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/No! Not again!/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/No! Not again!/1.png -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/No! Not again!/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/No! Not again!/README.md -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/No! Not again!/crackme-rust-fun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/No! Not again!/crackme-rust-fun.exe -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/No! Not again!/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdwas/ctf/HEAD/2025/NahamCon CTF 2025/rev/No! Not again!/solver.py -------------------------------------------------------------------------------- /2025/NahamCon CTF 2025/rev/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2025/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CTF 2 | --------------------------------------------------------------------------------