├── 01-Python-eval ├── add.py └── exploit.txt ├── 02-SQL-Injection └── vuln.txt ├── 03-Crypto-ECDSA ├── 03-bf.py └── 03-sign.py ├── 04-Web-innerHTML ├── soluce.txt └── web.html ├── 05-zip ├── malicious.zip ├── zipboom.py └── zp.c ├── 06-get-elt-safe ├── 06-vuln.cpp ├── 06-x-oob.py ├── secret.txt └── soluce.txt ├── 07-int └── int.c ├── 08-login ├── login-broken.py └── login.py ├── 09-toctou ├── README ├── bib.txt ├── read.sh ├── secret ├── slow.sh ├── x1.sh └── x2.c ├── 10-crackaddr └── crackaddr.c ├── 11-alarm └── vuln.py ├── 12-yaml ├── challenge.py └── config.yaml └── README.md /01-Python-eval/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/01-Python-eval/add.py -------------------------------------------------------------------------------- /01-Python-eval/exploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/01-Python-eval/exploit.txt -------------------------------------------------------------------------------- /02-SQL-Injection/vuln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/02-SQL-Injection/vuln.txt -------------------------------------------------------------------------------- /03-Crypto-ECDSA/03-bf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/03-Crypto-ECDSA/03-bf.py -------------------------------------------------------------------------------- /03-Crypto-ECDSA/03-sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/03-Crypto-ECDSA/03-sign.py -------------------------------------------------------------------------------- /04-Web-innerHTML/soluce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/04-Web-innerHTML/soluce.txt -------------------------------------------------------------------------------- /04-Web-innerHTML/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/04-Web-innerHTML/web.html -------------------------------------------------------------------------------- /05-zip/malicious.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/05-zip/malicious.zip -------------------------------------------------------------------------------- /05-zip/zipboom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/05-zip/zipboom.py -------------------------------------------------------------------------------- /05-zip/zp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/05-zip/zp.c -------------------------------------------------------------------------------- /06-get-elt-safe/06-vuln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/06-get-elt-safe/06-vuln.cpp -------------------------------------------------------------------------------- /06-get-elt-safe/06-x-oob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/06-get-elt-safe/06-x-oob.py -------------------------------------------------------------------------------- /06-get-elt-safe/secret.txt: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKL 2 | -------------------------------------------------------------------------------- /06-get-elt-safe/soluce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/06-get-elt-safe/soluce.txt -------------------------------------------------------------------------------- /07-int/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/07-int/int.c -------------------------------------------------------------------------------- /08-login/login-broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/08-login/login-broken.py -------------------------------------------------------------------------------- /08-login/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/08-login/login.py -------------------------------------------------------------------------------- /09-toctou/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/README -------------------------------------------------------------------------------- /09-toctou/bib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/bib.txt -------------------------------------------------------------------------------- /09-toctou/read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/read.sh -------------------------------------------------------------------------------- /09-toctou/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/secret -------------------------------------------------------------------------------- /09-toctou/slow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/slow.sh -------------------------------------------------------------------------------- /09-toctou/x1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/x1.sh -------------------------------------------------------------------------------- /09-toctou/x2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/09-toctou/x2.c -------------------------------------------------------------------------------- /10-crackaddr/crackaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/10-crackaddr/crackaddr.c -------------------------------------------------------------------------------- /11-alarm/vuln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/11-alarm/vuln.py -------------------------------------------------------------------------------- /12-yaml/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/12-yaml/challenge.py -------------------------------------------------------------------------------- /12-yaml/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/12-yaml/config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraynal/challenges/HEAD/README.md --------------------------------------------------------------------------------