├── 31c3 └── nokia │ ├── bbproxy │ ├── bbproxy.c │ ├── pwn.py │ ├── root │ ├── root.c │ └── shellcode.c ├── 34c3 ├── blinkenlights │ ├── README.md │ ├── decode.py │ └── display.py └── chaingang │ └── README.md ├── ASIS2016 └── semanager │ ├── parse.py │ └── solve.py ├── CGFinals2015 ├── README.md ├── pizza │ ├── README.md │ └── pwnpizza.py └── strong_arm │ ├── README.md │ └── pwn.c ├── CGQ2015 ├── README.md ├── decrypt.py ├── sploit.py ├── sploit_server.py ├── their-conf.bak └── xorkey ├── GoogleCTF19Quals └── minetest │ ├── WRITEUP.md │ ├── cover.sby │ ├── out2.v │ └── solve.py ├── HITCOIN2017Quals └── RealRubyEscaping │ ├── README.md │ ├── code.rb │ └── send.py ├── HTK2015 └── bluefreeze │ ├── e.py │ └── handout ├── ISH2015 ├── README.md └── firmware │ └── hack.py ├── ISHTeaser2015 └── interview │ ├── authsrv.py │ ├── client.py │ └── pop3ret.i64 ├── Misc ├── README.md └── www │ ├── README.md │ ├── hax.py │ └── www ├── NullCon2015 └── exp100.py ├── PlaidCTF2015 ├── PlaidDB │ ├── README.md │ └── reimpl.c ├── eces-revenge │ └── README.md ├── parlor2 │ ├── README.md │ └── sploit.py └── prodmanager │ ├── README.md │ └── mgrpwn.py ├── Pwn2Win2017 ├── README.md ├── crap.txt ├── extract.py ├── netlist.v ├── rendernets.py ├── rendersegments.py ├── shiftreg_e7f285dccca5788b157d72e7fde31a92ed765c64ec86d56164426b7c1cde1625.gds2 └── solve.py ├── README.md └── SECCON2016Quals └── microcomputer ├── README.md └── exploit.py /31c3/nokia/bbproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/bbproxy -------------------------------------------------------------------------------- /31c3/nokia/bbproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/bbproxy.c -------------------------------------------------------------------------------- /31c3/nokia/pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/pwn.py -------------------------------------------------------------------------------- /31c3/nokia/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/root -------------------------------------------------------------------------------- /31c3/nokia/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/root.c -------------------------------------------------------------------------------- /31c3/nokia/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/31c3/nokia/shellcode.c -------------------------------------------------------------------------------- /34c3/blinkenlights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/34c3/blinkenlights/README.md -------------------------------------------------------------------------------- /34c3/blinkenlights/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/34c3/blinkenlights/decode.py -------------------------------------------------------------------------------- /34c3/blinkenlights/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/34c3/blinkenlights/display.py -------------------------------------------------------------------------------- /34c3/chaingang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/34c3/chaingang/README.md -------------------------------------------------------------------------------- /ASIS2016/semanager/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ASIS2016/semanager/parse.py -------------------------------------------------------------------------------- /ASIS2016/semanager/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ASIS2016/semanager/solve.py -------------------------------------------------------------------------------- /CGFinals2015/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGFinals2015/README.md -------------------------------------------------------------------------------- /CGFinals2015/pizza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGFinals2015/pizza/README.md -------------------------------------------------------------------------------- /CGFinals2015/pizza/pwnpizza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGFinals2015/pizza/pwnpizza.py -------------------------------------------------------------------------------- /CGFinals2015/strong_arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGFinals2015/strong_arm/README.md -------------------------------------------------------------------------------- /CGFinals2015/strong_arm/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGFinals2015/strong_arm/pwn.c -------------------------------------------------------------------------------- /CGQ2015/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/README.md -------------------------------------------------------------------------------- /CGQ2015/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/decrypt.py -------------------------------------------------------------------------------- /CGQ2015/sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/sploit.py -------------------------------------------------------------------------------- /CGQ2015/sploit_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/sploit_server.py -------------------------------------------------------------------------------- /CGQ2015/their-conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/their-conf.bak -------------------------------------------------------------------------------- /CGQ2015/xorkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/CGQ2015/xorkey -------------------------------------------------------------------------------- /GoogleCTF19Quals/minetest/WRITEUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/GoogleCTF19Quals/minetest/WRITEUP.md -------------------------------------------------------------------------------- /GoogleCTF19Quals/minetest/cover.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/GoogleCTF19Quals/minetest/cover.sby -------------------------------------------------------------------------------- /GoogleCTF19Quals/minetest/out2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/GoogleCTF19Quals/minetest/out2.v -------------------------------------------------------------------------------- /GoogleCTF19Quals/minetest/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/GoogleCTF19Quals/minetest/solve.py -------------------------------------------------------------------------------- /HITCOIN2017Quals/RealRubyEscaping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/HITCOIN2017Quals/RealRubyEscaping/README.md -------------------------------------------------------------------------------- /HITCOIN2017Quals/RealRubyEscaping/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/HITCOIN2017Quals/RealRubyEscaping/code.rb -------------------------------------------------------------------------------- /HITCOIN2017Quals/RealRubyEscaping/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/HITCOIN2017Quals/RealRubyEscaping/send.py -------------------------------------------------------------------------------- /HTK2015/bluefreeze/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/HTK2015/bluefreeze/e.py -------------------------------------------------------------------------------- /HTK2015/bluefreeze/handout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/HTK2015/bluefreeze/handout -------------------------------------------------------------------------------- /ISH2015/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ISH2015/README.md -------------------------------------------------------------------------------- /ISH2015/firmware/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ISH2015/firmware/hack.py -------------------------------------------------------------------------------- /ISHTeaser2015/interview/authsrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ISHTeaser2015/interview/authsrv.py -------------------------------------------------------------------------------- /ISHTeaser2015/interview/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ISHTeaser2015/interview/client.py -------------------------------------------------------------------------------- /ISHTeaser2015/interview/pop3ret.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/ISHTeaser2015/interview/pop3ret.i64 -------------------------------------------------------------------------------- /Misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Misc/README.md -------------------------------------------------------------------------------- /Misc/www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Misc/www/README.md -------------------------------------------------------------------------------- /Misc/www/hax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Misc/www/hax.py -------------------------------------------------------------------------------- /Misc/www/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Misc/www/www -------------------------------------------------------------------------------- /NullCon2015/exp100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/NullCon2015/exp100.py -------------------------------------------------------------------------------- /PlaidCTF2015/PlaidDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/PlaidDB/README.md -------------------------------------------------------------------------------- /PlaidCTF2015/PlaidDB/reimpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/PlaidDB/reimpl.c -------------------------------------------------------------------------------- /PlaidCTF2015/eces-revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/eces-revenge/README.md -------------------------------------------------------------------------------- /PlaidCTF2015/parlor2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/parlor2/README.md -------------------------------------------------------------------------------- /PlaidCTF2015/parlor2/sploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/parlor2/sploit.py -------------------------------------------------------------------------------- /PlaidCTF2015/prodmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/prodmanager/README.md -------------------------------------------------------------------------------- /PlaidCTF2015/prodmanager/mgrpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/PlaidCTF2015/prodmanager/mgrpwn.py -------------------------------------------------------------------------------- /Pwn2Win2017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/README.md -------------------------------------------------------------------------------- /Pwn2Win2017/crap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/crap.txt -------------------------------------------------------------------------------- /Pwn2Win2017/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/extract.py -------------------------------------------------------------------------------- /Pwn2Win2017/netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/netlist.v -------------------------------------------------------------------------------- /Pwn2Win2017/rendernets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/rendernets.py -------------------------------------------------------------------------------- /Pwn2Win2017/rendersegments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/rendersegments.py -------------------------------------------------------------------------------- /Pwn2Win2017/shiftreg_e7f285dccca5788b157d72e7fde31a92ed765c64ec86d56164426b7c1cde1625.gds2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/shiftreg_e7f285dccca5788b157d72e7fde31a92ed765c64ec86d56164426b7c1cde1625.gds2 -------------------------------------------------------------------------------- /Pwn2Win2017/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/Pwn2Win2017/solve.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/README.md -------------------------------------------------------------------------------- /SECCON2016Quals/microcomputer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/SECCON2016Quals/microcomputer/README.md -------------------------------------------------------------------------------- /SECCON2016Quals/microcomputer/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/q3k/ctf/HEAD/SECCON2016Quals/microcomputer/exploit.py --------------------------------------------------------------------------------