├── README.md ├── crypto ├── 2FUN │ ├── 2fun.py │ ├── 2fun_solve.py │ ├── README.md │ └── secret.py ├── GenuineCounterMode │ ├── README.md │ ├── dockerfile │ ├── secret.py │ ├── server.py │ └── solve.py ├── README.md └── Singular │ └── README.md ├── harsha.pub ├── jai.pub ├── misc ├── README.md ├── captcha_forest │ ├── README.MD │ ├── captcha.py │ ├── dockerfile │ ├── flag.txt │ └── static │ │ ├── char(65).png │ │ ├── char(66).png │ │ ├── char(67).png │ │ ├── char(68).png │ │ ├── char(69).png │ │ ├── char(70).png │ │ ├── char(71).png │ │ ├── char(72).png │ │ ├── char(73).png │ │ ├── char(74).png │ │ ├── char(75).png │ │ ├── char(76).png │ │ ├── char(77).png │ │ ├── char(78).png │ │ ├── char(79).png │ │ ├── char(80).png │ │ ├── char(81).png │ │ ├── char(82).png │ │ ├── char(83).png │ │ ├── char(84).png │ │ ├── char(85).png │ │ ├── char(86).png │ │ ├── char(87).png │ │ ├── char(88).png │ │ ├── char(89).png │ │ ├── char(90).png │ │ └── chars.zip ├── captcha_forest_harder │ ├── README.MD │ ├── captcha.py │ ├── captcha.py.ml_sol │ ├── dockerfile │ ├── flag.txt │ └── static │ │ ├── char(65).png │ │ ├── char(66).png │ │ ├── char(67).png │ │ ├── char(68).png │ │ ├── char(69).png │ │ ├── char(70).png │ │ ├── char(71).png │ │ ├── char(72).png │ │ ├── char(73).png │ │ ├── char(74).png │ │ ├── char(75).png │ │ ├── char(76).png │ │ ├── char(77).png │ │ ├── char(78).png │ │ ├── char(79).png │ │ ├── char(80).png │ │ ├── char(81).png │ │ ├── char(82).png │ │ ├── char(83).png │ │ ├── char(84).png │ │ ├── char(85).png │ │ ├── char(86).png │ │ ├── char(87).png │ │ ├── char(88).png │ │ ├── char(89).png │ │ ├── char(90).png │ │ └── chars.zip └── cat │ ├── README.md │ └── final ├── pwn ├── README.md ├── babypwn │ ├── README.MD │ ├── dist │ │ ├── challenge │ │ └── flag │ ├── dockerfile │ └── src │ │ ├── challenge.c │ │ └── makefile ├── easyshell │ ├── README.md │ ├── dockerfile │ ├── flag │ ├── gg │ └── gg.c ├── hackim_shop │ ├── README.MD │ ├── dist │ │ ├── challenge │ │ └── flag │ ├── dockerfile │ └── src │ │ ├── challenge.c │ │ └── makefile ├── peasyshell │ ├── README.md │ ├── dockerfile │ ├── flag │ ├── gg │ └── gg.c └── tudutudututu │ ├── README.MD │ ├── dist │ ├── challenge │ └── flag │ ├── dockerfile │ └── src │ ├── challenge.c │ └── makefile ├── r00t3r.pub ├── re ├── README.md ├── c0mpute │ ├── README.md │ ├── dist │ │ ├── compute │ │ └── obj │ │ │ └── alpha.bin │ ├── solution │ │ ├── dis.sh │ │ └── oclobj.bin │ └── src │ │ ├── Makefile │ │ ├── alpha.cl │ │ └── main.c ├── dr-owl │ ├── README.md │ ├── dist │ │ └── dr-owl │ └── src │ │ ├── dr-owl.c │ │ └── dr-owl.scm ├── obfusc8_much │ ├── README.md │ ├── dist │ │ └── dist │ └── src │ │ └── gg │ │ ├── CMakeLists.txt │ │ ├── ggPass.cpp │ │ ├── obfuscated.dot │ │ ├── obfuscated.png │ │ ├── original.dot │ │ ├── original.png │ │ └── testPass │ │ ├── Makefile │ │ ├── dist.c │ │ ├── genf.py │ │ └── test.c ├── rev3al │ ├── README.md │ ├── dist │ │ ├── chal.o.1 │ │ ├── chal.o.2 │ │ └── vm │ ├── solution │ │ ├── makefile │ │ ├── makefile.rules │ │ ├── obj-intel64 │ │ │ ├── reveal.o │ │ │ └── reveal.so │ │ ├── reveal.cpp │ │ └── sol.py │ └── src │ │ ├── Makefile │ │ ├── assembler.py │ │ ├── chal.s.1 │ │ ├── chal.s.2 │ │ └── vm.cpp └── wond3rw4ll │ ├── README.md │ ├── dist │ └── wonderwall │ ├── solution │ ├── Makefile │ ├── time_machine.cpp │ └── time_machine.so │ └── src │ ├── Makefile │ └── wonderwall.ml ├── scoreboard.json ├── siddhu.pub ├── sudhackar.pub └── web ├── README.md ├── credz ├── Dockerfile ├── README.MD ├── apache-config.conf ├── app │ ├── fea24a3a981cb8aa898dfbf30ccb4196 │ │ ├── admin.php │ │ ├── index.php │ │ └── pack-9d392b4893d01af61c5712fdf5aafd8f24d06a10.pack │ ├── index.html │ ├── js │ │ └── fps.js │ ├── login.php │ └── trackuser.php ├── docker-compose.yml ├── exploit │ └── fps.js └── start.sh ├── escape ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.MD ├── docker-compose.yml ├── exploit.burp ├── iamnotwhatyouthink ├── index.html ├── package-lock.json ├── package.json ├── server.js └── start.sh ├── mime_checkr ├── README.MD ├── apache │ ├── Dockerfile │ ├── apache-config.conf │ ├── app │ │ ├── getmime.bak │ │ ├── getmime.php │ │ ├── index.html │ │ ├── upload.php │ │ └── uploads │ │ │ └── index.html │ └── start.sh ├── crypto │ ├── Dockerfile │ ├── app │ │ ├── def.py │ │ └── main.py │ ├── logs.sh │ └── start.sh ├── docker-compose.yml ├── exploit │ ├── decode.py │ ├── img.php │ ├── phar.jpeg │ └── phar2.jpeg └── start.sh ├── proto ├── .dockerignore ├── .gitignore ├── 4f34685f64ec9b82ea014bda3274b0dfviews │ └── index.html ├── Dockerfile ├── README.MD ├── docker-compose.yml ├── mongo │ ├── Dockerfile │ ├── Dockerfile.bak │ ├── files │ │ ├── posts.bson │ │ └── posts.metadata.json │ └── run.sh ├── package-lock.json ├── package.json ├── server.js ├── start.sh └── views │ └── index.html └── rvf ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.MD ├── bug.js ├── docker-compose.yml ├── index.html ├── nodesi ├── README.md ├── index.js ├── lib │ ├── allowed-hosts.js │ ├── data-provider.js │ ├── esi.js │ ├── esi.js.bak │ ├── logger.js │ └── middleware.js ├── package.json └── perf.js ├── package-lock.json ├── package.json ├── server.js └── start.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/README.md -------------------------------------------------------------------------------- /crypto/2FUN/2fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/2FUN/2fun.py -------------------------------------------------------------------------------- /crypto/2FUN/2fun_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/2FUN/2fun_solve.py -------------------------------------------------------------------------------- /crypto/2FUN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/2FUN/README.md -------------------------------------------------------------------------------- /crypto/2FUN/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/2FUN/secret.py -------------------------------------------------------------------------------- /crypto/GenuineCounterMode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/GenuineCounterMode/README.md -------------------------------------------------------------------------------- /crypto/GenuineCounterMode/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/GenuineCounterMode/dockerfile -------------------------------------------------------------------------------- /crypto/GenuineCounterMode/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/GenuineCounterMode/secret.py -------------------------------------------------------------------------------- /crypto/GenuineCounterMode/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/GenuineCounterMode/server.py -------------------------------------------------------------------------------- /crypto/GenuineCounterMode/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/GenuineCounterMode/solve.py -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/Singular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/crypto/Singular/README.md -------------------------------------------------------------------------------- /harsha.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/harsha.pub -------------------------------------------------------------------------------- /jai.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/jai.pub -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/captcha_forest/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/README.MD -------------------------------------------------------------------------------- /misc/captcha_forest/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/captcha.py -------------------------------------------------------------------------------- /misc/captcha_forest/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/dockerfile -------------------------------------------------------------------------------- /misc/captcha_forest/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/flag.txt -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(65).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(65).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(66).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(66).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(67).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(67).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(68).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(68).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(69).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(69).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(70).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(70).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(71).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(71).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(72).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(72).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(73).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(73).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(74).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(74).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(75).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(75).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(76).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(76).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(77).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(77).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(78).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(78).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(79).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(79).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(80).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(80).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(81).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(81).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(82).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(82).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(83).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(83).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(84).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(84).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(85).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(85).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(86).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(86).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(87).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(87).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(88).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(88).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(89).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(89).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/char(90).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/char(90).png -------------------------------------------------------------------------------- /misc/captcha_forest/static/chars.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest/static/chars.zip -------------------------------------------------------------------------------- /misc/captcha_forest_harder/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/README.MD -------------------------------------------------------------------------------- /misc/captcha_forest_harder/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/captcha.py -------------------------------------------------------------------------------- /misc/captcha_forest_harder/captcha.py.ml_sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/captcha.py.ml_sol -------------------------------------------------------------------------------- /misc/captcha_forest_harder/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/dockerfile -------------------------------------------------------------------------------- /misc/captcha_forest_harder/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/flag.txt -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(65).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(65).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(66).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(66).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(67).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(67).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(68).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(68).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(69).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(69).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(70).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(70).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(71).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(71).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(72).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(72).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(73).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(73).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(74).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(74).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(75).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(75).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(76).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(76).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(77).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(77).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(78).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(78).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(79).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(79).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(80).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(80).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(81).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(81).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(82).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(82).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(83).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(83).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(84).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(84).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(85).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(85).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(86).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(86).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(87).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(87).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(88).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(88).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(89).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(89).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/char(90).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/char(90).png -------------------------------------------------------------------------------- /misc/captcha_forest_harder/static/chars.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/captcha_forest_harder/static/chars.zip -------------------------------------------------------------------------------- /misc/cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/cat/README.md -------------------------------------------------------------------------------- /misc/cat/final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/misc/cat/final -------------------------------------------------------------------------------- /pwn/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/babypwn/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/babypwn/README.MD -------------------------------------------------------------------------------- /pwn/babypwn/dist/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/babypwn/dist/challenge -------------------------------------------------------------------------------- /pwn/babypwn/dist/flag: -------------------------------------------------------------------------------- 1 | hackim19{h0w_d1d_y0u_g37_th4t_c00k13?!!?} 2 | -------------------------------------------------------------------------------- /pwn/babypwn/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/babypwn/dockerfile -------------------------------------------------------------------------------- /pwn/babypwn/src/challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/babypwn/src/challenge.c -------------------------------------------------------------------------------- /pwn/babypwn/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/babypwn/src/makefile -------------------------------------------------------------------------------- /pwn/easyshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/easyshell/README.md -------------------------------------------------------------------------------- /pwn/easyshell/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/easyshell/dockerfile -------------------------------------------------------------------------------- /pwn/easyshell/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/easyshell/flag -------------------------------------------------------------------------------- /pwn/easyshell/gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/easyshell/gg -------------------------------------------------------------------------------- /pwn/easyshell/gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/easyshell/gg.c -------------------------------------------------------------------------------- /pwn/hackim_shop/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/hackim_shop/README.MD -------------------------------------------------------------------------------- /pwn/hackim_shop/dist/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/hackim_shop/dist/challenge -------------------------------------------------------------------------------- /pwn/hackim_shop/dist/flag: -------------------------------------------------------------------------------- 1 | hackim19{h0p3_7ha7_Uaf_4nd_f0rm4ts_w3r3_fun_4_you} 2 | -------------------------------------------------------------------------------- /pwn/hackim_shop/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/hackim_shop/dockerfile -------------------------------------------------------------------------------- /pwn/hackim_shop/src/challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/hackim_shop/src/challenge.c -------------------------------------------------------------------------------- /pwn/hackim_shop/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/hackim_shop/src/makefile -------------------------------------------------------------------------------- /pwn/peasyshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/peasyshell/README.md -------------------------------------------------------------------------------- /pwn/peasyshell/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/peasyshell/dockerfile -------------------------------------------------------------------------------- /pwn/peasyshell/flag: -------------------------------------------------------------------------------- 1 | hackim19{maybe_this_is_where_you_stop_getting_easy_shells} -------------------------------------------------------------------------------- /pwn/peasyshell/gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/peasyshell/gg -------------------------------------------------------------------------------- /pwn/peasyshell/gg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/peasyshell/gg.c -------------------------------------------------------------------------------- /pwn/tudutudututu/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/tudutudututu/README.MD -------------------------------------------------------------------------------- /pwn/tudutudututu/dist/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/tudutudututu/dist/challenge -------------------------------------------------------------------------------- /pwn/tudutudututu/dist/flag: -------------------------------------------------------------------------------- 1 | hackim19{D0nt_f0r93t_t0_1ni7i4liz3} 2 | -------------------------------------------------------------------------------- /pwn/tudutudututu/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/tudutudututu/dockerfile -------------------------------------------------------------------------------- /pwn/tudutudututu/src/challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/tudutudututu/src/challenge.c -------------------------------------------------------------------------------- /pwn/tudutudututu/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/pwn/tudutudututu/src/makefile -------------------------------------------------------------------------------- /r00t3r.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/r00t3r.pub -------------------------------------------------------------------------------- /re/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /re/c0mpute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/README.md -------------------------------------------------------------------------------- /re/c0mpute/dist/compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/dist/compute -------------------------------------------------------------------------------- /re/c0mpute/dist/obj/alpha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/dist/obj/alpha.bin -------------------------------------------------------------------------------- /re/c0mpute/solution/dis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/solution/dis.sh -------------------------------------------------------------------------------- /re/c0mpute/solution/oclobj.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/solution/oclobj.bin -------------------------------------------------------------------------------- /re/c0mpute/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/src/Makefile -------------------------------------------------------------------------------- /re/c0mpute/src/alpha.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/src/alpha.cl -------------------------------------------------------------------------------- /re/c0mpute/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/c0mpute/src/main.c -------------------------------------------------------------------------------- /re/dr-owl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/dr-owl/README.md -------------------------------------------------------------------------------- /re/dr-owl/dist/dr-owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/dr-owl/dist/dr-owl -------------------------------------------------------------------------------- /re/dr-owl/src/dr-owl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/dr-owl/src/dr-owl.c -------------------------------------------------------------------------------- /re/dr-owl/src/dr-owl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/dr-owl/src/dr-owl.scm -------------------------------------------------------------------------------- /re/obfusc8_much/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/README.md -------------------------------------------------------------------------------- /re/obfusc8_much/dist/dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/dist/dist -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/CMakeLists.txt -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/ggPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/ggPass.cpp -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/obfuscated.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/obfuscated.dot -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/obfuscated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/obfuscated.png -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/original.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/original.dot -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/original.png -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/testPass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/testPass/Makefile -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/testPass/dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/testPass/dist.c -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/testPass/genf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/testPass/genf.py -------------------------------------------------------------------------------- /re/obfusc8_much/src/gg/testPass/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/obfusc8_much/src/gg/testPass/test.c -------------------------------------------------------------------------------- /re/rev3al/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/README.md -------------------------------------------------------------------------------- /re/rev3al/dist/chal.o.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/dist/chal.o.1 -------------------------------------------------------------------------------- /re/rev3al/dist/chal.o.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/dist/chal.o.2 -------------------------------------------------------------------------------- /re/rev3al/dist/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/dist/vm -------------------------------------------------------------------------------- /re/rev3al/solution/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/makefile -------------------------------------------------------------------------------- /re/rev3al/solution/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/makefile.rules -------------------------------------------------------------------------------- /re/rev3al/solution/obj-intel64/reveal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/obj-intel64/reveal.o -------------------------------------------------------------------------------- /re/rev3al/solution/obj-intel64/reveal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/obj-intel64/reveal.so -------------------------------------------------------------------------------- /re/rev3al/solution/reveal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/reveal.cpp -------------------------------------------------------------------------------- /re/rev3al/solution/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/solution/sol.py -------------------------------------------------------------------------------- /re/rev3al/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/src/Makefile -------------------------------------------------------------------------------- /re/rev3al/src/assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/src/assembler.py -------------------------------------------------------------------------------- /re/rev3al/src/chal.s.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/src/chal.s.1 -------------------------------------------------------------------------------- /re/rev3al/src/chal.s.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/src/chal.s.2 -------------------------------------------------------------------------------- /re/rev3al/src/vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/rev3al/src/vm.cpp -------------------------------------------------------------------------------- /re/wond3rw4ll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/README.md -------------------------------------------------------------------------------- /re/wond3rw4ll/dist/wonderwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/dist/wonderwall -------------------------------------------------------------------------------- /re/wond3rw4ll/solution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/solution/Makefile -------------------------------------------------------------------------------- /re/wond3rw4ll/solution/time_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/solution/time_machine.cpp -------------------------------------------------------------------------------- /re/wond3rw4ll/solution/time_machine.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/solution/time_machine.so -------------------------------------------------------------------------------- /re/wond3rw4ll/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/src/Makefile -------------------------------------------------------------------------------- /re/wond3rw4ll/src/wonderwall.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/re/wond3rw4ll/src/wonderwall.ml -------------------------------------------------------------------------------- /scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/scoreboard.json -------------------------------------------------------------------------------- /siddhu.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/siddhu.pub -------------------------------------------------------------------------------- /sudhackar.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/sudhackar.pub -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/credz/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/Dockerfile -------------------------------------------------------------------------------- /web/credz/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/README.MD -------------------------------------------------------------------------------- /web/credz/apache-config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/apache-config.conf -------------------------------------------------------------------------------- /web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/admin.php -------------------------------------------------------------------------------- /web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/index.php -------------------------------------------------------------------------------- /web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/pack-9d392b4893d01af61c5712fdf5aafd8f24d06a10.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/fea24a3a981cb8aa898dfbf30ccb4196/pack-9d392b4893d01af61c5712fdf5aafd8f24d06a10.pack -------------------------------------------------------------------------------- /web/credz/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/index.html -------------------------------------------------------------------------------- /web/credz/app/js/fps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/js/fps.js -------------------------------------------------------------------------------- /web/credz/app/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/login.php -------------------------------------------------------------------------------- /web/credz/app/trackuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/app/trackuser.php -------------------------------------------------------------------------------- /web/credz/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/docker-compose.yml -------------------------------------------------------------------------------- /web/credz/exploit/fps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/exploit/fps.js -------------------------------------------------------------------------------- /web/credz/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/credz/start.sh -------------------------------------------------------------------------------- /web/escape/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | README.MD 4 | exploit.burp 5 | -------------------------------------------------------------------------------- /web/escape/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/.gitignore -------------------------------------------------------------------------------- /web/escape/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/Dockerfile -------------------------------------------------------------------------------- /web/escape/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/README.MD -------------------------------------------------------------------------------- /web/escape/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/docker-compose.yml -------------------------------------------------------------------------------- /web/escape/exploit.burp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/exploit.burp -------------------------------------------------------------------------------- /web/escape/iamnotwhatyouthink: -------------------------------------------------------------------------------- 1 | hackim19{S@ndbox_0_h4cker_1} -------------------------------------------------------------------------------- /web/escape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/index.html -------------------------------------------------------------------------------- /web/escape/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/package-lock.json -------------------------------------------------------------------------------- /web/escape/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/package.json -------------------------------------------------------------------------------- /web/escape/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/server.js -------------------------------------------------------------------------------- /web/escape/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/escape/start.sh -------------------------------------------------------------------------------- /web/mime_checkr/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/README.MD -------------------------------------------------------------------------------- /web/mime_checkr/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/Dockerfile -------------------------------------------------------------------------------- /web/mime_checkr/apache/apache-config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/apache-config.conf -------------------------------------------------------------------------------- /web/mime_checkr/apache/app/getmime.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/app/getmime.bak -------------------------------------------------------------------------------- /web/mime_checkr/apache/app/getmime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/app/getmime.php -------------------------------------------------------------------------------- /web/mime_checkr/apache/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/app/index.html -------------------------------------------------------------------------------- /web/mime_checkr/apache/app/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/app/upload.php -------------------------------------------------------------------------------- /web/mime_checkr/apache/app/uploads/index.html: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /web/mime_checkr/apache/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/apache/start.sh -------------------------------------------------------------------------------- /web/mime_checkr/crypto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/crypto/Dockerfile -------------------------------------------------------------------------------- /web/mime_checkr/crypto/app/def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/crypto/app/def.py -------------------------------------------------------------------------------- /web/mime_checkr/crypto/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/crypto/app/main.py -------------------------------------------------------------------------------- /web/mime_checkr/crypto/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/crypto/logs.sh -------------------------------------------------------------------------------- /web/mime_checkr/crypto/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/crypto/start.sh -------------------------------------------------------------------------------- /web/mime_checkr/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/docker-compose.yml -------------------------------------------------------------------------------- /web/mime_checkr/exploit/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/exploit/decode.py -------------------------------------------------------------------------------- /web/mime_checkr/exploit/img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/exploit/img.php -------------------------------------------------------------------------------- /web/mime_checkr/exploit/phar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/exploit/phar.jpeg -------------------------------------------------------------------------------- /web/mime_checkr/exploit/phar2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/exploit/phar2.jpeg -------------------------------------------------------------------------------- /web/mime_checkr/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/mime_checkr/start.sh -------------------------------------------------------------------------------- /web/proto/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | README.MD 4 | -------------------------------------------------------------------------------- /web/proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/.gitignore -------------------------------------------------------------------------------- /web/proto/4f34685f64ec9b82ea014bda3274b0dfviews/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/4f34685f64ec9b82ea014bda3274b0dfviews/index.html -------------------------------------------------------------------------------- /web/proto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/Dockerfile -------------------------------------------------------------------------------- /web/proto/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/README.MD -------------------------------------------------------------------------------- /web/proto/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/docker-compose.yml -------------------------------------------------------------------------------- /web/proto/mongo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/mongo/Dockerfile -------------------------------------------------------------------------------- /web/proto/mongo/Dockerfile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/mongo/Dockerfile.bak -------------------------------------------------------------------------------- /web/proto/mongo/files/posts.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/mongo/files/posts.bson -------------------------------------------------------------------------------- /web/proto/mongo/files/posts.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/mongo/files/posts.metadata.json -------------------------------------------------------------------------------- /web/proto/mongo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/mongo/run.sh -------------------------------------------------------------------------------- /web/proto/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/package-lock.json -------------------------------------------------------------------------------- /web/proto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/package.json -------------------------------------------------------------------------------- /web/proto/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/server.js -------------------------------------------------------------------------------- /web/proto/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/start.sh -------------------------------------------------------------------------------- /web/proto/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/proto/views/index.html -------------------------------------------------------------------------------- /web/rvf/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | README.MD 4 | exploit.burp 5 | -------------------------------------------------------------------------------- /web/rvf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/.gitignore -------------------------------------------------------------------------------- /web/rvf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/Dockerfile -------------------------------------------------------------------------------- /web/rvf/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/README.MD -------------------------------------------------------------------------------- /web/rvf/bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/bug.js -------------------------------------------------------------------------------- /web/rvf/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/docker-compose.yml -------------------------------------------------------------------------------- /web/rvf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/index.html -------------------------------------------------------------------------------- /web/rvf/nodesi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/README.md -------------------------------------------------------------------------------- /web/rvf/nodesi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/index.js -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/allowed-hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/allowed-hosts.js -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/data-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/data-provider.js -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/esi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/esi.js -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/esi.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/esi.js.bak -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/logger.js -------------------------------------------------------------------------------- /web/rvf/nodesi/lib/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/lib/middleware.js -------------------------------------------------------------------------------- /web/rvf/nodesi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/package.json -------------------------------------------------------------------------------- /web/rvf/nodesi/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/nodesi/perf.js -------------------------------------------------------------------------------- /web/rvf/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/package-lock.json -------------------------------------------------------------------------------- /web/rvf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/package.json -------------------------------------------------------------------------------- /web/rvf/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/server.js -------------------------------------------------------------------------------- /web/rvf/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullcon/hackim-2019/HEAD/web/rvf/start.sh --------------------------------------------------------------------------------