├── .gitignore ├── 2020-AngstromCTF ├── README.md ├── config.json ├── crypto │ ├── keysar.md │ └── one-time-bad.md ├── misc │ ├── PSK.md │ ├── msd.md │ ├── shifter.md │ ├── ws1.md │ ├── ws2.md │ └── ws3.md └── web │ ├── consolation.md │ └── secret-agents.md ├── 2020-DawgCTF └── README.md ├── 2020-HSCTF └── README.md ├── 2020-HackTM └── README.md ├── 2020-HouseplantCTF ├── OSINT │ ├── Catography.md │ └── Groovin-and-Cubin.md ├── README.md ├── config.json ├── crypto │ └── Rainbow-Vomit.md └── web │ ├── Fire-place.md │ ├── I-don't-like-needles.md │ └── QR-Generator.md ├── 2020-InCTF └── README.md ├── 2020-MAGICoCTF ├── README.md ├── nortum_client └── server.py ├── 2020-MidnightSunCTF └── README.md ├── 2020-NACTF └── README.md ├── 2020-NeverLanCTF ├── index.md └── student_scoreboard.png ├── 2020-PatriotCTF ├── README.md └── scoreboard.png ├── 2020-PoseidonCTF └── README.md ├── 2020-RGBCTF └── README.md ├── 2020-RedpwnCTF ├── README.md ├── config.json └── pwn │ ├── Dead-Canary.md │ ├── Four-Function-Heap.md │ ├── Kevin-Higgs.md │ ├── Secret-Flag.md │ ├── Skywriting.md │ ├── Tetanus.md │ └── The-Library.md ├── 2020-SharkyCTF └── README.md ├── 2020-TAMUCTF ├── README.md ├── config.json ├── crypto │ └── SIGMA.md ├── misc │ ├── ALCAPONE.md │ ├── BLIND.md │ ├── CORRUPTED_DISK.md │ ├── GEOGRAPHY.md │ ├── RSAPWN.md │ └── WOOF_WOOF.md ├── network_pentest │ └── LISTEN.md ├── rev │ └── VAULT.md └── web │ ├── CREDITS.md │ ├── FILESTORAGE.md │ └── PASSWORD_EXTRACTION.md ├── 2020-TJCTF ├── README.md ├── config.json ├── crypto │ ├── Circles.md │ ├── Difficult-Decryption.md │ ├── Home-Rolled.md │ ├── Is-This-Crypto?.md │ ├── RGBSA.md │ ├── RSABC.md │ ├── Speedrunner.md │ ├── Tap-Dancing.md │ ├── Titanic.md │ └── Typewriter.md ├── forensics │ ├── Cookie-Monster.md │ ├── Corrupted-Project.md │ ├── Gamer-F.md │ ├── Hexillology.md │ ├── Ling-Ling.md │ ├── Rap-God.md │ └── Unimportant.md ├── misc │ ├── A-First-Step.md │ ├── Censorship.md │ ├── Discord.md │ ├── Gamer-M.md │ ├── Jarvis.md │ ├── Timed.md │ ├── Truly-Terrible-Why.md │ ├── Zipped-Up.md │ └── arabfunny.md ├── pwn │ ├── Cookie-Library.md │ ├── El-Primo.md │ ├── Naughty.md │ ├── OSRS.md │ ├── Seashells.md │ ├── Stop.md │ └── Tinder.md ├── rev │ ├── ASMR.md │ ├── Bad-Python.md │ ├── Chord-Encoder.md │ ├── Comprehensive-2.md │ ├── Forwarding.md │ ├── Gamer-R.md │ └── Gym.md └── web │ ├── Admin-Secrets.md │ ├── Broken-Button.md │ ├── Circus.md │ ├── Congenial-Octo-Couscous.md │ ├── FB-Library.md │ ├── File-Viewer.md │ ├── Login-Sequel.md │ ├── Login.md │ ├── Moar-Horse-4.md │ ├── Sarah-Palin-Fanpage.md │ └── Weak-Password.md ├── 2020-VirtualCodeCup ├── README.md ├── config.json ├── scoreboard.png └── web │ ├── Beep-Boop-Bot.md │ ├── No-Signature,-No-Problem.md │ └── Snickerdoodle.md ├── 2020-VulnConCTF └── README.md ├── 2020-Zh3r0PreCTF ├── README.md └── ultrarsa │ ├── chall.py │ ├── out.txt │ └── solve.py ├── 2021-AngstromCTF └── README.md ├── 2021-DiceCTF └── README.md ├── README.md ├── generate.py ├── pwnabletw ├── 3x17 │ └── solve.py ├── README.md ├── applestore │ ├── solve.py │ └── thing.cpp ├── calc │ └── solve.py ├── dubblesort │ └── solve.py ├── hacknote │ └── solve.py ├── orw │ └── solve.py ├── re-alloc │ └── solve.py ├── seethefile │ └── solve.py ├── silverbullet │ └── solve.py ├── start │ └── solve.py └── tcachetear │ └── solve.py └── solved_afterwards ├── 2019-PicoCTF ├── afterlife │ └── solve.py ├── ghostdiary │ └── solve.py ├── heapoverflow │ └── solve.py ├── secondlife │ └── solve.py ├── sice_cream │ └── solve.py └── zero_to_hero │ └── solve.py ├── 2020-HSCTF ├── got_it │ └── solve.py ├── studysim │ └── solve.py └── treecache1 │ └── solve.py ├── 2020-TJCTF ├── elprimo │ └── solve.py ├── naughty │ └── solve.py ├── osrs │ └── solve.py ├── seashells │ └── solve.py ├── stop │ └── solve.py └── tinder │ └── solve.py ├── 2020-TJWinterCTF └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | -------------------------------------------------------------------------------- /2020-AngstromCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/README.md -------------------------------------------------------------------------------- /2020-AngstromCTF/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/config.json -------------------------------------------------------------------------------- /2020-AngstromCTF/crypto/keysar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/crypto/keysar.md -------------------------------------------------------------------------------- /2020-AngstromCTF/crypto/one-time-bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/crypto/one-time-bad.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/PSK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/PSK.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/msd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/msd.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/shifter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/shifter.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/ws1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/ws1.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/ws2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/ws2.md -------------------------------------------------------------------------------- /2020-AngstromCTF/misc/ws3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/misc/ws3.md -------------------------------------------------------------------------------- /2020-AngstromCTF/web/consolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/web/consolation.md -------------------------------------------------------------------------------- /2020-AngstromCTF/web/secret-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-AngstromCTF/web/secret-agents.md -------------------------------------------------------------------------------- /2020-DawgCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-DawgCTF/README.md -------------------------------------------------------------------------------- /2020-HSCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HSCTF/README.md -------------------------------------------------------------------------------- /2020-HackTM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HackTM/README.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/OSINT/Catography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/OSINT/Catography.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/OSINT/Groovin-and-Cubin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/OSINT/Groovin-and-Cubin.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/README.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/config.json -------------------------------------------------------------------------------- /2020-HouseplantCTF/crypto/Rainbow-Vomit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/crypto/Rainbow-Vomit.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/web/Fire-place.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/web/Fire-place.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/web/I-don't-like-needles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/web/I-don't-like-needles.md -------------------------------------------------------------------------------- /2020-HouseplantCTF/web/QR-Generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-HouseplantCTF/web/QR-Generator.md -------------------------------------------------------------------------------- /2020-InCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-InCTF/README.md -------------------------------------------------------------------------------- /2020-MAGICoCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-MAGICoCTF/README.md -------------------------------------------------------------------------------- /2020-MAGICoCTF/nortum_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-MAGICoCTF/nortum_client -------------------------------------------------------------------------------- /2020-MAGICoCTF/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-MAGICoCTF/server.py -------------------------------------------------------------------------------- /2020-MidnightSunCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-MidnightSunCTF/README.md -------------------------------------------------------------------------------- /2020-NACTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-NACTF/README.md -------------------------------------------------------------------------------- /2020-NeverLanCTF/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-NeverLanCTF/index.md -------------------------------------------------------------------------------- /2020-NeverLanCTF/student_scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-NeverLanCTF/student_scoreboard.png -------------------------------------------------------------------------------- /2020-PatriotCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-PatriotCTF/README.md -------------------------------------------------------------------------------- /2020-PatriotCTF/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-PatriotCTF/scoreboard.png -------------------------------------------------------------------------------- /2020-PoseidonCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-PoseidonCTF/README.md -------------------------------------------------------------------------------- /2020-RGBCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RGBCTF/README.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/README.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/config.json -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Dead-Canary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Dead-Canary.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Four-Function-Heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Four-Function-Heap.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Kevin-Higgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Kevin-Higgs.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Secret-Flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Secret-Flag.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Skywriting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Skywriting.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/Tetanus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/Tetanus.md -------------------------------------------------------------------------------- /2020-RedpwnCTF/pwn/The-Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-RedpwnCTF/pwn/The-Library.md -------------------------------------------------------------------------------- /2020-SharkyCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-SharkyCTF/README.md -------------------------------------------------------------------------------- /2020-TAMUCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/README.md -------------------------------------------------------------------------------- /2020-TAMUCTF/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/config.json -------------------------------------------------------------------------------- /2020-TAMUCTF/crypto/SIGMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/crypto/SIGMA.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/ALCAPONE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/ALCAPONE.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/BLIND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/BLIND.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/CORRUPTED_DISK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/CORRUPTED_DISK.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/GEOGRAPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/GEOGRAPHY.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/RSAPWN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/RSAPWN.md -------------------------------------------------------------------------------- /2020-TAMUCTF/misc/WOOF_WOOF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/misc/WOOF_WOOF.md -------------------------------------------------------------------------------- /2020-TAMUCTF/network_pentest/LISTEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/network_pentest/LISTEN.md -------------------------------------------------------------------------------- /2020-TAMUCTF/rev/VAULT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/rev/VAULT.md -------------------------------------------------------------------------------- /2020-TAMUCTF/web/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/web/CREDITS.md -------------------------------------------------------------------------------- /2020-TAMUCTF/web/FILESTORAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/web/FILESTORAGE.md -------------------------------------------------------------------------------- /2020-TAMUCTF/web/PASSWORD_EXTRACTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TAMUCTF/web/PASSWORD_EXTRACTION.md -------------------------------------------------------------------------------- /2020-TJCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/README.md -------------------------------------------------------------------------------- /2020-TJCTF/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/config.json -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Circles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Circles.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Difficult-Decryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Difficult-Decryption.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Home-Rolled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Home-Rolled.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Is-This-Crypto?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Is-This-Crypto?.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/RGBSA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/RGBSA.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/RSABC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/RSABC.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Speedrunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Speedrunner.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Tap-Dancing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Tap-Dancing.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Titanic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Titanic.md -------------------------------------------------------------------------------- /2020-TJCTF/crypto/Typewriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/crypto/Typewriter.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Cookie-Monster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Cookie-Monster.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Corrupted-Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Corrupted-Project.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Gamer-F.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Gamer-F.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Hexillology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Hexillology.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Ling-Ling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Ling-Ling.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Rap-God.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Rap-God.md -------------------------------------------------------------------------------- /2020-TJCTF/forensics/Unimportant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/forensics/Unimportant.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/A-First-Step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/A-First-Step.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Censorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Censorship.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Discord.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Gamer-M.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Gamer-M.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Jarvis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Jarvis.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Timed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Timed.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Truly-Terrible-Why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Truly-Terrible-Why.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/Zipped-Up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/Zipped-Up.md -------------------------------------------------------------------------------- /2020-TJCTF/misc/arabfunny.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/misc/arabfunny.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/Cookie-Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/Cookie-Library.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/El-Primo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/El-Primo.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/Naughty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/Naughty.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/OSRS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/OSRS.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/Seashells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/Seashells.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/Stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/Stop.md -------------------------------------------------------------------------------- /2020-TJCTF/pwn/Tinder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/pwn/Tinder.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/ASMR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/ASMR.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Bad-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Bad-Python.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Chord-Encoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Chord-Encoder.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Comprehensive-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Comprehensive-2.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Forwarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Forwarding.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Gamer-R.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Gamer-R.md -------------------------------------------------------------------------------- /2020-TJCTF/rev/Gym.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/rev/Gym.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Admin-Secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Admin-Secrets.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Broken-Button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Broken-Button.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Circus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Circus.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Congenial-Octo-Couscous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Congenial-Octo-Couscous.md -------------------------------------------------------------------------------- /2020-TJCTF/web/FB-Library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/FB-Library.md -------------------------------------------------------------------------------- /2020-TJCTF/web/File-Viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/File-Viewer.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Login-Sequel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Login-Sequel.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Login.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Moar-Horse-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Moar-Horse-4.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Sarah-Palin-Fanpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Sarah-Palin-Fanpage.md -------------------------------------------------------------------------------- /2020-TJCTF/web/Weak-Password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-TJCTF/web/Weak-Password.md -------------------------------------------------------------------------------- /2020-VirtualCodeCup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/README.md -------------------------------------------------------------------------------- /2020-VirtualCodeCup/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/config.json -------------------------------------------------------------------------------- /2020-VirtualCodeCup/scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/scoreboard.png -------------------------------------------------------------------------------- /2020-VirtualCodeCup/web/Beep-Boop-Bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/web/Beep-Boop-Bot.md -------------------------------------------------------------------------------- /2020-VirtualCodeCup/web/No-Signature,-No-Problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/web/No-Signature,-No-Problem.md -------------------------------------------------------------------------------- /2020-VirtualCodeCup/web/Snickerdoodle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VirtualCodeCup/web/Snickerdoodle.md -------------------------------------------------------------------------------- /2020-VulnConCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-VulnConCTF/README.md -------------------------------------------------------------------------------- /2020-Zh3r0PreCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-Zh3r0PreCTF/README.md -------------------------------------------------------------------------------- /2020-Zh3r0PreCTF/ultrarsa/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-Zh3r0PreCTF/ultrarsa/chall.py -------------------------------------------------------------------------------- /2020-Zh3r0PreCTF/ultrarsa/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-Zh3r0PreCTF/ultrarsa/out.txt -------------------------------------------------------------------------------- /2020-Zh3r0PreCTF/ultrarsa/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2020-Zh3r0PreCTF/ultrarsa/solve.py -------------------------------------------------------------------------------- /2021-AngstromCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2021-AngstromCTF/README.md -------------------------------------------------------------------------------- /2021-DiceCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/2021-DiceCTF/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/README.md -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/generate.py -------------------------------------------------------------------------------- /pwnabletw/3x17/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/3x17/solve.py -------------------------------------------------------------------------------- /pwnabletw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/README.md -------------------------------------------------------------------------------- /pwnabletw/applestore/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/applestore/solve.py -------------------------------------------------------------------------------- /pwnabletw/applestore/thing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/applestore/thing.cpp -------------------------------------------------------------------------------- /pwnabletw/calc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/calc/solve.py -------------------------------------------------------------------------------- /pwnabletw/dubblesort/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/dubblesort/solve.py -------------------------------------------------------------------------------- /pwnabletw/hacknote/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/hacknote/solve.py -------------------------------------------------------------------------------- /pwnabletw/orw/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/orw/solve.py -------------------------------------------------------------------------------- /pwnabletw/re-alloc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/re-alloc/solve.py -------------------------------------------------------------------------------- /pwnabletw/seethefile/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/seethefile/solve.py -------------------------------------------------------------------------------- /pwnabletw/silverbullet/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/silverbullet/solve.py -------------------------------------------------------------------------------- /pwnabletw/start/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/start/solve.py -------------------------------------------------------------------------------- /pwnabletw/tcachetear/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/pwnabletw/tcachetear/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/afterlife/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/afterlife/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/ghostdiary/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/ghostdiary/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/heapoverflow/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/heapoverflow/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/secondlife/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/secondlife/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/sice_cream/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/sice_cream/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2019-PicoCTF/zero_to_hero/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2019-PicoCTF/zero_to_hero/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-HSCTF/got_it/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-HSCTF/got_it/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-HSCTF/studysim/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-HSCTF/studysim/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-HSCTF/treecache1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-HSCTF/treecache1/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/elprimo/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/elprimo/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/naughty/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/naughty/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/osrs/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/osrs/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/seashells/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/seashells/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/stop/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/stop/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJCTF/tinder/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJCTF/tinder/solve.py -------------------------------------------------------------------------------- /solved_afterwards/2020-TJWinterCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/2020-TJWinterCTF/README.md -------------------------------------------------------------------------------- /solved_afterwards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdabosh/writeups/HEAD/solved_afterwards/README.md --------------------------------------------------------------------------------