├── LICENSE ├── README.md ├── cache ├── Dockerfile ├── Dockerfile.test ├── cache │ ├── __init__.py │ ├── asgi.py │ ├── cache_middleware.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── deploy.sh ├── handout.zip ├── manage.py └── test.py ├── cloudtable ├── Dockerfile ├── Dockerfile.test ├── app.py ├── deploy.sh ├── handout.zip ├── recaptcha.py └── templates │ └── index.html ├── coin-exchange ├── Dockerfile ├── Dockerfile.test ├── app.js ├── deploy.sh ├── handout.zip ├── index.html └── package.json ├── csp1 ├── Dockerfile ├── app.py ├── deploy.sh ├── handout.zip ├── templates │ ├── display.html │ └── index.html └── test.py ├── csp3 ├── Dockerfile ├── black.js ├── csp2.zip ├── csp3.zip ├── deploy.sh ├── deploy3.sh ├── framework │ ├── CSP.module │ ├── HTTP.module │ ├── Template.module │ └── Typed.module ├── index.php ├── test.py └── white.js ├── docker-compose.yaml ├── gallery ├── Dockerfile ├── auth.json ├── deploy.sh ├── gallery.zip ├── main.py ├── static │ └── default.gif ├── templates │ └── index.html └── test.py ├── github ├── fix_secrets.py ├── flag │ └── Dockerfile └── gh.py ├── include ├── Dockerfile ├── deploy.sh └── index.php ├── phish ├── Dockerfile ├── Dockerfile.test ├── deploy.sh ├── handout.zip ├── main.py ├── static │ └── iCloud_files │ │ ├── authService.js │ │ ├── cloudkit.js │ │ ├── main.css │ │ ├── main.js │ │ ├── r__23.png │ │ ├── r__24.png │ │ ├── r__34.png │ │ ├── signin.html │ │ └── signin_data │ │ ├── app.css │ │ ├── app.js │ │ ├── common-header.js │ │ ├── fonts.css │ │ ├── initBootData.js │ │ └── initLocalizationStrings.js ├── templates │ └── index.html └── test.py ├── ping ├── Dockerfile ├── app.js ├── bin │ └── www ├── config.py ├── deploy.sh ├── handout.zip ├── index.js ├── main.py ├── net.py ├── package.json ├── recv.py ├── start.sh ├── utils.py └── views │ └── index.ejs ├── sdn └── forward.json ├── urlbin ├── Dockerfile ├── Dockerfile.test ├── app.py ├── deploy.sh ├── handout.zip ├── templates │ ├── home.html │ └── register.html └── test.py └── uv_worker ├── cache.py ├── coin.py ├── csp1.py ├── csp3.py └── gallery.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/README.md -------------------------------------------------------------------------------- /cache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/Dockerfile -------------------------------------------------------------------------------- /cache/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/Dockerfile.test -------------------------------------------------------------------------------- /cache/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/cache/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/cache/asgi.py -------------------------------------------------------------------------------- /cache/cache/cache_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/cache/cache_middleware.py -------------------------------------------------------------------------------- /cache/cache/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/cache/settings.py -------------------------------------------------------------------------------- /cache/cache/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/cache/urls.py -------------------------------------------------------------------------------- /cache/cache/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/cache/wsgi.py -------------------------------------------------------------------------------- /cache/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/deploy.sh -------------------------------------------------------------------------------- /cache/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/handout.zip -------------------------------------------------------------------------------- /cache/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/manage.py -------------------------------------------------------------------------------- /cache/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cache/test.py -------------------------------------------------------------------------------- /cloudtable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/Dockerfile -------------------------------------------------------------------------------- /cloudtable/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/Dockerfile.test -------------------------------------------------------------------------------- /cloudtable/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/app.py -------------------------------------------------------------------------------- /cloudtable/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/deploy.sh -------------------------------------------------------------------------------- /cloudtable/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/handout.zip -------------------------------------------------------------------------------- /cloudtable/recaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/recaptcha.py -------------------------------------------------------------------------------- /cloudtable/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/cloudtable/templates/index.html -------------------------------------------------------------------------------- /coin-exchange/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/Dockerfile -------------------------------------------------------------------------------- /coin-exchange/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/Dockerfile.test -------------------------------------------------------------------------------- /coin-exchange/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/app.js -------------------------------------------------------------------------------- /coin-exchange/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/deploy.sh -------------------------------------------------------------------------------- /coin-exchange/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/handout.zip -------------------------------------------------------------------------------- /coin-exchange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/index.html -------------------------------------------------------------------------------- /coin-exchange/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/coin-exchange/package.json -------------------------------------------------------------------------------- /csp1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/Dockerfile -------------------------------------------------------------------------------- /csp1/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/app.py -------------------------------------------------------------------------------- /csp1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/deploy.sh -------------------------------------------------------------------------------- /csp1/handout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/handout.zip -------------------------------------------------------------------------------- /csp1/templates/display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | {{ content|safe }} -------------------------------------------------------------------------------- /csp1/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/templates/index.html -------------------------------------------------------------------------------- /csp1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp1/test.py -------------------------------------------------------------------------------- /csp3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/Dockerfile -------------------------------------------------------------------------------- /csp3/black.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/black.js -------------------------------------------------------------------------------- /csp3/csp2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/csp2.zip -------------------------------------------------------------------------------- /csp3/csp3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/csp3.zip -------------------------------------------------------------------------------- /csp3/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/deploy.sh -------------------------------------------------------------------------------- /csp3/deploy3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/deploy3.sh -------------------------------------------------------------------------------- /csp3/framework/CSP.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/framework/CSP.module -------------------------------------------------------------------------------- /csp3/framework/HTTP.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/framework/HTTP.module -------------------------------------------------------------------------------- /csp3/framework/Template.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/framework/Template.module -------------------------------------------------------------------------------- /csp3/framework/Typed.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/framework/Typed.module -------------------------------------------------------------------------------- /csp3/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/index.php -------------------------------------------------------------------------------- /csp3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/test.py -------------------------------------------------------------------------------- /csp3/white.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/csp3/white.js -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /gallery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/Dockerfile -------------------------------------------------------------------------------- /gallery/auth.json: -------------------------------------------------------------------------------- 1 | REMOVED/REPLACE WITH GCP JSON TOKEN FILE 2 | -------------------------------------------------------------------------------- /gallery/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/deploy.sh -------------------------------------------------------------------------------- /gallery/gallery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/gallery.zip -------------------------------------------------------------------------------- /gallery/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/main.py -------------------------------------------------------------------------------- /gallery/static/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/static/default.gif -------------------------------------------------------------------------------- /gallery/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/templates/index.html -------------------------------------------------------------------------------- /gallery/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/gallery/test.py -------------------------------------------------------------------------------- /github/fix_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/github/fix_secrets.py -------------------------------------------------------------------------------- /github/flag/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu 2 | 3 | CMD echo "we{a007761c-c4cb-47f4-9d6c-c194f3168302@G4YHub_Ac7i0n_3ucks}" 4 | -------------------------------------------------------------------------------- /github/gh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/github/gh.py -------------------------------------------------------------------------------- /include/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/include/Dockerfile -------------------------------------------------------------------------------- /include/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wectf/2021/HEAD/include/deploy.sh -------------------------------------------------------------------------------- /include/index.php: -------------------------------------------------------------------------------- 1 |