├── .gitignore ├── README.md ├── baby-pivot ├── Dockerfile ├── Makefile ├── README.md ├── baby-pivot └── contents │ ├── baby-pivot.c │ ├── challenge │ └── flag ├── babys-first-rop-32 ├── Dockerfile ├── Makefile ├── README.md ├── babys-first-rop-32 └── contents │ ├── babys-first-rop-32.c │ ├── challenge │ └── flag ├── babys-first-rop-64 ├── Dockerfile ├── Makefile ├── README.md ├── babys-first-rop-64 └── contents │ ├── babys-first-rop-64.c │ ├── challenge │ └── flag ├── bigpicture ├── Dockerfile ├── Makefile ├── README.md ├── bigpicture ├── bigpicture.c ├── contents │ ├── challenge │ └── flag └── libc.so.6 ├── byoc ├── Dockerfile ├── Makefile ├── README.md ├── byoc ├── contents │ ├── byoc.c │ ├── challenge │ └── flag └── libc.so.6 ├── feedme ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag └── feedme ├── format-your-pivot ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ ├── flag │ └── format-your-pivot.c └── format-your-pivot ├── inst_prof ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag └── inst_prof ├── johns-library ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag └── johns-library ├── mrs_hudson ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag ├── flag └── mrs_hudson ├── one-byte-to-freedom ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ ├── flag │ └── one-byte-to-freedom.c └── one-byte-to-freedom ├── poli_wars ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag └── poli_wars ├── ropasaurusrex ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ ├── flag │ └── run_xinetd.sh ├── libc.so.6 └── ropasaurusrex ├── smashme ├── Dockerfile ├── Makefile ├── README.md ├── contents │ ├── challenge │ └── flag └── smashme ├── splyt ├── README.md └── splyt.tar.gz ├── sql-so-hard ├── Dockerfile ├── Makefile ├── README.md ├── app.js ├── create_postgres_admin_user.sh ├── flag ├── mysql-setup.sh ├── mysql.sql ├── postgres-setup.sh ├── postgres.sql ├── run.sh ├── supervisord-nodejs-app.conf ├── supervisord-postgres.conf ├── supervisord-update-blacklist.conf └── update_blacklist.sh ├── twin-primes ├── README.md └── twin-primes.7z-39a1a147cbf55d4d944f8eacdbdf4ee7a967dd70ef0eaaa0a1cee5c58c641483 ├── vuln-base ├── Dockerfile ├── Makefile └── contents │ ├── challenge │ ├── challenge.conf │ └── flag └── vuln-web-base ├── Dockerfile ├── Makefile ├── README ├── apache_default ├── create_mysql_admin_user.sh ├── my.cnf ├── run.sh ├── start-apache2.sh ├── supervisord-apache2.conf ├── supervisord-mysqld.conf └── website └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | exploit.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/README.md -------------------------------------------------------------------------------- /baby-pivot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/Dockerfile -------------------------------------------------------------------------------- /baby-pivot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/Makefile -------------------------------------------------------------------------------- /baby-pivot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/README.md -------------------------------------------------------------------------------- /baby-pivot/baby-pivot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/baby-pivot -------------------------------------------------------------------------------- /baby-pivot/contents/baby-pivot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/contents/baby-pivot.c -------------------------------------------------------------------------------- /baby-pivot/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/contents/challenge -------------------------------------------------------------------------------- /baby-pivot/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/baby-pivot/contents/flag -------------------------------------------------------------------------------- /babys-first-rop-32/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/Dockerfile -------------------------------------------------------------------------------- /babys-first-rop-32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/Makefile -------------------------------------------------------------------------------- /babys-first-rop-32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/README.md -------------------------------------------------------------------------------- /babys-first-rop-32/babys-first-rop-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/babys-first-rop-32 -------------------------------------------------------------------------------- /babys-first-rop-32/contents/babys-first-rop-32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/contents/babys-first-rop-32.c -------------------------------------------------------------------------------- /babys-first-rop-32/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-32/contents/challenge -------------------------------------------------------------------------------- /babys-first-rop-32/contents/flag: -------------------------------------------------------------------------------- 1 | pwndevils{WE_LIKE_WHAT_YOU_GOT!} 2 | -------------------------------------------------------------------------------- /babys-first-rop-64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/Dockerfile -------------------------------------------------------------------------------- /babys-first-rop-64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/Makefile -------------------------------------------------------------------------------- /babys-first-rop-64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/README.md -------------------------------------------------------------------------------- /babys-first-rop-64/babys-first-rop-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/babys-first-rop-64 -------------------------------------------------------------------------------- /babys-first-rop-64/contents/babys-first-rop-64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/contents/babys-first-rop-64.c -------------------------------------------------------------------------------- /babys-first-rop-64/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/babys-first-rop-64/contents/challenge -------------------------------------------------------------------------------- /babys-first-rop-64/contents/flag: -------------------------------------------------------------------------------- 1 | pwndevils{WE_LIKE_WHAT_YOU_GOT!} 2 | -------------------------------------------------------------------------------- /bigpicture/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/Dockerfile -------------------------------------------------------------------------------- /bigpicture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/Makefile -------------------------------------------------------------------------------- /bigpicture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/README.md -------------------------------------------------------------------------------- /bigpicture/bigpicture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/bigpicture -------------------------------------------------------------------------------- /bigpicture/bigpicture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/bigpicture.c -------------------------------------------------------------------------------- /bigpicture/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/contents/challenge -------------------------------------------------------------------------------- /bigpicture/contents/flag: -------------------------------------------------------------------------------- 1 | PCTF{pWnD3vIlsROPwithTheBeST} 2 | -------------------------------------------------------------------------------- /bigpicture/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/bigpicture/libc.so.6 -------------------------------------------------------------------------------- /byoc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/Dockerfile -------------------------------------------------------------------------------- /byoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/Makefile -------------------------------------------------------------------------------- /byoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/README.md -------------------------------------------------------------------------------- /byoc/byoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/byoc -------------------------------------------------------------------------------- /byoc/contents/byoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/contents/byoc.c -------------------------------------------------------------------------------- /byoc/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/contents/challenge -------------------------------------------------------------------------------- /byoc/contents/flag: -------------------------------------------------------------------------------- 1 | pwndevils{Bring your own cat!} -------------------------------------------------------------------------------- /byoc/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/byoc/libc.so.6 -------------------------------------------------------------------------------- /feedme/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/feedme/Dockerfile -------------------------------------------------------------------------------- /feedme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/feedme/Makefile -------------------------------------------------------------------------------- /feedme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/feedme/README.md -------------------------------------------------------------------------------- /feedme/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/feedme/contents/challenge -------------------------------------------------------------------------------- /feedme/contents/flag: -------------------------------------------------------------------------------- 1 | The flag is: It's too bad! we c0uldn't??! d0 the R0P CHAIN BLIND TOO -------------------------------------------------------------------------------- /feedme/feedme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/feedme/feedme -------------------------------------------------------------------------------- /format-your-pivot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/Dockerfile -------------------------------------------------------------------------------- /format-your-pivot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/Makefile -------------------------------------------------------------------------------- /format-your-pivot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/README.md -------------------------------------------------------------------------------- /format-your-pivot/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/contents/challenge -------------------------------------------------------------------------------- /format-your-pivot/contents/flag: -------------------------------------------------------------------------------- 1 | pwndevils{printf("You %s!\n", "ROP");} 2 | -------------------------------------------------------------------------------- /format-your-pivot/contents/format-your-pivot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/contents/format-your-pivot.c -------------------------------------------------------------------------------- /format-your-pivot/format-your-pivot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/format-your-pivot/format-your-pivot -------------------------------------------------------------------------------- /inst_prof/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/Dockerfile -------------------------------------------------------------------------------- /inst_prof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/Makefile -------------------------------------------------------------------------------- /inst_prof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/README.md -------------------------------------------------------------------------------- /inst_prof/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/contents/challenge -------------------------------------------------------------------------------- /inst_prof/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/contents/flag -------------------------------------------------------------------------------- /inst_prof/inst_prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/inst_prof/inst_prof -------------------------------------------------------------------------------- /johns-library/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/Dockerfile -------------------------------------------------------------------------------- /johns-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/Makefile -------------------------------------------------------------------------------- /johns-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/README.md -------------------------------------------------------------------------------- /johns-library/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/contents/challenge -------------------------------------------------------------------------------- /johns-library/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/contents/flag -------------------------------------------------------------------------------- /johns-library/johns-library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/johns-library/johns-library -------------------------------------------------------------------------------- /mrs_hudson/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/Dockerfile -------------------------------------------------------------------------------- /mrs_hudson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/Makefile -------------------------------------------------------------------------------- /mrs_hudson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/README.md -------------------------------------------------------------------------------- /mrs_hudson/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/contents/challenge -------------------------------------------------------------------------------- /mrs_hudson/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/contents/flag -------------------------------------------------------------------------------- /mrs_hudson/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/flag -------------------------------------------------------------------------------- /mrs_hudson/mrs_hudson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/mrs_hudson/mrs_hudson -------------------------------------------------------------------------------- /one-byte-to-freedom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/Dockerfile -------------------------------------------------------------------------------- /one-byte-to-freedom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/Makefile -------------------------------------------------------------------------------- /one-byte-to-freedom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/README.md -------------------------------------------------------------------------------- /one-byte-to-freedom/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/contents/challenge -------------------------------------------------------------------------------- /one-byte-to-freedom/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/contents/flag -------------------------------------------------------------------------------- /one-byte-to-freedom/contents/one-byte-to-freedom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/contents/one-byte-to-freedom.c -------------------------------------------------------------------------------- /one-byte-to-freedom/one-byte-to-freedom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/one-byte-to-freedom/one-byte-to-freedom -------------------------------------------------------------------------------- /poli_wars/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/poli_wars/Dockerfile -------------------------------------------------------------------------------- /poli_wars/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/poli_wars/Makefile -------------------------------------------------------------------------------- /poli_wars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/poli_wars/README.md -------------------------------------------------------------------------------- /poli_wars/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/poli_wars/contents/challenge -------------------------------------------------------------------------------- /poli_wars/contents/flag: -------------------------------------------------------------------------------- 1 | flag{TODO: Put the real flag here from a walkthrough} -------------------------------------------------------------------------------- /poli_wars/poli_wars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/poli_wars/poli_wars -------------------------------------------------------------------------------- /ropasaurusrex/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/Dockerfile -------------------------------------------------------------------------------- /ropasaurusrex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/Makefile -------------------------------------------------------------------------------- /ropasaurusrex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/README.md -------------------------------------------------------------------------------- /ropasaurusrex/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/contents/challenge -------------------------------------------------------------------------------- /ropasaurusrex/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/contents/flag -------------------------------------------------------------------------------- /ropasaurusrex/contents/run_xinetd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/contents/run_xinetd.sh -------------------------------------------------------------------------------- /ropasaurusrex/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/libc.so.6 -------------------------------------------------------------------------------- /ropasaurusrex/ropasaurusrex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/ropasaurusrex/ropasaurusrex -------------------------------------------------------------------------------- /smashme/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/Dockerfile -------------------------------------------------------------------------------- /smashme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/Makefile -------------------------------------------------------------------------------- /smashme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/README.md -------------------------------------------------------------------------------- /smashme/contents/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/contents/challenge -------------------------------------------------------------------------------- /smashme/contents/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/contents/flag -------------------------------------------------------------------------------- /smashme/smashme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/smashme/smashme -------------------------------------------------------------------------------- /splyt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/splyt/README.md -------------------------------------------------------------------------------- /splyt/splyt.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/splyt/splyt.tar.gz -------------------------------------------------------------------------------- /sql-so-hard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/Dockerfile -------------------------------------------------------------------------------- /sql-so-hard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/Makefile -------------------------------------------------------------------------------- /sql-so-hard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/README.md -------------------------------------------------------------------------------- /sql-so-hard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/app.js -------------------------------------------------------------------------------- /sql-so-hard/create_postgres_admin_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/create_postgres_admin_user.sh -------------------------------------------------------------------------------- /sql-so-hard/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/flag -------------------------------------------------------------------------------- /sql-so-hard/mysql-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/mysql-setup.sh -------------------------------------------------------------------------------- /sql-so-hard/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/mysql.sql -------------------------------------------------------------------------------- /sql-so-hard/postgres-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/postgres-setup.sh -------------------------------------------------------------------------------- /sql-so-hard/postgres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/postgres.sql -------------------------------------------------------------------------------- /sql-so-hard/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/run.sh -------------------------------------------------------------------------------- /sql-so-hard/supervisord-nodejs-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/supervisord-nodejs-app.conf -------------------------------------------------------------------------------- /sql-so-hard/supervisord-postgres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/supervisord-postgres.conf -------------------------------------------------------------------------------- /sql-so-hard/supervisord-update-blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/supervisord-update-blacklist.conf -------------------------------------------------------------------------------- /sql-so-hard/update_blacklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/sql-so-hard/update_blacklist.sh -------------------------------------------------------------------------------- /twin-primes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/twin-primes/README.md -------------------------------------------------------------------------------- /twin-primes/twin-primes.7z-39a1a147cbf55d4d944f8eacdbdf4ee7a967dd70ef0eaaa0a1cee5c58c641483: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/twin-primes/twin-primes.7z-39a1a147cbf55d4d944f8eacdbdf4ee7a967dd70ef0eaaa0a1cee5c58c641483 -------------------------------------------------------------------------------- /vuln-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-base/Dockerfile -------------------------------------------------------------------------------- /vuln-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-base/Makefile -------------------------------------------------------------------------------- /vuln-base/contents/challenge: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "I am the base image, I'm not vulnerable!" 4 | -------------------------------------------------------------------------------- /vuln-base/contents/challenge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-base/contents/challenge.conf -------------------------------------------------------------------------------- /vuln-base/contents/flag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuln-web-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/Dockerfile -------------------------------------------------------------------------------- /vuln-web-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/Makefile -------------------------------------------------------------------------------- /vuln-web-base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/README -------------------------------------------------------------------------------- /vuln-web-base/apache_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/apache_default -------------------------------------------------------------------------------- /vuln-web-base/create_mysql_admin_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/create_mysql_admin_user.sh -------------------------------------------------------------------------------- /vuln-web-base/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/my.cnf -------------------------------------------------------------------------------- /vuln-web-base/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/run.sh -------------------------------------------------------------------------------- /vuln-web-base/start-apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/start-apache2.sh -------------------------------------------------------------------------------- /vuln-web-base/supervisord-apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/supervisord-apache2.conf -------------------------------------------------------------------------------- /vuln-web-base/supervisord-mysqld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdoupe/ctf-training/HEAD/vuln-web-base/supervisord-mysqld.conf -------------------------------------------------------------------------------- /vuln-web-base/website/index.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------