├── 2015 ├── AIVD_CYBERCHALLENGE │ ├── BONUS.md │ ├── README.md │ ├── cert.png │ ├── challenge │ │ ├── bonus.tar.gz │ │ ├── challenge_2015.zip │ │ └── gefelicteerd.pdf │ ├── eq1.png │ ├── eq2.png │ ├── eq3.png │ ├── eq4.png │ ├── gefeli.png │ ├── gefelicteerd-000.jpg │ ├── packet.png │ └── solution │ │ ├── breakme_crack.py │ │ ├── check_crack.py │ │ ├── coffee_exploit.py │ │ ├── gefeli_decrypt.py │ │ └── ripe_crack.py ├── ASISCTF │ ├── README.md │ ├── crypto │ │ └── simplealgorithm │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ ├── enc.txt │ │ │ └── simple_algorithm.py │ │ │ ├── eq1.png │ │ │ ├── eq2.png │ │ │ ├── eq3.png │ │ │ └── solution │ │ │ └── simple_crack.py │ └── reversing │ │ ├── dark │ │ ├── README.md │ │ ├── challenge │ │ │ ├── dark │ │ │ └── flag.enc │ │ └── solution │ │ │ ├── dark_descramble.py │ │ │ └── flag.dec │ │ ├── leach │ │ ├── README.md │ │ ├── challenge │ │ │ └── leach │ │ └── solution │ │ │ └── leach.dif │ │ ├── selfie │ │ ├── README.md │ │ ├── challenge │ │ │ ├── hidden_selfie │ │ │ └── selfie │ │ └── solution │ │ │ └── selfie_descramble.py │ │ └── tera │ │ ├── README.md │ │ ├── challenge │ │ └── tera │ │ └── solution │ │ └── tera_decoder.py ├── ASISCTF_FINALS │ ├── README.md │ ├── crypto │ │ └── bodu │ │ │ ├── README.md │ │ │ └── challenge │ │ │ ├── flag.enc │ │ │ └── pub.key │ └── reverse │ │ ├── asishash │ │ ├── README.md │ │ ├── challenge │ │ │ └── hash.elf │ │ └── solution │ │ │ └── hash_crack.py │ │ ├── fake │ │ ├── README.md │ │ └── challenge │ │ │ └── fake │ │ └── license │ │ ├── README.md │ │ ├── challenge │ │ └── license │ │ └── solution │ │ └── gen_license.py ├── BACKDOORCTF │ ├── README.md │ ├── crypto │ │ ├── rsalot │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ └── RSALOT.tar.gz │ │ │ └── solution │ │ │ │ └── rsalot.py │ │ └── rsanne │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── RSANNE.tar.gz │ │ │ └── solution │ │ │ └── rsanne.py │ ├── misc │ │ ├── lhc │ │ │ ├── README.md │ │ │ └── solution │ │ │ │ └── lhc.py │ │ └── tim │ │ │ └── README.md │ └── pwnable │ │ ├── echo │ │ ├── README.md │ │ ├── challenge │ │ │ └── echo │ │ └── solution │ │ │ └── echosploit.py │ │ ├── forgot │ │ ├── README.md │ │ ├── challenge │ │ │ └── forgot-724a09c084a9df46d8555bf77612e612.tar.gz │ │ └── solution │ │ │ └── forgotsploit.py │ │ └── team │ │ ├── README.md │ │ ├── challenge │ │ └── team │ │ └── solution │ │ └── teamsploit.py ├── BCTF │ ├── README.md │ └── crypto │ │ └── weak_enc │ │ ├── README.md │ │ ├── challenge │ │ └── weak_enc.py │ │ ├── lzw.gif │ │ └── solution │ │ └── weak_enc_crack.py ├── CODEGATE │ ├── README.md │ ├── pwnable │ │ └── systemshock │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── shock │ │ │ └── solution │ │ │ └── systemshock_exploit.sh │ └── web │ │ ├── owltube │ │ ├── README.md │ │ ├── cbc_decryption.png │ │ ├── challenge │ │ │ └── index.py │ │ └── solution │ │ │ └── owltube_exploit.py │ │ └── owlur │ │ └── README.md ├── CONFIDENCE_TEASER │ ├── README.md │ ├── crypto │ │ └── machacking │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── index.php │ │ │ ├── hmac.png │ │ │ ├── lengthextension.jpg │ │ │ └── solution │ │ │ └── machack_crack.py │ └── web │ │ ├── apacheunderwear │ │ └── README.md │ │ └── practicalnumerology │ │ ├── README.md │ │ ├── challenge │ │ └── index.php │ │ └── solution │ │ └── practicalnum_sploit.py ├── CSAWCTF │ ├── README.md │ ├── pwn │ │ └── contacts │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── contacts │ │ │ └── solution │ │ │ └── contacts_exploit.py │ ├── reversing │ │ └── ftp │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── ftp │ │ │ └── solution │ │ │ └── ftp_crack.py │ └── web │ │ ├── lawncaresimulator │ │ ├── README.md │ │ ├── challenge │ │ │ ├── ___HINT___ │ │ │ ├── index.html │ │ │ ├── jobs.html │ │ │ ├── js │ │ │ │ ├── grass.js │ │ │ │ └── md5.js │ │ │ ├── premium.php │ │ │ ├── sign_up.php │ │ │ └── validate_pass.php │ │ ├── lawn.png │ │ └── solution │ │ │ └── timing_attack.py │ │ ├── throwback │ │ └── README.md │ │ └── weebdate │ │ ├── README.md │ │ ├── challenge │ │ ├── server.py │ │ ├── settings.py │ │ └── utils.py │ │ └── solution │ │ ├── final.py │ │ ├── john.txt │ │ ├── otp.py │ │ └── sqli.py ├── DCTF │ └── README.md ├── DEFCONCTF │ ├── README.md │ ├── babysfirst │ │ └── r0pbaby │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── r0pbaby │ │ │ └── solution │ │ │ └── r0pbaby_sploit.py │ ├── coding │ │ └── catwestern │ │ │ ├── README.md │ │ │ └── solution │ │ │ └── catwestern_solution.py │ └── reversing │ │ └── accesscontrol │ │ ├── README.md │ │ ├── challenge │ │ └── client │ │ └── solution │ │ └── accesscontrol_crack.py ├── HITB_TEASER │ ├── README.md │ ├── crypto │ │ └── slowcooker │ │ │ ├── README.md │ │ │ └── challenge │ │ │ └── slowcooker.tar.gz │ ├── forensics │ │ └── pyongyang │ │ │ ├── README.md │ │ │ └── solution │ │ │ └── pyongyang_keysearch.c │ ├── pwnable │ │ └── candypop │ │ │ ├── README.md │ │ │ └── challenge │ │ │ └── candypop │ └── web │ │ ├── pearldiving │ │ └── README.md │ │ └── satcom │ │ ├── README.md │ │ └── challenge │ │ └── frontend.tar.gz ├── HUSTCTF │ └── README.md ├── MMACTF │ ├── README.md │ ├── crypto │ │ └── signerverifier │ │ │ ├── README.md │ │ │ ├── eq1.png │ │ │ ├── eq2.png │ │ │ └── solution │ │ │ └── forge.py │ └── reversing │ │ └── simple_hash │ │ ├── README.md │ │ ├── challenge │ │ └── simple_hash │ │ └── solution │ │ └── simple_hash_crack.py ├── NUITDUHACK │ ├── README.md │ ├── crypto │ │ └── gameoflife │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── GOL.tar.gz │ │ │ └── solution │ │ │ └── gameoflifesolution.py │ └── reverse │ │ ├── clarkkent │ │ ├── README.md │ │ ├── challenge │ │ │ └── clark.tar.gz │ │ └── solution │ │ │ └── clarksolution.c │ │ └── crackmeprime │ │ ├── README.md │ │ ├── challenge │ │ └── prime.tar.gz │ │ └── solution │ │ └── crackmeprimesolution.py ├── PCTF │ ├── README.md │ ├── crypto │ │ ├── curious │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ └── captured │ │ │ └── solution │ │ │ │ └── curious_crack.py │ │ └── strength │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── captured │ │ │ └── solution │ │ │ └── strength_crack.py │ ├── pwnable │ │ └── ebp │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── ebp.elf │ │ │ └── solution │ │ │ └── ebp_sploit.py │ └── reversing │ │ └── clifford │ │ ├── README.md │ │ ├── challenge │ │ └── clifford.elf │ │ └── solution │ │ └── clifford_keygen.py ├── POLICTF │ ├── README.md │ └── reversing │ │ ├── johnthepacker │ │ ├── README.md │ │ ├── challenge │ │ │ └── topack │ │ ├── check1.png │ │ ├── check2.png │ │ ├── poly.png │ │ └── solution │ │ │ ├── john_keygen.py │ │ │ └── john_patch.py │ │ └── reversemeplz │ │ ├── README.md │ │ ├── challenge │ │ └── challenge │ │ ├── relation.png │ │ └── solution │ │ └── reversemeplz_keygen.py ├── README.md ├── TMCTF │ ├── README.md │ ├── analysis_defensive │ │ ├── analysis_defensive200 │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ └── AnalyzeThis.zip │ │ │ └── site.png │ │ └── analysis_defensive300 │ │ │ ├── PI-extracted-file-1-screenshot.bmp │ │ │ ├── README.md │ │ │ └── challenge │ │ │ └── net.zip │ └── crypto │ │ ├── crypto100 │ │ ├── README.md │ │ ├── challenge │ │ │ └── PublicKey.pem │ │ ├── factors.png │ │ └── solution │ │ │ └── crypto100_crack.py │ │ └── crypto200 │ │ ├── Q.png │ │ ├── README.md │ │ ├── cbc_mode.png │ │ ├── challenge │ │ └── Q.zip │ │ └── solution │ │ └── crypto200_crack.py ├── VOLGACTF │ ├── README.md │ ├── crypto │ │ ├── lcg │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ ├── flag.png.bin │ │ │ │ └── lcg.py │ │ │ ├── solution │ │ │ │ ├── flag.png │ │ │ │ └── lcg_crack.py │ │ │ ├── system1.png │ │ │ ├── system2.png │ │ │ ├── system3.png │ │ │ ├── system4.png │ │ │ └── system5.png │ │ └── rsa │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ ├── ciphertext.bin │ │ │ ├── decryptor.py │ │ │ └── key.public │ │ │ └── solution │ │ │ └── rsa_crack.py │ ├── forensics │ │ └── russiandoll │ │ │ ├── README.md │ │ │ ├── recovery1.png │ │ │ ├── recovery2.png │ │ │ ├── recovery3.png │ │ │ └── recovery4.png │ ├── misc │ │ └── mathproblem │ │ │ └── solution │ │ │ └── mathsolve.py │ ├── pwn │ │ └── database │ │ │ ├── README.md │ │ │ └── challenge │ │ │ └── database │ ├── reversing │ │ └── interstellar │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── interstellar │ │ │ ├── eq.png │ │ │ ├── eq2.png │ │ │ ├── eq3.png │ │ │ └── solution │ │ │ └── interstellar_crack.py │ └── web │ │ └── web2 │ │ └── README.md └── WHITEHAT_CONTEST_10 │ ├── README.md │ └── reversing │ └── re200 │ └── README.md ├── 2016 ├── BCTF │ ├── README.md │ ├── misc │ │ └── zerodaystore │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ ├── server.py │ │ │ └── zerodaystore.apk │ │ │ └── solution │ │ │ └── zerodaystore_crack.py │ └── reversing │ │ └── sif │ │ ├── README.md │ │ ├── challenge │ │ ├── flag.png │ │ └── sif │ │ └── solution │ │ ├── plaintext_flag.png │ │ └── sif_crack.py ├── BKPCTF │ ├── README.md │ ├── crypto │ │ ├── desofb │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ ├── ciphertext │ │ │ │ └── des-ofb.py │ │ │ ├── ofb.png │ │ │ └── solution │ │ │ │ ├── ciphertext │ │ │ │ └── desofb_crack.py │ │ └── ltseorg │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ ├── ltseorg.rb │ │ │ └── tlseorg.py │ │ │ └── solution │ │ │ └── ltseorg_crack.py │ └── reversing │ │ └── unholy │ │ ├── README.md │ │ ├── challenge │ │ ├── main.rb │ │ └── unholy.so │ │ └── solution │ │ └── unholy_crack.py ├── CODEGATE │ ├── README.md │ ├── misc │ │ └── jsisnotajail │ │ │ └── README.md │ └── pwnable │ │ └── oldschool │ │ ├── README.md │ │ ├── challenge │ │ ├── ld-2.21.so │ │ ├── libc-2.21.so │ │ └── oldschool │ │ └── solution │ │ └── oldschool_sploit.py ├── DEFCONCTF │ ├── README.md │ ├── babysfirst │ │ ├── baby-re │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ └── baby-re │ │ │ └── solution │ │ │ │ └── babyre_crack.py │ │ └── xkcd │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── xkcd │ │ │ └── solution │ │ │ └── xkcd_sploit.py │ └── reversing │ │ └── step │ │ ├── README.md │ │ ├── challenge │ │ └── step │ │ └── solution │ │ ├── crack_sol.py │ │ └── crack_step.py ├── PCTF │ ├── README.md │ ├── crypto │ │ ├── rabit │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ ├── rabit.py │ │ │ │ └── util.py │ │ │ ├── eq1.png │ │ │ └── solution │ │ │ │ └── rabit_crack.py │ │ └── tonnerre │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── server.py │ │ │ ├── eq1.png │ │ │ ├── eq2.png │ │ │ ├── eq3.png │ │ │ ├── eq4.png │ │ │ └── solution │ │ │ └── tonnerre_crack.py │ └── pwnable │ │ └── butterfly │ │ ├── README.md │ │ ├── challenge │ │ └── butterfly │ │ └── solution │ │ └── butterfly_sploit.py ├── SECUINSIDE │ ├── README.md │ └── trendyweb │ │ ├── README.md │ │ ├── avatar.png │ │ └── index.php ├── SHARIFCTF │ ├── README.md │ └── forensics │ │ └── kick_tort_teen │ │ ├── README.md │ │ ├── challenge │ │ └── data.xls │ │ └── solution │ │ ├── data.csv │ │ ├── fileXYZ.data │ │ ├── macro_warning.png │ │ └── solve.py ├── TUCTF │ ├── README.md │ ├── crypto │ │ ├── hashnbake │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ │ └── hbake.py │ │ │ ├── crc1.png │ │ │ ├── crc2.png │ │ │ └── crc3.png │ │ └── securetransmission │ │ │ ├── README.md │ │ │ └── challenge │ │ │ ├── 40bec2fdb682af3046465a54f7776c8adb26ea4d.pcapng │ │ │ └── client.pyc │ ├── pwn │ │ └── especiallygoodjmps │ │ │ ├── README.md │ │ │ ├── challenge │ │ │ └── 23e4f31a5a8801a554e1066e26eb34745786f4c4 │ │ │ └── solution │ │ │ └── exploit.py │ └── web │ │ ├── DuckPrint │ │ ├── README.md │ │ └── challenge │ │ │ ├── flag.html │ │ │ ├── generate.php.html │ │ │ ├── register.php.html │ │ │ └── validate.php.html │ │ ├── LuckyCharms │ │ ├── README.md │ │ ├── challenge │ │ │ ├── LuckyCharms.html │ │ │ └── LuckyCharms.java │ │ └── solution │ │ │ └── Hax.java │ │ └── PetPaddingInc │ │ ├── README.md │ │ └── solution │ │ └── exploit.py └── VOLGACTF │ ├── README.md │ └── crypto │ └── lazy │ ├── README.md │ ├── challenge │ ├── exit.sig │ ├── key.public │ ├── leave.sig │ └── server.py │ ├── eq1.png │ ├── eq2.png │ ├── eq3.png │ └── solution │ └── lazy_crack.py ├── 2017 └── KASPERSKY │ ├── README.md │ └── fun │ └── old-school │ ├── README.md │ ├── challenge │ └── old_school.bin │ ├── game.png │ ├── screenshot.png │ └── solution │ ├── level-2.png │ ├── level-3.png │ ├── level-4.png │ ├── level-5.png │ ├── level-6.png │ ├── level-7.png │ └── level-8.png ├── .gitignore ├── README.md ├── event_template.md └── write-up_template.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2015/HITB_TEASER/forensics/pyongyang/challenge/HEAVENWEB_SCRAPE.tar.xz 2 | -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/BONUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/BONUS.md -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/README.md -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/cert.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/challenge/bonus.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/challenge/bonus.tar.gz -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/challenge/challenge_2015.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/challenge/challenge_2015.zip -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/challenge/gefelicteerd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/challenge/gefelicteerd.pdf -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/eq1.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/eq2.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/eq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/eq3.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/eq4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/eq4.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/gefeli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/gefeli.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/gefelicteerd-000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/gefelicteerd-000.jpg -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/packet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/packet.png -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/solution/breakme_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/solution/breakme_crack.py -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/solution/check_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/solution/check_crack.py -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/solution/coffee_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/solution/coffee_exploit.py -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/solution/gefeli_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/solution/gefeli_decrypt.py -------------------------------------------------------------------------------- /2015/AIVD_CYBERCHALLENGE/solution/ripe_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/AIVD_CYBERCHALLENGE/solution/ripe_crack.py -------------------------------------------------------------------------------- /2015/ASISCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/challenge/enc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/challenge/enc.txt -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/challenge/simple_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/challenge/simple_algorithm.py -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/eq1.png -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/eq2.png -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/eq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/eq3.png -------------------------------------------------------------------------------- /2015/ASISCTF/crypto/simplealgorithm/solution/simple_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/crypto/simplealgorithm/solution/simple_crack.py -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/dark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/dark/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/dark/challenge/dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/dark/challenge/dark -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/dark/challenge/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/dark/challenge/flag.enc -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/dark/solution/dark_descramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/dark/solution/dark_descramble.py -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/dark/solution/flag.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/dark/solution/flag.dec -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/leach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/leach/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/leach/challenge/leach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/leach/challenge/leach -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/leach/solution/leach.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/leach/solution/leach.dif -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/selfie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/selfie/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/selfie/challenge/hidden_selfie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/selfie/challenge/hidden_selfie -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/selfie/challenge/selfie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/selfie/challenge/selfie -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/selfie/solution/selfie_descramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/selfie/solution/selfie_descramble.py -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/tera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/tera/README.md -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/tera/challenge/tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/tera/challenge/tera -------------------------------------------------------------------------------- /2015/ASISCTF/reversing/tera/solution/tera_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF/reversing/tera/solution/tera_decoder.py -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/README.md -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/crypto/bodu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/crypto/bodu/README.md -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/crypto/bodu/challenge/flag.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/crypto/bodu/challenge/flag.enc -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/crypto/bodu/challenge/pub.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/crypto/bodu/challenge/pub.key -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/asishash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/asishash/README.md -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/asishash/challenge/hash.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/asishash/challenge/hash.elf -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/asishash/solution/hash_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/asishash/solution/hash_crack.py -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/fake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/fake/README.md -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/fake/challenge/fake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/fake/challenge/fake -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/license/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/license/README.md -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/license/challenge/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/license/challenge/license -------------------------------------------------------------------------------- /2015/ASISCTF_FINALS/reverse/license/solution/gen_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/ASISCTF_FINALS/reverse/license/solution/gen_license.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsalot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsalot/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsalot/challenge/RSALOT.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsalot/challenge/RSALOT.tar.gz -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsalot/solution/rsalot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsalot/solution/rsalot.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsanne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsanne/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsanne/challenge/RSANNE.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsanne/challenge/RSANNE.tar.gz -------------------------------------------------------------------------------- /2015/BACKDOORCTF/crypto/rsanne/solution/rsanne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/crypto/rsanne/solution/rsanne.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/misc/lhc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/misc/lhc/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/misc/lhc/solution/lhc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/misc/lhc/solution/lhc.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/misc/tim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/misc/tim/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/echo/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/echo/challenge/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/echo/challenge/echo -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/echo/solution/echosploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/echo/solution/echosploit.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/forgot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/forgot/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/forgot/challenge/forgot-724a09c084a9df46d8555bf77612e612.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/forgot/challenge/forgot-724a09c084a9df46d8555bf77612e612.tar.gz -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/forgot/solution/forgotsploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/forgot/solution/forgotsploit.py -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/team/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/team/README.md -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/team/challenge/team: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/team/challenge/team -------------------------------------------------------------------------------- /2015/BACKDOORCTF/pwnable/team/solution/teamsploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BACKDOORCTF/pwnable/team/solution/teamsploit.py -------------------------------------------------------------------------------- /2015/BCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BCTF/README.md -------------------------------------------------------------------------------- /2015/BCTF/crypto/weak_enc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BCTF/crypto/weak_enc/README.md -------------------------------------------------------------------------------- /2015/BCTF/crypto/weak_enc/challenge/weak_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BCTF/crypto/weak_enc/challenge/weak_enc.py -------------------------------------------------------------------------------- /2015/BCTF/crypto/weak_enc/lzw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BCTF/crypto/weak_enc/lzw.gif -------------------------------------------------------------------------------- /2015/BCTF/crypto/weak_enc/solution/weak_enc_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/BCTF/crypto/weak_enc/solution/weak_enc_crack.py -------------------------------------------------------------------------------- /2015/CODEGATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/README.md -------------------------------------------------------------------------------- /2015/CODEGATE/pwnable/systemshock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/pwnable/systemshock/README.md -------------------------------------------------------------------------------- /2015/CODEGATE/pwnable/systemshock/challenge/shock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/pwnable/systemshock/challenge/shock -------------------------------------------------------------------------------- /2015/CODEGATE/pwnable/systemshock/solution/systemshock_exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/pwnable/systemshock/solution/systemshock_exploit.sh -------------------------------------------------------------------------------- /2015/CODEGATE/web/owltube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/web/owltube/README.md -------------------------------------------------------------------------------- /2015/CODEGATE/web/owltube/cbc_decryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/web/owltube/cbc_decryption.png -------------------------------------------------------------------------------- /2015/CODEGATE/web/owltube/challenge/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/web/owltube/challenge/index.py -------------------------------------------------------------------------------- /2015/CODEGATE/web/owltube/solution/owltube_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/web/owltube/solution/owltube_exploit.py -------------------------------------------------------------------------------- /2015/CODEGATE/web/owlur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CODEGATE/web/owlur/README.md -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/README.md -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/crypto/machacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/crypto/machacking/README.md -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/crypto/machacking/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/crypto/machacking/challenge/index.php -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/crypto/machacking/hmac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/crypto/machacking/hmac.png -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/crypto/machacking/lengthextension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/crypto/machacking/lengthextension.jpg -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/crypto/machacking/solution/machack_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/crypto/machacking/solution/machack_crack.py -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/web/apacheunderwear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/web/apacheunderwear/README.md -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/web/practicalnumerology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/web/practicalnumerology/README.md -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/web/practicalnumerology/challenge/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/web/practicalnumerology/challenge/index.php -------------------------------------------------------------------------------- /2015/CONFIDENCE_TEASER/web/practicalnumerology/solution/practicalnum_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CONFIDENCE_TEASER/web/practicalnumerology/solution/practicalnum_sploit.py -------------------------------------------------------------------------------- /2015/CSAWCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/pwn/contacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/pwn/contacts/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/pwn/contacts/challenge/contacts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/pwn/contacts/challenge/contacts -------------------------------------------------------------------------------- /2015/CSAWCTF/pwn/contacts/solution/contacts_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/pwn/contacts/solution/contacts_exploit.py -------------------------------------------------------------------------------- /2015/CSAWCTF/reversing/ftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/reversing/ftp/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/reversing/ftp/challenge/ftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/reversing/ftp/challenge/ftp -------------------------------------------------------------------------------- /2015/CSAWCTF/reversing/ftp/solution/ftp_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/reversing/ftp/solution/ftp_crack.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/___HINT___: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/___HINT___ -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/index.html -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/jobs.html -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/js/grass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/js/grass.js -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/js/md5.js -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/premium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/premium.php -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/sign_up.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/sign_up.php -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/challenge/validate_pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/challenge/validate_pass.php -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/lawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/lawn.png -------------------------------------------------------------------------------- /2015/CSAWCTF/web/lawncaresimulator/solution/timing_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/lawncaresimulator/solution/timing_attack.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/throwback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/throwback/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/README.md -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/challenge/server.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/challenge/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/challenge/settings.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/challenge/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/challenge/utils.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/solution/final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/solution/final.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/solution/john.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/solution/john.txt -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/solution/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/solution/otp.py -------------------------------------------------------------------------------- /2015/CSAWCTF/web/weebdate/solution/sqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/CSAWCTF/web/weebdate/solution/sqli.py -------------------------------------------------------------------------------- /2015/DCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DCTF/README.md -------------------------------------------------------------------------------- /2015/DEFCONCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/README.md -------------------------------------------------------------------------------- /2015/DEFCONCTF/babysfirst/r0pbaby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/babysfirst/r0pbaby/README.md -------------------------------------------------------------------------------- /2015/DEFCONCTF/babysfirst/r0pbaby/challenge/r0pbaby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/babysfirst/r0pbaby/challenge/r0pbaby -------------------------------------------------------------------------------- /2015/DEFCONCTF/babysfirst/r0pbaby/solution/r0pbaby_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/babysfirst/r0pbaby/solution/r0pbaby_sploit.py -------------------------------------------------------------------------------- /2015/DEFCONCTF/coding/catwestern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/coding/catwestern/README.md -------------------------------------------------------------------------------- /2015/DEFCONCTF/coding/catwestern/solution/catwestern_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/coding/catwestern/solution/catwestern_solution.py -------------------------------------------------------------------------------- /2015/DEFCONCTF/reversing/accesscontrol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/reversing/accesscontrol/README.md -------------------------------------------------------------------------------- /2015/DEFCONCTF/reversing/accesscontrol/challenge/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/reversing/accesscontrol/challenge/client -------------------------------------------------------------------------------- /2015/DEFCONCTF/reversing/accesscontrol/solution/accesscontrol_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/DEFCONCTF/reversing/accesscontrol/solution/accesscontrol_crack.py -------------------------------------------------------------------------------- /2015/HITB_TEASER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/crypto/slowcooker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/crypto/slowcooker/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/crypto/slowcooker/challenge/slowcooker.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/crypto/slowcooker/challenge/slowcooker.tar.gz -------------------------------------------------------------------------------- /2015/HITB_TEASER/forensics/pyongyang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/forensics/pyongyang/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/forensics/pyongyang/solution/pyongyang_keysearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/forensics/pyongyang/solution/pyongyang_keysearch.c -------------------------------------------------------------------------------- /2015/HITB_TEASER/pwnable/candypop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/pwnable/candypop/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/pwnable/candypop/challenge/candypop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/pwnable/candypop/challenge/candypop -------------------------------------------------------------------------------- /2015/HITB_TEASER/web/pearldiving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/web/pearldiving/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/web/satcom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/web/satcom/README.md -------------------------------------------------------------------------------- /2015/HITB_TEASER/web/satcom/challenge/frontend.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HITB_TEASER/web/satcom/challenge/frontend.tar.gz -------------------------------------------------------------------------------- /2015/HUSTCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/HUSTCTF/README.md -------------------------------------------------------------------------------- /2015/MMACTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/README.md -------------------------------------------------------------------------------- /2015/MMACTF/crypto/signerverifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/crypto/signerverifier/README.md -------------------------------------------------------------------------------- /2015/MMACTF/crypto/signerverifier/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/crypto/signerverifier/eq1.png -------------------------------------------------------------------------------- /2015/MMACTF/crypto/signerverifier/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/crypto/signerverifier/eq2.png -------------------------------------------------------------------------------- /2015/MMACTF/crypto/signerverifier/solution/forge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/crypto/signerverifier/solution/forge.py -------------------------------------------------------------------------------- /2015/MMACTF/reversing/simple_hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/reversing/simple_hash/README.md -------------------------------------------------------------------------------- /2015/MMACTF/reversing/simple_hash/challenge/simple_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/reversing/simple_hash/challenge/simple_hash -------------------------------------------------------------------------------- /2015/MMACTF/reversing/simple_hash/solution/simple_hash_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/MMACTF/reversing/simple_hash/solution/simple_hash_crack.py -------------------------------------------------------------------------------- /2015/NUITDUHACK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/README.md -------------------------------------------------------------------------------- /2015/NUITDUHACK/crypto/gameoflife/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/crypto/gameoflife/README.md -------------------------------------------------------------------------------- /2015/NUITDUHACK/crypto/gameoflife/challenge/GOL.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/crypto/gameoflife/challenge/GOL.tar.gz -------------------------------------------------------------------------------- /2015/NUITDUHACK/crypto/gameoflife/solution/gameoflifesolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/crypto/gameoflife/solution/gameoflifesolution.py -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/clarkkent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/clarkkent/README.md -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/clarkkent/challenge/clark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/clarkkent/challenge/clark.tar.gz -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/clarkkent/solution/clarksolution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/clarkkent/solution/clarksolution.c -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/crackmeprime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/crackmeprime/README.md -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/crackmeprime/challenge/prime.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/crackmeprime/challenge/prime.tar.gz -------------------------------------------------------------------------------- /2015/NUITDUHACK/reverse/crackmeprime/solution/crackmeprimesolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/NUITDUHACK/reverse/crackmeprime/solution/crackmeprimesolution.py -------------------------------------------------------------------------------- /2015/PCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/README.md -------------------------------------------------------------------------------- /2015/PCTF/crypto/curious/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/curious/README.md -------------------------------------------------------------------------------- /2015/PCTF/crypto/curious/challenge/captured: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/curious/challenge/captured -------------------------------------------------------------------------------- /2015/PCTF/crypto/curious/solution/curious_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/curious/solution/curious_crack.py -------------------------------------------------------------------------------- /2015/PCTF/crypto/strength/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/strength/README.md -------------------------------------------------------------------------------- /2015/PCTF/crypto/strength/challenge/captured: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/strength/challenge/captured -------------------------------------------------------------------------------- /2015/PCTF/crypto/strength/solution/strength_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/crypto/strength/solution/strength_crack.py -------------------------------------------------------------------------------- /2015/PCTF/pwnable/ebp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/pwnable/ebp/README.md -------------------------------------------------------------------------------- /2015/PCTF/pwnable/ebp/challenge/ebp.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/pwnable/ebp/challenge/ebp.elf -------------------------------------------------------------------------------- /2015/PCTF/pwnable/ebp/solution/ebp_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/pwnable/ebp/solution/ebp_sploit.py -------------------------------------------------------------------------------- /2015/PCTF/reversing/clifford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/reversing/clifford/README.md -------------------------------------------------------------------------------- /2015/PCTF/reversing/clifford/challenge/clifford.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/reversing/clifford/challenge/clifford.elf -------------------------------------------------------------------------------- /2015/PCTF/reversing/clifford/solution/clifford_keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/PCTF/reversing/clifford/solution/clifford_keygen.py -------------------------------------------------------------------------------- /2015/POLICTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/README.md -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/README.md -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/challenge/topack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/challenge/topack -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/check1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/check1.png -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/check2.png -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/poly.png -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/solution/john_keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/solution/john_keygen.py -------------------------------------------------------------------------------- /2015/POLICTF/reversing/johnthepacker/solution/john_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/johnthepacker/solution/john_patch.py -------------------------------------------------------------------------------- /2015/POLICTF/reversing/reversemeplz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/reversemeplz/README.md -------------------------------------------------------------------------------- /2015/POLICTF/reversing/reversemeplz/challenge/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/reversemeplz/challenge/challenge -------------------------------------------------------------------------------- /2015/POLICTF/reversing/reversemeplz/relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/reversemeplz/relation.png -------------------------------------------------------------------------------- /2015/POLICTF/reversing/reversemeplz/solution/reversemeplz_keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/POLICTF/reversing/reversemeplz/solution/reversemeplz_keygen.py -------------------------------------------------------------------------------- /2015/README.md: -------------------------------------------------------------------------------- 1 | # 2015 -------------------------------------------------------------------------------- /2015/TMCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/README.md -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive200/README.md -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive200/challenge/AnalyzeThis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive200/challenge/AnalyzeThis.zip -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive200/site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive200/site.png -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive300/PI-extracted-file-1-screenshot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive300/PI-extracted-file-1-screenshot.bmp -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive300/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive300/README.md -------------------------------------------------------------------------------- /2015/TMCTF/analysis_defensive/analysis_defensive300/challenge/net.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/analysis_defensive/analysis_defensive300/challenge/net.zip -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto100/README.md -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto100/challenge/PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto100/challenge/PublicKey.pem -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto100/factors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto100/factors.png -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto100/solution/crypto100_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto100/solution/crypto100_crack.py -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto200/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto200/Q.png -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto200/README.md -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto200/cbc_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto200/cbc_mode.png -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto200/challenge/Q.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto200/challenge/Q.zip -------------------------------------------------------------------------------- /2015/TMCTF/crypto/crypto200/solution/crypto200_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/TMCTF/crypto/crypto200/solution/crypto200_crack.py -------------------------------------------------------------------------------- /2015/VOLGACTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/challenge/flag.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/challenge/flag.png.bin -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/challenge/lcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/challenge/lcg.py -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/solution/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/solution/flag.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/solution/lcg_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/solution/lcg_crack.py -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/system1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/system1.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/system2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/system2.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/system3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/system3.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/system4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/system4.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/lcg/system5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/lcg/system5.png -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/rsa/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/rsa/challenge/ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/rsa/challenge/ciphertext.bin -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/rsa/challenge/decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/rsa/challenge/decryptor.py -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/rsa/challenge/key.public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/rsa/challenge/key.public -------------------------------------------------------------------------------- /2015/VOLGACTF/crypto/rsa/solution/rsa_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/crypto/rsa/solution/rsa_crack.py -------------------------------------------------------------------------------- /2015/VOLGACTF/forensics/russiandoll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/forensics/russiandoll/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/forensics/russiandoll/recovery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/forensics/russiandoll/recovery1.png -------------------------------------------------------------------------------- /2015/VOLGACTF/forensics/russiandoll/recovery2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/forensics/russiandoll/recovery2.png -------------------------------------------------------------------------------- /2015/VOLGACTF/forensics/russiandoll/recovery3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/forensics/russiandoll/recovery3.png -------------------------------------------------------------------------------- /2015/VOLGACTF/forensics/russiandoll/recovery4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/forensics/russiandoll/recovery4.png -------------------------------------------------------------------------------- /2015/VOLGACTF/misc/mathproblem/solution/mathsolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/misc/mathproblem/solution/mathsolve.py -------------------------------------------------------------------------------- /2015/VOLGACTF/pwn/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/pwn/database/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/pwn/database/challenge/database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/pwn/database/challenge/database -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/README.md -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/challenge/interstellar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/challenge/interstellar -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/eq.png -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/eq2.png -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/eq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/eq3.png -------------------------------------------------------------------------------- /2015/VOLGACTF/reversing/interstellar/solution/interstellar_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/reversing/interstellar/solution/interstellar_crack.py -------------------------------------------------------------------------------- /2015/VOLGACTF/web/web2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/VOLGACTF/web/web2/README.md -------------------------------------------------------------------------------- /2015/WHITEHAT_CONTEST_10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/WHITEHAT_CONTEST_10/README.md -------------------------------------------------------------------------------- /2015/WHITEHAT_CONTEST_10/reversing/re200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2015/WHITEHAT_CONTEST_10/reversing/re200/README.md -------------------------------------------------------------------------------- /2016/BCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/README.md -------------------------------------------------------------------------------- /2016/BCTF/misc/zerodaystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/misc/zerodaystore/README.md -------------------------------------------------------------------------------- /2016/BCTF/misc/zerodaystore/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/misc/zerodaystore/challenge/server.py -------------------------------------------------------------------------------- /2016/BCTF/misc/zerodaystore/challenge/zerodaystore.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/misc/zerodaystore/challenge/zerodaystore.apk -------------------------------------------------------------------------------- /2016/BCTF/misc/zerodaystore/solution/zerodaystore_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/misc/zerodaystore/solution/zerodaystore_crack.py -------------------------------------------------------------------------------- /2016/BCTF/reversing/sif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/reversing/sif/README.md -------------------------------------------------------------------------------- /2016/BCTF/reversing/sif/challenge/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/reversing/sif/challenge/flag.png -------------------------------------------------------------------------------- /2016/BCTF/reversing/sif/challenge/sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/reversing/sif/challenge/sif -------------------------------------------------------------------------------- /2016/BCTF/reversing/sif/solution/plaintext_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/reversing/sif/solution/plaintext_flag.png -------------------------------------------------------------------------------- /2016/BCTF/reversing/sif/solution/sif_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BCTF/reversing/sif/solution/sif_crack.py -------------------------------------------------------------------------------- /2016/BKPCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/README.md -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/README.md -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/challenge/ciphertext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/challenge/ciphertext -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/challenge/des-ofb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/challenge/des-ofb.py -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/ofb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/ofb.png -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/solution/ciphertext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/solution/ciphertext -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/desofb/solution/desofb_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/desofb/solution/desofb_crack.py -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/ltseorg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/ltseorg/README.md -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/ltseorg/challenge/ltseorg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/ltseorg/challenge/ltseorg.rb -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/ltseorg/challenge/tlseorg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/ltseorg/challenge/tlseorg.py -------------------------------------------------------------------------------- /2016/BKPCTF/crypto/ltseorg/solution/ltseorg_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/crypto/ltseorg/solution/ltseorg_crack.py -------------------------------------------------------------------------------- /2016/BKPCTF/reversing/unholy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/reversing/unholy/README.md -------------------------------------------------------------------------------- /2016/BKPCTF/reversing/unholy/challenge/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/reversing/unholy/challenge/main.rb -------------------------------------------------------------------------------- /2016/BKPCTF/reversing/unholy/challenge/unholy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/reversing/unholy/challenge/unholy.so -------------------------------------------------------------------------------- /2016/BKPCTF/reversing/unholy/solution/unholy_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/BKPCTF/reversing/unholy/solution/unholy_crack.py -------------------------------------------------------------------------------- /2016/CODEGATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/README.md -------------------------------------------------------------------------------- /2016/CODEGATE/misc/jsisnotajail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/misc/jsisnotajail/README.md -------------------------------------------------------------------------------- /2016/CODEGATE/pwnable/oldschool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/pwnable/oldschool/README.md -------------------------------------------------------------------------------- /2016/CODEGATE/pwnable/oldschool/challenge/ld-2.21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/pwnable/oldschool/challenge/ld-2.21.so -------------------------------------------------------------------------------- /2016/CODEGATE/pwnable/oldschool/challenge/libc-2.21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/pwnable/oldschool/challenge/libc-2.21.so -------------------------------------------------------------------------------- /2016/CODEGATE/pwnable/oldschool/challenge/oldschool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/pwnable/oldschool/challenge/oldschool -------------------------------------------------------------------------------- /2016/CODEGATE/pwnable/oldschool/solution/oldschool_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/CODEGATE/pwnable/oldschool/solution/oldschool_sploit.py -------------------------------------------------------------------------------- /2016/DEFCONCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/README.md -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/baby-re/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/baby-re/README.md -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/baby-re/challenge/baby-re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/baby-re/challenge/baby-re -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/baby-re/solution/babyre_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/baby-re/solution/babyre_crack.py -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/xkcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/xkcd/README.md -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/xkcd/challenge/xkcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/xkcd/challenge/xkcd -------------------------------------------------------------------------------- /2016/DEFCONCTF/babysfirst/xkcd/solution/xkcd_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/babysfirst/xkcd/solution/xkcd_sploit.py -------------------------------------------------------------------------------- /2016/DEFCONCTF/reversing/step/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/reversing/step/README.md -------------------------------------------------------------------------------- /2016/DEFCONCTF/reversing/step/challenge/step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/reversing/step/challenge/step -------------------------------------------------------------------------------- /2016/DEFCONCTF/reversing/step/solution/crack_sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/reversing/step/solution/crack_sol.py -------------------------------------------------------------------------------- /2016/DEFCONCTF/reversing/step/solution/crack_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/DEFCONCTF/reversing/step/solution/crack_step.py -------------------------------------------------------------------------------- /2016/PCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/README.md -------------------------------------------------------------------------------- /2016/PCTF/crypto/rabit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/rabit/README.md -------------------------------------------------------------------------------- /2016/PCTF/crypto/rabit/challenge/rabit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/rabit/challenge/rabit.py -------------------------------------------------------------------------------- /2016/PCTF/crypto/rabit/challenge/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/rabit/challenge/util.py -------------------------------------------------------------------------------- /2016/PCTF/crypto/rabit/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/rabit/eq1.png -------------------------------------------------------------------------------- /2016/PCTF/crypto/rabit/solution/rabit_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/rabit/solution/rabit_crack.py -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/README.md -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/challenge/server.py -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/eq1.png -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/eq2.png -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/eq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/eq3.png -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/eq4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/eq4.png -------------------------------------------------------------------------------- /2016/PCTF/crypto/tonnerre/solution/tonnerre_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/crypto/tonnerre/solution/tonnerre_crack.py -------------------------------------------------------------------------------- /2016/PCTF/pwnable/butterfly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/pwnable/butterfly/README.md -------------------------------------------------------------------------------- /2016/PCTF/pwnable/butterfly/challenge/butterfly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/pwnable/butterfly/challenge/butterfly -------------------------------------------------------------------------------- /2016/PCTF/pwnable/butterfly/solution/butterfly_sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/PCTF/pwnable/butterfly/solution/butterfly_sploit.py -------------------------------------------------------------------------------- /2016/SECUINSIDE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SECUINSIDE/README.md -------------------------------------------------------------------------------- /2016/SECUINSIDE/trendyweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SECUINSIDE/trendyweb/README.md -------------------------------------------------------------------------------- /2016/SECUINSIDE/trendyweb/avatar.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /2016/SECUINSIDE/trendyweb/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SECUINSIDE/trendyweb/index.php -------------------------------------------------------------------------------- /2016/SHARIFCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/README.md -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/README.md -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/challenge/data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/challenge/data.xls -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/solution/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/solution/data.csv -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/solution/fileXYZ.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/solution/fileXYZ.data -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/solution/macro_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/solution/macro_warning.png -------------------------------------------------------------------------------- /2016/SHARIFCTF/forensics/kick_tort_teen/solution/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/SHARIFCTF/forensics/kick_tort_teen/solution/solve.py -------------------------------------------------------------------------------- /2016/TUCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/README.md -------------------------------------------------------------------------------- /2016/TUCTF/crypto/hashnbake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/hashnbake/README.md -------------------------------------------------------------------------------- /2016/TUCTF/crypto/hashnbake/challenge/hbake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/hashnbake/challenge/hbake.py -------------------------------------------------------------------------------- /2016/TUCTF/crypto/hashnbake/crc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/hashnbake/crc1.png -------------------------------------------------------------------------------- /2016/TUCTF/crypto/hashnbake/crc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/hashnbake/crc2.png -------------------------------------------------------------------------------- /2016/TUCTF/crypto/hashnbake/crc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/hashnbake/crc3.png -------------------------------------------------------------------------------- /2016/TUCTF/crypto/securetransmission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/securetransmission/README.md -------------------------------------------------------------------------------- /2016/TUCTF/crypto/securetransmission/challenge/40bec2fdb682af3046465a54f7776c8adb26ea4d.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/securetransmission/challenge/40bec2fdb682af3046465a54f7776c8adb26ea4d.pcapng -------------------------------------------------------------------------------- /2016/TUCTF/crypto/securetransmission/challenge/client.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/crypto/securetransmission/challenge/client.pyc -------------------------------------------------------------------------------- /2016/TUCTF/pwn/especiallygoodjmps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/pwn/especiallygoodjmps/README.md -------------------------------------------------------------------------------- /2016/TUCTF/pwn/especiallygoodjmps/challenge/23e4f31a5a8801a554e1066e26eb34745786f4c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/pwn/especiallygoodjmps/challenge/23e4f31a5a8801a554e1066e26eb34745786f4c4 -------------------------------------------------------------------------------- /2016/TUCTF/pwn/especiallygoodjmps/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/pwn/especiallygoodjmps/solution/exploit.py -------------------------------------------------------------------------------- /2016/TUCTF/web/DuckPrint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/DuckPrint/README.md -------------------------------------------------------------------------------- /2016/TUCTF/web/DuckPrint/challenge/flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/DuckPrint/challenge/flag.html -------------------------------------------------------------------------------- /2016/TUCTF/web/DuckPrint/challenge/generate.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/DuckPrint/challenge/generate.php.html -------------------------------------------------------------------------------- /2016/TUCTF/web/DuckPrint/challenge/register.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/DuckPrint/challenge/register.php.html -------------------------------------------------------------------------------- /2016/TUCTF/web/DuckPrint/challenge/validate.php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/DuckPrint/challenge/validate.php.html -------------------------------------------------------------------------------- /2016/TUCTF/web/LuckyCharms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/LuckyCharms/README.md -------------------------------------------------------------------------------- /2016/TUCTF/web/LuckyCharms/challenge/LuckyCharms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/LuckyCharms/challenge/LuckyCharms.html -------------------------------------------------------------------------------- /2016/TUCTF/web/LuckyCharms/challenge/LuckyCharms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/LuckyCharms/challenge/LuckyCharms.java -------------------------------------------------------------------------------- /2016/TUCTF/web/LuckyCharms/solution/Hax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/LuckyCharms/solution/Hax.java -------------------------------------------------------------------------------- /2016/TUCTF/web/PetPaddingInc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/PetPaddingInc/README.md -------------------------------------------------------------------------------- /2016/TUCTF/web/PetPaddingInc/solution/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/TUCTF/web/PetPaddingInc/solution/exploit.py -------------------------------------------------------------------------------- /2016/VOLGACTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/README.md -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/README.md -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/challenge/exit.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/challenge/exit.sig -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/challenge/key.public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/challenge/key.public -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/challenge/leave.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/challenge/leave.sig -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/challenge/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/challenge/server.py -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/eq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/eq1.png -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/eq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/eq2.png -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/eq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/eq3.png -------------------------------------------------------------------------------- /2016/VOLGACTF/crypto/lazy/solution/lazy_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2016/VOLGACTF/crypto/lazy/solution/lazy_crack.py -------------------------------------------------------------------------------- /2017/KASPERSKY/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/README.md -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/README.md -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/challenge/old_school.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/challenge/old_school.bin -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/game.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/screenshot.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-2.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-3.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-4.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-5.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-6.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-7.png -------------------------------------------------------------------------------- /2017/KASPERSKY/fun/old-school/solution/level-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/2017/KASPERSKY/fun/old-school/solution/level-8.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CTF_WRITEUPS 2 | CTF Writeups 3 | -------------------------------------------------------------------------------- /event_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/event_template.md -------------------------------------------------------------------------------- /write-up_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeleeteveryday/CTF_WRITEUPS/HEAD/write-up_template.md --------------------------------------------------------------------------------