├── .gitignore ├── LICENSE ├── README.md ├── dashboard ├── backend │ ├── .dockerignore │ ├── .gitignore │ ├── .prettierrc.js │ ├── .vscode │ │ └── launch.json │ ├── Dockerfile │ ├── Dockerfile.migrations │ ├── index.d.ts │ ├── migrate-mongo-config.js │ ├── migrations │ │ └── 20201218003630-create-flag-collection.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── auth │ │ │ ├── auth.ts │ │ │ ├── routes.ts │ │ │ └── setup.ts │ │ ├── config.ts │ │ ├── flag │ │ │ ├── flag.ts │ │ │ ├── routes.ts │ │ │ └── schema.ts │ │ ├── index.ts │ │ ├── infrastructure │ │ │ └── database.ts │ │ ├── rank │ │ │ └── routes.ts │ │ └── teams │ │ │ ├── routes.ts │ │ │ ├── schema.ts │ │ │ └── team.ts │ └── tsconfig.json └── frontend │ └── l3ctf-dashboard │ ├── .dockerignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── Dockerfile │ ├── README.md │ ├── nginx │ └── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── config.js │ ├── config.js.template │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── componentes │ │ ├── Button │ │ │ └── index.tsx │ │ ├── Container │ │ │ ├── Action.tsx │ │ │ ├── Login.tsx │ │ │ └── Sections.tsx │ │ ├── H1 │ │ │ └── index.tsx │ │ ├── Input │ │ │ └── index.tsx │ │ ├── Label │ │ │ └── index.tsx │ │ ├── Link │ │ │ ├── SignIn.tsx │ │ │ └── index.tsx │ │ └── Modal │ │ │ └── index.tsx │ ├── config.ts │ ├── dominio │ │ ├── Cadastro │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ └── time.ts │ │ ├── Dashboard │ │ │ ├── flag.ts │ │ │ ├── index.tsx │ │ │ ├── rank.ts │ │ │ └── service.ts │ │ └── Login │ │ │ ├── index.tsx │ │ │ ├── login.ts │ │ │ └── service.ts │ ├── index.css │ ├── index.tsx │ ├── infrastructure │ │ ├── history.ts │ │ └── http │ │ │ └── interceptors.ts │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ ├── styles │ │ └── main.ts │ └── template │ │ ├── Dashboard │ │ └── index.tsx │ │ ├── Home │ │ └── index.tsx │ │ └── Login │ │ └── index.tsx │ └── tsconfig.json ├── docker-compose.prod.yml ├── docker-compose.windows.yml ├── docker-compose.yml ├── keys ├── id_rsa └── id_rsa.pub ├── nivel1 ├── .dockerignore ├── Dockerfile ├── html │ ├── frames │ │ └── top.htm │ ├── help │ │ └── WzdStartHelpRpm.htm │ ├── images │ │ ├── blue.jpg │ │ ├── top1_1.jpg │ │ ├── top1_2.jpg │ │ ├── top2.jpg │ │ └── top_bg.jpg │ ├── index.html │ └── userRpm │ │ ├── MenuRpm.htm │ │ ├── StatusRpm.htm │ │ ├── TrashTooling.htm │ │ └── WzdStartRpm.htm ├── keys │ ├── id_rsa │ └── id_rsa.pub ├── package-lock.json ├── package.json ├── src │ ├── app.ts │ ├── index.ts │ └── p1nger │ │ └── route.ts └── tsconfig.json ├── nivel2 ├── .dockerignore ├── .vscode │ └── launch.json ├── Dockerfile ├── keys │ ├── id_rsa │ └── id_rsa.pub ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── nivel3 ├── .dockerignore ├── Dockerfile └── keys │ ├── id_rsa │ └── id_rsa.pub └── terraform ├── main.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/backend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /dashboard/backend/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /dashboard/backend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/.prettierrc.js -------------------------------------------------------------------------------- /dashboard/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/.vscode/launch.json -------------------------------------------------------------------------------- /dashboard/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/Dockerfile -------------------------------------------------------------------------------- /dashboard/backend/Dockerfile.migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/Dockerfile.migrations -------------------------------------------------------------------------------- /dashboard/backend/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/index.d.ts -------------------------------------------------------------------------------- /dashboard/backend/migrate-mongo-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/migrate-mongo-config.js -------------------------------------------------------------------------------- /dashboard/backend/migrations/20201218003630-create-flag-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/migrations/20201218003630-create-flag-collection.js -------------------------------------------------------------------------------- /dashboard/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/package-lock.json -------------------------------------------------------------------------------- /dashboard/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/package.json -------------------------------------------------------------------------------- /dashboard/backend/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/app.ts -------------------------------------------------------------------------------- /dashboard/backend/src/auth/auth.ts: -------------------------------------------------------------------------------- 1 | export interface SignedToken { 2 | id: string 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/backend/src/auth/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/auth/routes.ts -------------------------------------------------------------------------------- /dashboard/backend/src/auth/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/auth/setup.ts -------------------------------------------------------------------------------- /dashboard/backend/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/config.ts -------------------------------------------------------------------------------- /dashboard/backend/src/flag/flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/flag/flag.ts -------------------------------------------------------------------------------- /dashboard/backend/src/flag/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/flag/routes.ts -------------------------------------------------------------------------------- /dashboard/backend/src/flag/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/flag/schema.ts -------------------------------------------------------------------------------- /dashboard/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/index.ts -------------------------------------------------------------------------------- /dashboard/backend/src/infrastructure/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/infrastructure/database.ts -------------------------------------------------------------------------------- /dashboard/backend/src/rank/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/rank/routes.ts -------------------------------------------------------------------------------- /dashboard/backend/src/teams/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/teams/routes.ts -------------------------------------------------------------------------------- /dashboard/backend/src/teams/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/teams/schema.ts -------------------------------------------------------------------------------- /dashboard/backend/src/teams/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/src/teams/team.ts -------------------------------------------------------------------------------- /dashboard/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/backend/tsconfig.json -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/.eslintrc.js -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/.prettierrc.js -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/Dockerfile -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/README.md -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/nginx/nginx.conf -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/package-lock.json -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/package.json -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/config.js -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/config.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/config.js.template -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/favicon.ico -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/index.html -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/logo192.png -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/logo512.png -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/manifest.json -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/public/robots.txt -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/App.test.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/App.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Button/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Action.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Login.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Sections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Container/Sections.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/H1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/H1/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Input/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Label/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Link/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Link/SignIn.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Link/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/componentes/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/componentes/Modal/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/config.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Cadastro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Cadastro/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Cadastro/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Cadastro/service.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Cadastro/time.ts: -------------------------------------------------------------------------------- 1 | export interface Time { 2 | name: string 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/flag.ts: -------------------------------------------------------------------------------- 1 | export interface Flag { 2 | flag: string 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/rank.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Dashboard/service.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Login/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Login/login.ts: -------------------------------------------------------------------------------- 1 | export interface Login { 2 | token: string 3 | } 4 | -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/dominio/Login/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/dominio/Login/service.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/index.css -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/infrastructure/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/infrastructure/history.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/infrastructure/http/interceptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/infrastructure/http/interceptors.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/reportWebVitals.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/setupTests.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/styles/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/styles/main.ts -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/template/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/template/Dashboard/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/template/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/template/Home/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/src/template/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/src/template/Login/index.tsx -------------------------------------------------------------------------------- /dashboard/frontend/l3ctf-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/dashboard/frontend/l3ctf-dashboard/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/docker-compose.windows.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/keys/id_rsa -------------------------------------------------------------------------------- /keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/keys/id_rsa.pub -------------------------------------------------------------------------------- /nivel1/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/.dockerignore -------------------------------------------------------------------------------- /nivel1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/Dockerfile -------------------------------------------------------------------------------- /nivel1/html/frames/top.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/frames/top.htm -------------------------------------------------------------------------------- /nivel1/html/help/WzdStartHelpRpm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/help/WzdStartHelpRpm.htm -------------------------------------------------------------------------------- /nivel1/html/images/blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/images/blue.jpg -------------------------------------------------------------------------------- /nivel1/html/images/top1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/images/top1_1.jpg -------------------------------------------------------------------------------- /nivel1/html/images/top1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/images/top1_2.jpg -------------------------------------------------------------------------------- /nivel1/html/images/top2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/images/top2.jpg -------------------------------------------------------------------------------- /nivel1/html/images/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/images/top_bg.jpg -------------------------------------------------------------------------------- /nivel1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/index.html -------------------------------------------------------------------------------- /nivel1/html/userRpm/MenuRpm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/userRpm/MenuRpm.htm -------------------------------------------------------------------------------- /nivel1/html/userRpm/StatusRpm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/userRpm/StatusRpm.htm -------------------------------------------------------------------------------- /nivel1/html/userRpm/TrashTooling.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/userRpm/TrashTooling.htm -------------------------------------------------------------------------------- /nivel1/html/userRpm/WzdStartRpm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/html/userRpm/WzdStartRpm.htm -------------------------------------------------------------------------------- /nivel1/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/keys/id_rsa -------------------------------------------------------------------------------- /nivel1/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/keys/id_rsa.pub -------------------------------------------------------------------------------- /nivel1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/package-lock.json -------------------------------------------------------------------------------- /nivel1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/package.json -------------------------------------------------------------------------------- /nivel1/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/src/app.ts -------------------------------------------------------------------------------- /nivel1/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/src/index.ts -------------------------------------------------------------------------------- /nivel1/src/p1nger/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/src/p1nger/route.ts -------------------------------------------------------------------------------- /nivel1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel1/tsconfig.json -------------------------------------------------------------------------------- /nivel2/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/.dockerignore -------------------------------------------------------------------------------- /nivel2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/.vscode/launch.json -------------------------------------------------------------------------------- /nivel2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/Dockerfile -------------------------------------------------------------------------------- /nivel2/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/keys/id_rsa -------------------------------------------------------------------------------- /nivel2/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/keys/id_rsa.pub -------------------------------------------------------------------------------- /nivel2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/package-lock.json -------------------------------------------------------------------------------- /nivel2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/package.json -------------------------------------------------------------------------------- /nivel2/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/src/index.ts -------------------------------------------------------------------------------- /nivel2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel2/tsconfig.json -------------------------------------------------------------------------------- /nivel3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel3/.dockerignore -------------------------------------------------------------------------------- /nivel3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel3/Dockerfile -------------------------------------------------------------------------------- /nivel3/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel3/keys/id_rsa -------------------------------------------------------------------------------- /nivel3/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/nivel3/keys/id_rsa.pub -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucascebertin/ssh-game/HEAD/terraform/variables.tf --------------------------------------------------------------------------------