├── Crypto+Python ├── Dockerfile ├── ctf.xinetd ├── docker-compose.yml ├── files │ ├── CBC.py │ └── flag.txt ├── requirements.txt └── start.sh ├── Pwn ├── Dockerfile ├── ctf.xinetd ├── docker-compose.yml ├── files │ ├── badchars │ └── libbadchars.so └── start.sh ├── README.md ├── Web+GoLang ├── Dockerfile ├── docker-compose.yml ├── files │ ├── flag.txt │ └── main.go └── start.sh ├── Web+PHP+MySQL ├── Dockerfile ├── database.sql ├── db.inc.php ├── docker-compose.yml ├── index.php └── start.sh ├── Web+PHP+Pwn ├── Dockerfile ├── docker-compose.yml ├── docker-stuff │ ├── default │ ├── readflag │ └── www.conf ├── flag.txt ├── index.php └── start.sh ├── Web+PHP ├── Dockerfile ├── docker-compose.yml ├── flag.php ├── index.php └── start.sh ├── Web+Python+Flask ├── Dockerfile ├── docker-compose.yml ├── files │ ├── app.py │ ├── flag.txt │ ├── static │ │ ├── css │ │ │ ├── grid.css │ │ │ ├── ress.min.css │ │ │ └── style.css │ │ └── img │ │ │ └── ramen.jpg │ └── templates │ │ └── index.html ├── requirements.txt └── start.sh ├── Web+Python+aiohttp ├── Dockerfile ├── docker-compose.yml ├── files │ ├── app.py │ ├── flag.txt │ └── server.py ├── requirements.txt └── start.sh └── Web ├── Dockerfile ├── app └── index.html ├── docker-compose.yml └── start.sh /Crypto+Python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/Dockerfile -------------------------------------------------------------------------------- /Crypto+Python/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/ctf.xinetd -------------------------------------------------------------------------------- /Crypto+Python/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/docker-compose.yml -------------------------------------------------------------------------------- /Crypto+Python/files/CBC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/files/CBC.py -------------------------------------------------------------------------------- /Crypto+Python/files/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crypto+Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/requirements.txt -------------------------------------------------------------------------------- /Crypto+Python/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Crypto+Python/start.sh -------------------------------------------------------------------------------- /Pwn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/Dockerfile -------------------------------------------------------------------------------- /Pwn/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/ctf.xinetd -------------------------------------------------------------------------------- /Pwn/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/docker-compose.yml -------------------------------------------------------------------------------- /Pwn/files/badchars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/files/badchars -------------------------------------------------------------------------------- /Pwn/files/libbadchars.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/files/libbadchars.so -------------------------------------------------------------------------------- /Pwn/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Pwn/start.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/README.md -------------------------------------------------------------------------------- /Web+GoLang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+GoLang/Dockerfile -------------------------------------------------------------------------------- /Web+GoLang/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+GoLang/docker-compose.yml -------------------------------------------------------------------------------- /Web+GoLang/files/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web+GoLang/files/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+GoLang/files/main.go -------------------------------------------------------------------------------- /Web+GoLang/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+GoLang/start.sh -------------------------------------------------------------------------------- /Web+PHP+MySQL/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/Dockerfile -------------------------------------------------------------------------------- /Web+PHP+MySQL/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/database.sql -------------------------------------------------------------------------------- /Web+PHP+MySQL/db.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/db.inc.php -------------------------------------------------------------------------------- /Web+PHP+MySQL/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/docker-compose.yml -------------------------------------------------------------------------------- /Web+PHP+MySQL/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/index.php -------------------------------------------------------------------------------- /Web+PHP+MySQL/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+MySQL/start.sh -------------------------------------------------------------------------------- /Web+PHP+Pwn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/Dockerfile -------------------------------------------------------------------------------- /Web+PHP+Pwn/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/docker-compose.yml -------------------------------------------------------------------------------- /Web+PHP+Pwn/docker-stuff/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/docker-stuff/default -------------------------------------------------------------------------------- /Web+PHP+Pwn/docker-stuff/readflag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/docker-stuff/readflag -------------------------------------------------------------------------------- /Web+PHP+Pwn/docker-stuff/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/docker-stuff/www.conf -------------------------------------------------------------------------------- /Web+PHP+Pwn/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web+PHP+Pwn/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/index.php -------------------------------------------------------------------------------- /Web+PHP+Pwn/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP+Pwn/start.sh -------------------------------------------------------------------------------- /Web+PHP/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP/Dockerfile -------------------------------------------------------------------------------- /Web+PHP/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP/docker-compose.yml -------------------------------------------------------------------------------- /Web+PHP/flag.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web+PHP/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP/index.php -------------------------------------------------------------------------------- /Web+PHP/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+PHP/start.sh -------------------------------------------------------------------------------- /Web+Python+Flask/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/Dockerfile -------------------------------------------------------------------------------- /Web+Python+Flask/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/docker-compose.yml -------------------------------------------------------------------------------- /Web+Python+Flask/files/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/app.py -------------------------------------------------------------------------------- /Web+Python+Flask/files/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web+Python+Flask/files/static/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/static/css/grid.css -------------------------------------------------------------------------------- /Web+Python+Flask/files/static/css/ress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/static/css/ress.min.css -------------------------------------------------------------------------------- /Web+Python+Flask/files/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/static/css/style.css -------------------------------------------------------------------------------- /Web+Python+Flask/files/static/img/ramen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/static/img/ramen.jpg -------------------------------------------------------------------------------- /Web+Python+Flask/files/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+Flask/files/templates/index.html -------------------------------------------------------------------------------- /Web+Python+Flask/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask == 1.1.2 -------------------------------------------------------------------------------- /Web+Python+Flask/start.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo $GZCTF_FLAG > ./flag.txt 4 | 5 | python3 /app.py -------------------------------------------------------------------------------- /Web+Python+aiohttp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+aiohttp/Dockerfile -------------------------------------------------------------------------------- /Web+Python+aiohttp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+aiohttp/docker-compose.yml -------------------------------------------------------------------------------- /Web+Python+aiohttp/files/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+aiohttp/files/app.py -------------------------------------------------------------------------------- /Web+Python+aiohttp/files/flag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web+Python+aiohttp/files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+aiohttp/files/server.py -------------------------------------------------------------------------------- /Web+Python+aiohttp/requirements.txt: -------------------------------------------------------------------------------- 1 | multidict 2 | aiohttp -------------------------------------------------------------------------------- /Web+Python+aiohttp/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web+Python+aiohttp/start.sh -------------------------------------------------------------------------------- /Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web/Dockerfile -------------------------------------------------------------------------------- /Web/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web/app/index.html -------------------------------------------------------------------------------- /Web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web/docker-compose.yml -------------------------------------------------------------------------------- /Web/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyther/GZCTF-Templates/HEAD/Web/start.sh --------------------------------------------------------------------------------