├── Articles ├── Detailed Writeups: Binary Exploitation.md └── How i hacked a famous pizza vendor in Tunisia ?.md ├── CSAW2020 └── WebRTC.md ├── CSICTF2020 └── Web.md ├── CastorsCTF 2020 ├── Shortcuts.md └── babybof1 pt2.md ├── DarkCTF2020 └── McQueen.md ├── FwordCTF 2020 └── Writeups.md ├── HackZone VIII └── Web Challenges │ └── README.md ├── Midnight Sun CTF 2020 Quals ├── pwn1 │ ├── README.md │ ├── exploit.py │ ├── libc.so │ └── pwn1 └── pwn2 │ ├── README.md │ ├── exploit.py │ ├── libc.so.6 │ └── pwn2 ├── NCSC2.0_CTF ├── JWT In a new way │ ├── README.md │ └── Source Code │ │ ├── accueil.php │ │ ├── connexion.php │ │ ├── crypter.php │ │ ├── deconnexion.php │ │ ├── decrypter.php │ │ ├── flag.txt │ │ ├── index.php │ │ ├── inscription.php │ │ ├── jwt.php │ │ ├── jwtmanip.php │ │ ├── robots.txt │ │ ├── shinobi.sql │ │ ├── style.css │ │ ├── style1.css │ │ └── style2.css ├── Love Django │ └── README.md └── Shinobis World │ └── README.md ├── Nahamcon CTF ├── Glimpse.md └── SSH Logger.md ├── RITSEC CTF └── README.md ├── Securinets Prequals 2k20 ├── Empire Total │ ├── README.md │ └── test.py └── The after-Prequal │ └── README.md ├── SecurinetsMiniCTF └── README.md ├── TAMU CTF ├── B64DECODER │ ├── README.md │ ├── b64decoder │ └── exploitfmt.py └── TROLL │ ├── README.md │ ├── solve.c │ ├── solve.py │ └── troll ├── TG-Hack └── Bufferfly │ └── README.md ├── UMDCTF 2020 ├── Cowspeak as a Service (CaaS) │ ├── README.md │ └── sploitcow.py ├── Easy Right? │ ├── README.md │ ├── baby │ └── exp1.py └── Jump Not Found │ ├── JNF │ └── README.md ├── WPI CTF 2020 ├── dorsia1 │ ├── README.md │ ├── exploit.py │ └── task.c └── dorsia3 │ ├── README.md │ ├── exploit.py │ ├── libc.so.6 │ └── nanoprint ├── rgbCTF └── Web.md └── ångstromCTF2k20 ├── A Peculiar Query ├── README.md └── app.js └── Shifter ├── README.md └── exploit.py /Articles/Detailed Writeups: Binary Exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Articles/Detailed Writeups: Binary Exploitation.md -------------------------------------------------------------------------------- /Articles/How i hacked a famous pizza vendor in Tunisia ?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Articles/How i hacked a famous pizza vendor in Tunisia ?.md -------------------------------------------------------------------------------- /CSAW2020/WebRTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/CSAW2020/WebRTC.md -------------------------------------------------------------------------------- /CSICTF2020/Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/CSICTF2020/Web.md -------------------------------------------------------------------------------- /CastorsCTF 2020/Shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/CastorsCTF 2020/Shortcuts.md -------------------------------------------------------------------------------- /CastorsCTF 2020/babybof1 pt2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/CastorsCTF 2020/babybof1 pt2.md -------------------------------------------------------------------------------- /DarkCTF2020/McQueen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/DarkCTF2020/McQueen.md -------------------------------------------------------------------------------- /FwordCTF 2020/Writeups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/FwordCTF 2020/Writeups.md -------------------------------------------------------------------------------- /HackZone VIII/Web Challenges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/HackZone VIII/Web Challenges/README.md -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn1/README.md -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn1/exploit.py -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn1/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn1/libc.so -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn1/pwn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn1/pwn1 -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn2/README.md -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn2/exploit.py -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn2/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn2/libc.so.6 -------------------------------------------------------------------------------- /Midnight Sun CTF 2020 Quals/pwn2/pwn2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Midnight Sun CTF 2020 Quals/pwn2/pwn2 -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/README.md -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/accueil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/accueil.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/connexion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/connexion.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/crypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/crypter.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/deconnexion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/deconnexion.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/decrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/decrypter.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/flag.txt: -------------------------------------------------------------------------------- 1 | securinets{W00w_3v3n_Th3_AutHor_C4Nt_S0lV3_TH1$!!} 2 | -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/index.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/inscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/inscription.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/jwt.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/jwtmanip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/jwtmanip.php -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/robots.txt -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/shinobi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/shinobi.sql -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/style.css -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/style1.css -------------------------------------------------------------------------------- /NCSC2.0_CTF/JWT In a new way/Source Code/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/JWT In a new way/Source Code/style2.css -------------------------------------------------------------------------------- /NCSC2.0_CTF/Love Django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/Love Django/README.md -------------------------------------------------------------------------------- /NCSC2.0_CTF/Shinobis World/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/NCSC2.0_CTF/Shinobis World/README.md -------------------------------------------------------------------------------- /Nahamcon CTF/Glimpse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Nahamcon CTF/Glimpse.md -------------------------------------------------------------------------------- /Nahamcon CTF/SSH Logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Nahamcon CTF/SSH Logger.md -------------------------------------------------------------------------------- /RITSEC CTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/RITSEC CTF/README.md -------------------------------------------------------------------------------- /Securinets Prequals 2k20/Empire Total/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Securinets Prequals 2k20/Empire Total/README.md -------------------------------------------------------------------------------- /Securinets Prequals 2k20/Empire Total/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Securinets Prequals 2k20/Empire Total/test.py -------------------------------------------------------------------------------- /Securinets Prequals 2k20/The after-Prequal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/Securinets Prequals 2k20/The after-Prequal/README.md -------------------------------------------------------------------------------- /SecurinetsMiniCTF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/SecurinetsMiniCTF/README.md -------------------------------------------------------------------------------- /TAMU CTF/B64DECODER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/B64DECODER/README.md -------------------------------------------------------------------------------- /TAMU CTF/B64DECODER/b64decoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/B64DECODER/b64decoder -------------------------------------------------------------------------------- /TAMU CTF/B64DECODER/exploitfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/B64DECODER/exploitfmt.py -------------------------------------------------------------------------------- /TAMU CTF/TROLL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/TROLL/README.md -------------------------------------------------------------------------------- /TAMU CTF/TROLL/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/TROLL/solve.c -------------------------------------------------------------------------------- /TAMU CTF/TROLL/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/TROLL/solve.py -------------------------------------------------------------------------------- /TAMU CTF/TROLL/troll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TAMU CTF/TROLL/troll -------------------------------------------------------------------------------- /TG-Hack/Bufferfly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/TG-Hack/Bufferfly/README.md -------------------------------------------------------------------------------- /UMDCTF 2020/Cowspeak as a Service (CaaS)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Cowspeak as a Service (CaaS)/README.md -------------------------------------------------------------------------------- /UMDCTF 2020/Cowspeak as a Service (CaaS)/sploitcow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Cowspeak as a Service (CaaS)/sploitcow.py -------------------------------------------------------------------------------- /UMDCTF 2020/Easy Right?/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Easy Right?/README.md -------------------------------------------------------------------------------- /UMDCTF 2020/Easy Right?/baby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Easy Right?/baby -------------------------------------------------------------------------------- /UMDCTF 2020/Easy Right?/exp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Easy Right?/exp1.py -------------------------------------------------------------------------------- /UMDCTF 2020/Jump Not Found/JNF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Jump Not Found/JNF -------------------------------------------------------------------------------- /UMDCTF 2020/Jump Not Found/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/UMDCTF 2020/Jump Not Found/README.md -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia1/README.md -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia1/exploit.py -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia1/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia1/task.c -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia3/README.md -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia3/exploit.py -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia3/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia3/libc.so.6 -------------------------------------------------------------------------------- /WPI CTF 2020/dorsia3/nanoprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/WPI CTF 2020/dorsia3/nanoprint -------------------------------------------------------------------------------- /rgbCTF/Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/rgbCTF/Web.md -------------------------------------------------------------------------------- /ångstromCTF2k20/A Peculiar Query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/ångstromCTF2k20/A Peculiar Query/README.md -------------------------------------------------------------------------------- /ångstromCTF2k20/A Peculiar Query/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/ångstromCTF2k20/A Peculiar Query/app.js -------------------------------------------------------------------------------- /ångstromCTF2k20/Shifter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/ångstromCTF2k20/Shifter/README.md -------------------------------------------------------------------------------- /ångstromCTF2k20/Shifter/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kahla-sec/CTF-Writeups/HEAD/ångstromCTF2k20/Shifter/exploit.py --------------------------------------------------------------------------------