├── .bin ├── license-engine.sh ├── licenses └── list-licenses ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── DESIGN-DOC.yml │ ├── FEATURE-REQUEST.yml │ └── config.yml ├── auto_assign.yml ├── config.yml ├── pull_request_template.md └── workflows │ ├── closed_references.yml │ ├── conventional_commits.yml │ ├── labels.yml │ ├── licenses.yml │ └── stale.yml ├── .gitignore ├── .reference-ignore ├── .reports └── dep-licenses.csv ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── backend ├── Dockerfile ├── config.go ├── db.go ├── db_sqlite.go ├── flag_test.go ├── go.mod ├── go.sum ├── handler.go ├── handler_auth.go ├── handler_flag.go ├── handler_index.go ├── handler_test.go ├── main.go ├── results.go ├── static │ ├── fa-brands.min.css │ ├── fa-solid.min.css │ ├── fontawesome.min.css │ ├── html │ │ ├── component-wrapper.d.ts │ │ ├── component-wrapper.d.ts.map │ │ ├── index.d.ts │ │ └── index.d.ts.map │ ├── index.d.ts │ ├── index.d.ts.map │ ├── index.es.js │ ├── index.es.js.map │ ├── inter-font.css │ ├── inter │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ └── Inter-SemiBold.woff2 │ ├── main.css │ ├── normalize.css │ ├── style.css │ ├── theme │ │ ├── button-link.css.d.ts │ │ ├── button-link.css.d.ts.map │ │ ├── button-social.css.d.ts │ │ ├── button-social.css.d.ts.map │ │ ├── button.css.d.ts │ │ ├── button.css.d.ts.map │ │ ├── card.css.d.ts │ │ ├── card.css.d.ts.map │ │ ├── checkbox.css.d.ts │ │ ├── checkbox.css.d.ts.map │ │ ├── colors.css.d.ts │ │ ├── colors.css.d.ts.map │ │ ├── consts.d.ts │ │ ├── consts.d.ts.map │ │ ├── divider.css.d.ts │ │ ├── divider.css.d.ts.map │ │ ├── grid.css.d.ts │ │ ├── grid.css.d.ts.map │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── input-field.css.d.ts │ │ ├── input-field.css.d.ts.map │ │ ├── message.css.d.ts │ │ ├── message.css.d.ts.map │ │ ├── theme.css.d.ts │ │ ├── theme.css.d.ts.map │ │ ├── typography.css.d.ts │ │ └── typography.css.d.ts.map │ ├── theming.js │ ├── utils.d.ts │ ├── utils.d.ts.map │ ├── vite-env.d.ts │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-solid-900.ttf │ │ └── fa-solid-900.woff2 └── ui │ ├── error.html │ ├── index.html │ ├── leaderboard.html │ ├── login.html │ └── register.html ├── configs ├── identity.schema.json ├── keto.yml ├── keto_entrypoint.sh ├── kratos.yml ├── oathkeeper.yml └── oathkeeper_rules.json └── docker-compose.yml /.bin/license-engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.bin/license-engine.sh -------------------------------------------------------------------------------- /.bin/licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.bin/licenses -------------------------------------------------------------------------------- /.bin/list-licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.bin/list-licenses -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DESIGN-DOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/ISSUE_TEMPLATE/DESIGN-DOC.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/closed_references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/workflows/closed_references.yml -------------------------------------------------------------------------------- /.github/workflows/conventional_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/workflows/conventional_commits.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/licenses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/workflows/licenses.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.remote.yml 2 | .idea -------------------------------------------------------------------------------- /.reference-ignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | docs 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /.reports/dep-licenses.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/config.go -------------------------------------------------------------------------------- /backend/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/db.go -------------------------------------------------------------------------------- /backend/db_sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/db_sqlite.go -------------------------------------------------------------------------------- /backend/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/flag_test.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/handler.go -------------------------------------------------------------------------------- /backend/handler_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/handler_auth.go -------------------------------------------------------------------------------- /backend/handler_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/handler_flag.go -------------------------------------------------------------------------------- /backend/handler_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/handler_index.go -------------------------------------------------------------------------------- /backend/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/handler_test.go -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/results.go -------------------------------------------------------------------------------- /backend/static/fa-brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/fa-brands.min.css -------------------------------------------------------------------------------- /backend/static/fa-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/fa-solid.min.css -------------------------------------------------------------------------------- /backend/static/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/fontawesome.min.css -------------------------------------------------------------------------------- /backend/static/html/component-wrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/html/component-wrapper.d.ts -------------------------------------------------------------------------------- /backend/static/html/component-wrapper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/html/component-wrapper.d.ts.map -------------------------------------------------------------------------------- /backend/static/html/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './component-wrapper'; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /backend/static/html/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/html/index.d.ts.map -------------------------------------------------------------------------------- /backend/static/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/index.d.ts -------------------------------------------------------------------------------- /backend/static/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/index.d.ts.map -------------------------------------------------------------------------------- /backend/static/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/index.es.js -------------------------------------------------------------------------------- /backend/static/index.es.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/index.es.js.map -------------------------------------------------------------------------------- /backend/static/inter-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter-font.css -------------------------------------------------------------------------------- /backend/static/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /backend/static/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /backend/static/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /backend/static/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /backend/static/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /backend/static/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /backend/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/main.css -------------------------------------------------------------------------------- /backend/static/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/normalize.css -------------------------------------------------------------------------------- /backend/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/style.css -------------------------------------------------------------------------------- /backend/static/theme/button-link.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button-link.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/button-link.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button-link.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/button-social.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button-social.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/button-social.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button-social.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/button.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/button.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/button.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/card.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/card.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/card.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/card.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/checkbox.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/checkbox.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/checkbox.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/checkbox.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/colors.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/colors.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/colors.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/colors.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/consts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/consts.d.ts -------------------------------------------------------------------------------- /backend/static/theme/consts.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/consts.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/divider.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/divider.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/divider.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/divider.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/grid.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/grid.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/grid.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/grid.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/index.d.ts -------------------------------------------------------------------------------- /backend/static/theme/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/index.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/input-field.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/input-field.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/input-field.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/input-field.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/message.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/message.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/message.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/message.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/theme.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/theme.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/theme.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/theme.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theme/typography.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/typography.css.d.ts -------------------------------------------------------------------------------- /backend/static/theme/typography.css.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theme/typography.css.d.ts.map -------------------------------------------------------------------------------- /backend/static/theming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/theming.js -------------------------------------------------------------------------------- /backend/static/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/utils.d.ts -------------------------------------------------------------------------------- /backend/static/utils.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/utils.d.ts.map -------------------------------------------------------------------------------- /backend/static/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /backend/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /backend/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /backend/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /backend/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /backend/ui/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/ui/error.html -------------------------------------------------------------------------------- /backend/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/ui/index.html -------------------------------------------------------------------------------- /backend/ui/leaderboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/ui/leaderboard.html -------------------------------------------------------------------------------- /backend/ui/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/ui/login.html -------------------------------------------------------------------------------- /backend/ui/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/backend/ui/register.html -------------------------------------------------------------------------------- /configs/identity.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/identity.schema.json -------------------------------------------------------------------------------- /configs/keto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/keto.yml -------------------------------------------------------------------------------- /configs/keto_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/keto_entrypoint.sh -------------------------------------------------------------------------------- /configs/kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/kratos.yml -------------------------------------------------------------------------------- /configs/oathkeeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/oathkeeper.yml -------------------------------------------------------------------------------- /configs/oathkeeper_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/configs/oathkeeper_rules.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/defcon-30-ctf/HEAD/docker-compose.yml --------------------------------------------------------------------------------