├── README.md ├── ctf.yml ├── geddy ├── Dockerfile └── run.sh ├── install.sh ├── jenkins └── Dockerfile ├── logviewer ├── 300 │ ├── fozoxBLIh_flag.txt │ ├── index.php │ ├── js │ │ ├── html5.js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.min.js │ │ ├── json2.js │ │ └── main.js │ ├── log01.log │ ├── log02.log │ ├── log03.log │ └── log04.log ├── Dockerfile ├── evrclient ├── lol.txt └── sudoers ├── monitor.sh ├── printf ├── Dockerfile ├── chal.c ├── elogin ├── flag__.txt ├── services └── sudoers ├── restart.sh ├── sqli ├── 404.php ├── Dockerfile ├── LICENSE ├── README.md ├── README_.txt ├── apache_default ├── create_mysql_admin_user.sh ├── crontab ├── docker_init.sh ├── docker_restart.sh ├── docker_stop.sh ├── flag.txt ├── index.php ├── my.cnf ├── run.sh ├── start-apache2.sh ├── start-mysqld.sh ├── sudoers ├── supervisord-apache2.conf ├── supervisord-mysqld.conf ├── sys-auto.zip ├── sys-auto │ ├── sys-auto │ └── tasks │ │ └── validate_shadow.rb └── tutum.yml ├── start.sh ├── stop.sh ├── tcmanager ├── Dockerfile ├── apache-tomcat-7.0.55.tar.gz ├── create_tomcat_admin_user.sh ├── moar └── run.sh └── xxe ├── Dockerfile ├── README.md ├── docker_init.sh ├── docker_restart.sh ├── docker_stop.sh ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── xakcop │ │ └── xxe │ │ ├── Msg.java │ │ └── MsgHandler.java │ └── webapp │ ├── META-INF │ └── MANIFEST.MF │ └── WEB-INF │ └── web.xml └── target └── classes └── com └── xakcop └── xxe ├── Msg.class └── MsgHandler.class /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/README.md -------------------------------------------------------------------------------- /ctf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/ctf.yml -------------------------------------------------------------------------------- /geddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/geddy/Dockerfile -------------------------------------------------------------------------------- /geddy/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd eversec && geddy 3 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/install.sh -------------------------------------------------------------------------------- /jenkins/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/jenkins/Dockerfile -------------------------------------------------------------------------------- /logviewer/300/fozoxBLIh_flag.txt: -------------------------------------------------------------------------------- 1 | flag => 7ffdefbc30babb0dfb49739342801e0c 2 | -------------------------------------------------------------------------------- /logviewer/300/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/index.php -------------------------------------------------------------------------------- /logviewer/300/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/js/html5.js -------------------------------------------------------------------------------- /logviewer/300/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /logviewer/300/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/js/jquery.min.js -------------------------------------------------------------------------------- /logviewer/300/js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/js/json2.js -------------------------------------------------------------------------------- /logviewer/300/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/js/main.js -------------------------------------------------------------------------------- /logviewer/300/log01.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/log01.log -------------------------------------------------------------------------------- /logviewer/300/log02.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/log02.log -------------------------------------------------------------------------------- /logviewer/300/log03.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/log03.log -------------------------------------------------------------------------------- /logviewer/300/log04.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/300/log04.log -------------------------------------------------------------------------------- /logviewer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/Dockerfile -------------------------------------------------------------------------------- /logviewer/evrclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/evrclient -------------------------------------------------------------------------------- /logviewer/lol.txt: -------------------------------------------------------------------------------- 1 | EvrS3cWuzK00l41NiGh7 2 | -------------------------------------------------------------------------------- /logviewer/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/logviewer/sudoers -------------------------------------------------------------------------------- /monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/monitor.sh -------------------------------------------------------------------------------- /printf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/printf/Dockerfile -------------------------------------------------------------------------------- /printf/chal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/printf/chal.c -------------------------------------------------------------------------------- /printf/elogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/printf/elogin -------------------------------------------------------------------------------- /printf/flag__.txt: -------------------------------------------------------------------------------- 1 | 3nd$3r3N4d1ng 2 | -------------------------------------------------------------------------------- /printf/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/printf/services -------------------------------------------------------------------------------- /printf/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/printf/sudoers -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/restart.sh -------------------------------------------------------------------------------- /sqli/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/404.php -------------------------------------------------------------------------------- /sqli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/Dockerfile -------------------------------------------------------------------------------- /sqli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/LICENSE -------------------------------------------------------------------------------- /sqli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/README.md -------------------------------------------------------------------------------- /sqli/README_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/README_.txt -------------------------------------------------------------------------------- /sqli/apache_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/apache_default -------------------------------------------------------------------------------- /sqli/create_mysql_admin_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/create_mysql_admin_user.sh -------------------------------------------------------------------------------- /sqli/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/crontab -------------------------------------------------------------------------------- /sqli/docker_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/docker_init.sh -------------------------------------------------------------------------------- /sqli/docker_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/docker_restart.sh -------------------------------------------------------------------------------- /sqli/docker_stop.sh: -------------------------------------------------------------------------------- 1 | sudo docker rm -f sqlichal 2 | -------------------------------------------------------------------------------- /sqli/flag.txt: -------------------------------------------------------------------------------- 1 | C@r1ng(ab0utS3cur1ty)iSCr33py 2 | -------------------------------------------------------------------------------- /sqli/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/index.php -------------------------------------------------------------------------------- /sqli/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/my.cnf -------------------------------------------------------------------------------- /sqli/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/run.sh -------------------------------------------------------------------------------- /sqli/start-apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/start-apache2.sh -------------------------------------------------------------------------------- /sqli/start-mysqld.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec mysqld_safe 3 | -------------------------------------------------------------------------------- /sqli/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/sudoers -------------------------------------------------------------------------------- /sqli/supervisord-apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/supervisord-apache2.conf -------------------------------------------------------------------------------- /sqli/supervisord-mysqld.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/supervisord-mysqld.conf -------------------------------------------------------------------------------- /sqli/sys-auto.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/sys-auto.zip -------------------------------------------------------------------------------- /sqli/sys-auto/sys-auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/sys-auto/sys-auto -------------------------------------------------------------------------------- /sqli/sys-auto/tasks/validate_shadow.rb: -------------------------------------------------------------------------------- 1 | system("/usr/bin/md5sum /etc/shadow") 2 | -------------------------------------------------------------------------------- /sqli/tutum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/sqli/tutum.yml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/stop.sh -------------------------------------------------------------------------------- /tcmanager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/tcmanager/Dockerfile -------------------------------------------------------------------------------- /tcmanager/apache-tomcat-7.0.55.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/tcmanager/apache-tomcat-7.0.55.tar.gz -------------------------------------------------------------------------------- /tcmanager/create_tomcat_admin_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/tcmanager/create_tomcat_admin_user.sh -------------------------------------------------------------------------------- /tcmanager/moar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/tcmanager/moar -------------------------------------------------------------------------------- /tcmanager/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/tcmanager/run.sh -------------------------------------------------------------------------------- /xxe/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/Dockerfile -------------------------------------------------------------------------------- /xxe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/README.md -------------------------------------------------------------------------------- /xxe/docker_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/docker_init.sh -------------------------------------------------------------------------------- /xxe/docker_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/docker_restart.sh -------------------------------------------------------------------------------- /xxe/docker_stop.sh: -------------------------------------------------------------------------------- 1 | sudo docker rm -f xxechal 2 | -------------------------------------------------------------------------------- /xxe/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/pom.xml -------------------------------------------------------------------------------- /xxe/src/main/java/com/xakcop/xxe/Msg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/src/main/java/com/xakcop/xxe/Msg.java -------------------------------------------------------------------------------- /xxe/src/main/java/com/xakcop/xxe/MsgHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/src/main/java/com/xakcop/xxe/MsgHandler.java -------------------------------------------------------------------------------- /xxe/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /xxe/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /xxe/target/classes/com/xakcop/xxe/Msg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/target/classes/com/xakcop/xxe/Msg.class -------------------------------------------------------------------------------- /xxe/target/classes/com/xakcop/xxe/MsgHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabemarshall/microctfs/HEAD/xxe/target/classes/com/xakcop/xxe/MsgHandler.class --------------------------------------------------------------------------------