├── 2023-04 ├── README.md ├── author-writeup.pdf └── graphql │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── chall │ ├── 001.yml │ ├── 002.yml │ ├── 003.yml │ ├── 004.yml │ └── dist.zip │ ├── database.db │ ├── docker-compose.yml │ ├── package.json │ ├── schema.gql │ ├── schema.sql │ ├── scripts │ ├── deploy.sh │ └── gen.ts │ ├── solutions │ ├── 1.gql │ ├── 2.gql │ ├── 3.gql │ └── 4.gql │ ├── src │ ├── graphql-depth-limit.ts │ ├── graphql.ts │ ├── index.ts │ ├── middleware.ts │ ├── util.ts │ └── validator.ts │ ├── static │ └── index.html │ ├── tsconfig.json │ └── yarn.lock ├── 2023-11-speedrun ├── 001 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 001.yml │ │ └── deny.zip │ ├── _solution │ │ └── exploit.sh │ ├── compose.yaml │ ├── requirements.txt │ └── server.py ├── 002 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 002.yml │ │ └── gadget.zip │ ├── _solution │ │ └── exploit.sh │ ├── compose.yaml │ ├── requirements.txt │ └── server.py ├── 003 │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── _chal │ │ ├── 003.yml │ │ └── gem.zip │ ├── _solution │ │ └── exploit.sh │ ├── compose.yaml │ ├── config.ru │ ├── config │ │ └── puma.rb │ └── server.rb ├── 004 │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 004.yml │ │ └── arrow.zip │ ├── _solution │ │ ├── exploit.sh │ │ └── jwt.dart │ ├── bin │ │ └── server.dart │ ├── compose.yaml │ ├── lib │ │ ├── js.dart │ │ └── util.dart │ ├── old_arrow.zip │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ │ ├── index.html │ │ └── main.dart ├── 005 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 005.yml │ │ └── bread.zip │ ├── _solution │ │ └── exploit.sh │ ├── compose.yaml │ └── server.ts ├── README.md └── screenshot.png ├── 2023-11 ├── 001 │ ├── _chal │ │ ├── 001.yml │ │ ├── self.zip │ │ └── self │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── assets │ │ │ └── image.png │ │ │ ├── bin │ │ │ └── cdk.ts │ │ │ ├── cdk.json │ │ │ ├── lib │ │ │ ├── api │ │ │ │ ├── functions │ │ │ │ │ ├── authorizer.ts │ │ │ │ │ └── flag.ts │ │ │ │ └── index.ts │ │ │ ├── idp │ │ │ │ ├── functions │ │ │ │ │ └── preSignUp.ts │ │ │ │ └── index.ts │ │ │ └── web │ │ │ │ ├── deploy.ts │ │ │ │ └── index.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── _solution │ │ └── exploit.sh │ ├── assets │ │ └── image.png │ └── src │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cdk │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── assets │ │ │ └── image.png │ │ ├── bin │ │ │ └── cdk.ts │ │ ├── cdk.json │ │ ├── lib │ │ │ ├── api │ │ │ │ ├── functions │ │ │ │ │ ├── authorizer.ts │ │ │ │ │ └── flag.ts │ │ │ │ └── index.ts │ │ │ ├── idp │ │ │ │ ├── functions │ │ │ │ │ └── preSignUp.ts │ │ │ │ └── index.ts │ │ │ └── web │ │ │ │ ├── deploy.ts │ │ │ │ └── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tsconfig.json │ │ ├── develop │ │ ├── base │ │ │ ├── Dockerfile │ │ │ └── install.sh │ │ ├── cdk-node │ │ │ ├── .eslintrc.json │ │ │ ├── Dockerfile │ │ │ ├── init.sh │ │ │ └── install.sh │ │ └── front │ │ │ ├── .eslintrc.cjs │ │ │ ├── Dockerfile │ │ │ ├── init.sh │ │ │ └── install.sh │ │ ├── docker-compose.yml │ │ ├── frontend │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── aws.json │ │ │ ├── content │ │ │ │ ├── flag.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.css │ │ │ └── main.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ │ └── script │ │ ├── cdk-script │ │ ├── deploy.sh │ │ ├── destroy.sh │ │ ├── init.sh │ │ └── synth.sh │ │ ├── frontend-script │ │ ├── init.sh │ │ ├── npm-run-build.sh │ │ ├── npm-run-dev.sh │ │ └── npm-run-preview.sh │ │ └── init.sh ├── 002 │ ├── _chal │ │ ├── 002.yml │ │ ├── miss_box.zip │ │ └── miss_box │ │ │ ├── API.md │ │ │ ├── README.md │ │ │ ├── assets │ │ │ └── image.png │ │ │ └── infra │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── S3_Bucket.md │ │ │ ├── assets │ │ │ └── image.png │ │ │ ├── bin │ │ │ └── cdk.ts │ │ │ ├── cdk.json │ │ │ └── lib │ │ │ ├── api │ │ │ ├── functions │ │ │ │ ├── authorizer.ts │ │ │ │ ├── const.ts │ │ │ │ ├── list.ts │ │ │ │ ├── signUp.ts │ │ │ │ ├── signedUrlDelete.ts │ │ │ │ ├── signedUrlGet.ts │ │ │ │ └── signedUrlPut.ts │ │ │ └── index.ts │ │ │ ├── container │ │ │ ├── container │ │ │ │ └── report │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── aws-lambda-rie │ │ │ │ │ ├── code │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tsconfig.json │ │ │ │ │ ├── entry.sh │ │ │ │ │ └── makefile │ │ │ └── index.ts │ │ │ ├── idp │ │ │ └── index.ts │ │ │ └── web │ │ │ ├── deploy.ts │ │ │ └── index.ts │ ├── _solution │ │ └── exploit.sh │ ├── assets │ │ └── image.png │ └── src │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cdk │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── README.md │ │ ├── assets │ │ │ └── image.png │ │ ├── bin │ │ │ └── cdk.ts │ │ ├── cdk.json │ │ ├── jest.config.js │ │ ├── lib │ │ │ ├── api │ │ │ │ ├── functions │ │ │ │ │ ├── authorizer.ts │ │ │ │ │ ├── const.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── signUp.ts │ │ │ │ │ ├── signedUrlDelete.ts │ │ │ │ │ ├── signedUrlGet.ts │ │ │ │ │ └── signedUrlPut.ts │ │ │ │ └── index.ts │ │ │ ├── container │ │ │ │ ├── container │ │ │ │ │ └── report │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── aws-lambda-rie │ │ │ │ │ │ ├── code │ │ │ │ │ │ ├── package-lock.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── tsconfig.json │ │ │ │ │ │ ├── entry.sh │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── tmp │ │ │ │ │ │ ├── screenshot-0.png │ │ │ │ │ │ ├── screenshot-1.png │ │ │ │ │ │ ├── screenshot-2.png │ │ │ │ │ │ ├── screenshot-3.png │ │ │ │ │ │ └── screenshot-4.png │ │ │ │ └── index.ts │ │ │ ├── idp │ │ │ │ └── index.ts │ │ │ └── web │ │ │ │ ├── deploy.ts │ │ │ │ └── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── test │ │ │ └── cdk.test.ts │ │ └── tsconfig.json │ │ ├── develop │ │ ├── base │ │ │ ├── Dockerfile │ │ │ └── install.sh │ │ ├── cdk-node │ │ │ ├── .eslintrc.json │ │ │ ├── Dockerfile │ │ │ ├── init.sh │ │ │ └── install.sh │ │ └── front │ │ │ ├── .eslintrc.cjs │ │ │ ├── Dockerfile │ │ │ ├── init.sh │ │ │ └── install.sh │ │ ├── docker-compose.yml │ │ ├── frontend │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── assets │ │ │ │ └── react.svg │ │ │ ├── aws.json │ │ │ ├── components │ │ │ │ └── page │ │ │ │ │ └── header │ │ │ │ │ ├── auth.tsx │ │ │ │ │ ├── index.css │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── noAuth.tsx │ │ │ ├── hooks │ │ │ │ └── useAuthentication.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── layouts │ │ │ │ └── pageBasicLayout │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.tsx │ │ │ ├── main.tsx │ │ │ └── pages │ │ │ │ ├── auth.tsx │ │ │ │ ├── file.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── page.css │ │ │ │ ├── pageProps.ts │ │ │ │ ├── report.tsx │ │ │ │ └── signout.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ │ ├── script │ │ ├── cdk-script │ │ │ ├── deploy.sh │ │ │ ├── destroy.sh │ │ │ ├── init.sh │ │ │ └── synth.sh │ │ ├── cdktf-script │ │ │ ├── deploy.sh │ │ │ ├── destroy.sh │ │ │ ├── init.sh │ │ │ └── synth.sh │ │ ├── deploy.sh │ │ ├── frontend-script │ │ │ ├── init.sh │ │ │ ├── npm-run-build.sh │ │ │ ├── npm-run-dev.sh │ │ │ └── npm-run-preview.sh │ │ └── init.sh │ │ └── tmp │ │ ├── index.html │ │ └── test.png └── README.md ├── 2023-12-speedrun ├── .gitignore ├── 001 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 001.yml │ │ └── x.zip │ ├── _solution │ │ └── exploit.sh │ ├── bun.lockb │ ├── compose.yaml │ ├── package.json │ ├── server.ts │ └── tsconfig.json ├── 002 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 002.yml │ │ └── busybox1.zip │ ├── _solution │ │ └── exploit.sh │ ├── bun.lockb │ ├── compose.yaml │ ├── index.html │ ├── package.json │ ├── server.ts │ └── tsconfig.json ├── 003 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 003.yml │ │ └── busybox2.zip │ ├── _solution │ │ └── exploit.sh │ ├── bun.lockb │ ├── compose.yaml │ ├── flag │ ├── getflag.c │ ├── index.html │ ├── package.json │ ├── server.ts │ └── tsconfig.json ├── 004 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 004.yml │ │ └── semgrep.zip │ ├── _solution │ │ └── exploit.sh │ ├── bun.lockb │ ├── compose.yaml │ ├── config.yml │ ├── index.html │ ├── package.json │ ├── server.ts │ └── tsconfig.json ├── 005 │ ├── Dockerfile │ ├── Makefile │ ├── _chal │ │ ├── 005.yml │ │ └── nginx.zip │ ├── _solution │ │ └── exploit.sh │ ├── compose.yaml │ ├── default.conf.template │ └── nginx.conf ├── README.md ├── author-writeup.pdf └── screenshot.png ├── 2024-06-firebase ├── README.md ├── chall-00 │ ├── .firebaserc │ ├── Makefile │ ├── README.md │ ├── add-flag.js │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── frontend │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── firebase.ts │ │ │ ├── main.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── solver │ │ ├── flag.txt │ │ └── index.js ├── chall-01 │ ├── .firebaserc │ ├── Makefile │ ├── README.md │ ├── add-flag.js │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── frontend │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── firebase.ts │ │ │ ├── main.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── solver │ │ ├── flag.txt │ │ └── index.js ├── chall-02 │ ├── .firebaserc │ ├── Makefile │ ├── README.md │ ├── add-flag.js │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── frontend │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── firebase.ts │ │ │ ├── main.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ └── solver │ │ ├── flag.txt │ │ └── index.js ├── chall-03 │ ├── .firebaserc │ ├── Makefile │ ├── README.md │ ├── add-flag.js │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── frontend │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .prettierrc.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── vite.svg │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── firebase.ts │ │ │ ├── flatt-logo.png │ │ │ ├── main.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── functions │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.dev.json │ │ └── tsconfig.json │ └── solver │ │ ├── flag.txt │ │ └── index.js └── chall-04 │ ├── .firebaserc │ ├── Makefile │ ├── README.md │ ├── add-flag.js │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── frontend │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── vite.svg │ ├── src │ │ ├── App.vue │ │ ├── firebase.ts │ │ ├── main.ts │ │ ├── style.css │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ ├── functions │ ├── .eslintrc.js │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.dev.json │ └── tsconfig.json │ ├── solver │ ├── flag.txt │ └── index.js │ └── storage.rules ├── 2025-08-minictf-7 ├── .DS_Store ├── 001 │ ├── challenge │ │ ├── compose.yaml │ │ └── web │ │ │ ├── Dockerfile │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ └── distfiles │ │ ├── compose.yaml │ │ └── web │ │ ├── Dockerfile │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── 002 │ ├── challenge │ │ ├── compose.yaml │ │ └── web │ │ │ ├── Dockerfile │ │ │ ├── flag │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── static │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── script.js │ │ │ └── style.css │ └── distfiles │ │ ├── compose.yaml │ │ └── web │ │ ├── Dockerfile │ │ ├── flag │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── static │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── script.js │ │ └── style.css ├── 003 │ ├── challenge │ │ ├── compose.yaml │ │ └── web │ │ │ ├── Dockerfile │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── readflag.c │ └── distfiles │ │ ├── compose.yaml │ │ └── web │ │ ├── Dockerfile │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── readflag.c ├── 004 │ ├── challenge │ │ ├── compose.yaml │ │ ├── runner │ │ │ ├── Dockerfile │ │ │ ├── app.py │ │ │ └── index.html │ │ └── sandbox │ │ │ ├── Dockerfile │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ └── distfiles │ │ ├── compose.yaml │ │ ├── runner │ │ ├── Dockerfile │ │ ├── app.py │ │ └── index.html │ │ └── sandbox │ │ ├── Dockerfile │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── README.md ├── _chal │ ├── .DS_Store │ ├── 001.ctfire.yml │ ├── 002.ctfire.yml │ ├── 003.ctfire.yml │ ├── 004.ctfire.yml │ ├── dist-001.zip │ ├── dist-002.zip │ ├── dist-003.zip │ └── dist-004.zip └── solver │ ├── 1.sh │ ├── 2.sh │ ├── 3.sh │ ├── 4.json │ └── solution.pdf └── LICENSE /2023-04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/README.md -------------------------------------------------------------------------------- /2023-04/author-writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/author-writeup.pdf -------------------------------------------------------------------------------- /2023-04/graphql/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | yarn-error.log 3 | 4 | -------------------------------------------------------------------------------- /2023-04/graphql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/Dockerfile -------------------------------------------------------------------------------- /2023-04/graphql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/Makefile -------------------------------------------------------------------------------- /2023-04/graphql/chall/001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/chall/001.yml -------------------------------------------------------------------------------- /2023-04/graphql/chall/002.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/chall/002.yml -------------------------------------------------------------------------------- /2023-04/graphql/chall/003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/chall/003.yml -------------------------------------------------------------------------------- /2023-04/graphql/chall/004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/chall/004.yml -------------------------------------------------------------------------------- /2023-04/graphql/chall/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/chall/dist.zip -------------------------------------------------------------------------------- /2023-04/graphql/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/database.db -------------------------------------------------------------------------------- /2023-04/graphql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/docker-compose.yml -------------------------------------------------------------------------------- /2023-04/graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/package.json -------------------------------------------------------------------------------- /2023-04/graphql/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/schema.gql -------------------------------------------------------------------------------- /2023-04/graphql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/schema.sql -------------------------------------------------------------------------------- /2023-04/graphql/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/scripts/deploy.sh -------------------------------------------------------------------------------- /2023-04/graphql/scripts/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/scripts/gen.ts -------------------------------------------------------------------------------- /2023-04/graphql/solutions/1.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/solutions/1.gql -------------------------------------------------------------------------------- /2023-04/graphql/solutions/2.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/solutions/2.gql -------------------------------------------------------------------------------- /2023-04/graphql/solutions/3.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/solutions/3.gql -------------------------------------------------------------------------------- /2023-04/graphql/solutions/4.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/solutions/4.gql -------------------------------------------------------------------------------- /2023-04/graphql/src/graphql-depth-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/graphql-depth-limit.ts -------------------------------------------------------------------------------- /2023-04/graphql/src/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/graphql.ts -------------------------------------------------------------------------------- /2023-04/graphql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/index.ts -------------------------------------------------------------------------------- /2023-04/graphql/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/middleware.ts -------------------------------------------------------------------------------- /2023-04/graphql/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/util.ts -------------------------------------------------------------------------------- /2023-04/graphql/src/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/src/validator.ts -------------------------------------------------------------------------------- /2023-04/graphql/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/static/index.html -------------------------------------------------------------------------------- /2023-04/graphql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/tsconfig.json -------------------------------------------------------------------------------- /2023-04/graphql/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-04/graphql/yarn.lock -------------------------------------------------------------------------------- /2023-11-speedrun/001/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/Dockerfile -------------------------------------------------------------------------------- /2023-11-speedrun/001/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/Makefile -------------------------------------------------------------------------------- /2023-11-speedrun/001/_chal/001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/_chal/001.yml -------------------------------------------------------------------------------- /2023-11-speedrun/001/_chal/deny.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/_chal/deny.zip -------------------------------------------------------------------------------- /2023-11-speedrun/001/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11-speedrun/001/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/compose.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/001/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | uWSGI==2.0.23 -------------------------------------------------------------------------------- /2023-11-speedrun/001/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/001/server.py -------------------------------------------------------------------------------- /2023-11-speedrun/002/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/Dockerfile -------------------------------------------------------------------------------- /2023-11-speedrun/002/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/Makefile -------------------------------------------------------------------------------- /2023-11-speedrun/002/_chal/002.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/_chal/002.yml -------------------------------------------------------------------------------- /2023-11-speedrun/002/_chal/gadget.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/_chal/gadget.zip -------------------------------------------------------------------------------- /2023-11-speedrun/002/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11-speedrun/002/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/compose.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/002/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/requirements.txt -------------------------------------------------------------------------------- /2023-11-speedrun/002/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/002/server.py -------------------------------------------------------------------------------- /2023-11-speedrun/003/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/Dockerfile -------------------------------------------------------------------------------- /2023-11-speedrun/003/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/Gemfile -------------------------------------------------------------------------------- /2023-11-speedrun/003/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/Gemfile.lock -------------------------------------------------------------------------------- /2023-11-speedrun/003/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/Makefile -------------------------------------------------------------------------------- /2023-11-speedrun/003/_chal/003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/_chal/003.yml -------------------------------------------------------------------------------- /2023-11-speedrun/003/_chal/gem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/_chal/gem.zip -------------------------------------------------------------------------------- /2023-11-speedrun/003/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11-speedrun/003/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/compose.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/003/config.ru: -------------------------------------------------------------------------------- 1 | require './server' 2 | run Sinatra::Application -------------------------------------------------------------------------------- /2023-11-speedrun/003/config/puma.rb: -------------------------------------------------------------------------------- 1 | port ENV.fetch('PORT') { 3000 } 2 | -------------------------------------------------------------------------------- /2023-11-speedrun/003/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/003/server.rb -------------------------------------------------------------------------------- /2023-11-speedrun/004/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/.gitignore -------------------------------------------------------------------------------- /2023-11-speedrun/004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/Dockerfile -------------------------------------------------------------------------------- /2023-11-speedrun/004/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/Makefile -------------------------------------------------------------------------------- /2023-11-speedrun/004/_chal/004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/_chal/004.yml -------------------------------------------------------------------------------- /2023-11-speedrun/004/_chal/arrow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/_chal/arrow.zip -------------------------------------------------------------------------------- /2023-11-speedrun/004/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11-speedrun/004/_solution/jwt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/_solution/jwt.dart -------------------------------------------------------------------------------- /2023-11-speedrun/004/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/bin/server.dart -------------------------------------------------------------------------------- /2023-11-speedrun/004/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/compose.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/004/lib/js.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/lib/js.dart -------------------------------------------------------------------------------- /2023-11-speedrun/004/lib/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/lib/util.dart -------------------------------------------------------------------------------- /2023-11-speedrun/004/old_arrow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/old_arrow.zip -------------------------------------------------------------------------------- /2023-11-speedrun/004/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/pubspec.lock -------------------------------------------------------------------------------- /2023-11-speedrun/004/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/pubspec.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/004/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/web/index.html -------------------------------------------------------------------------------- /2023-11-speedrun/004/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/004/web/main.dart -------------------------------------------------------------------------------- /2023-11-speedrun/005/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/Dockerfile -------------------------------------------------------------------------------- /2023-11-speedrun/005/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/Makefile -------------------------------------------------------------------------------- /2023-11-speedrun/005/_chal/005.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/_chal/005.yml -------------------------------------------------------------------------------- /2023-11-speedrun/005/_chal/bread.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/_chal/bread.zip -------------------------------------------------------------------------------- /2023-11-speedrun/005/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11-speedrun/005/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/compose.yaml -------------------------------------------------------------------------------- /2023-11-speedrun/005/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/005/server.ts -------------------------------------------------------------------------------- /2023-11-speedrun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/README.md -------------------------------------------------------------------------------- /2023-11-speedrun/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11-speedrun/screenshot.png -------------------------------------------------------------------------------- /2023-11/001/_chal/001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/001.yml -------------------------------------------------------------------------------- /2023-11/001/_chal/self.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self.zip -------------------------------------------------------------------------------- /2023-11/001/_chal/self/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/.gitignore -------------------------------------------------------------------------------- /2023-11/001/_chal/self/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/.npmignore -------------------------------------------------------------------------------- /2023-11/001/_chal/self/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/README.md -------------------------------------------------------------------------------- /2023-11/001/_chal/self/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/assets/image.png -------------------------------------------------------------------------------- /2023-11/001/_chal/self/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/bin/cdk.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/cdk.json -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/api/functions/authorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/api/functions/authorizer.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/api/functions/flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/api/functions/flag.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/api/index.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/idp/functions/preSignUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/idp/functions/preSignUp.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/idp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/idp/index.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/web/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/web/deploy.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/lib/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/lib/web/index.ts -------------------------------------------------------------------------------- /2023-11/001/_chal/self/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/package-lock.json -------------------------------------------------------------------------------- /2023-11/001/_chal/self/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/package.json -------------------------------------------------------------------------------- /2023-11/001/_chal/self/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_chal/self/tsconfig.json -------------------------------------------------------------------------------- /2023-11/001/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11/001/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/assets/image.png -------------------------------------------------------------------------------- /2023-11/001/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/.gitignore -------------------------------------------------------------------------------- /2023-11/001/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/README.md -------------------------------------------------------------------------------- /2023-11/001/src/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/.gitignore -------------------------------------------------------------------------------- /2023-11/001/src/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/.npmignore -------------------------------------------------------------------------------- /2023-11/001/src/cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/README.md -------------------------------------------------------------------------------- /2023-11/001/src/cdk/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/assets/image.png -------------------------------------------------------------------------------- /2023-11/001/src/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/cdk.json -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/api/functions/authorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/api/functions/authorizer.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/api/functions/flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/api/functions/flag.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/api/index.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/idp/functions/preSignUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/idp/functions/preSignUp.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/idp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/idp/index.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/web/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/web/deploy.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/lib/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/lib/web/index.ts -------------------------------------------------------------------------------- /2023-11/001/src/cdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/package-lock.json -------------------------------------------------------------------------------- /2023-11/001/src/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/package.json -------------------------------------------------------------------------------- /2023-11/001/src/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/cdk/tsconfig.json -------------------------------------------------------------------------------- /2023-11/001/src/develop/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/base/Dockerfile -------------------------------------------------------------------------------- /2023-11/001/src/develop/base/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/base/install.sh -------------------------------------------------------------------------------- /2023-11/001/src/develop/cdk-node/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/cdk-node/.eslintrc.json -------------------------------------------------------------------------------- /2023-11/001/src/develop/cdk-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/cdk-node/Dockerfile -------------------------------------------------------------------------------- /2023-11/001/src/develop/cdk-node/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/cdk-node/init.sh -------------------------------------------------------------------------------- /2023-11/001/src/develop/cdk-node/install.sh: -------------------------------------------------------------------------------- 1 | npm install -g aws-cdk 2 | -------------------------------------------------------------------------------- /2023-11/001/src/develop/front/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/front/.eslintrc.cjs -------------------------------------------------------------------------------- /2023-11/001/src/develop/front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/front/Dockerfile -------------------------------------------------------------------------------- /2023-11/001/src/develop/front/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/develop/front/init.sh -------------------------------------------------------------------------------- /2023-11/001/src/develop/front/install.sh: -------------------------------------------------------------------------------- 1 | npm install -g vite 2 | -------------------------------------------------------------------------------- /2023-11/001/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/docker-compose.yml -------------------------------------------------------------------------------- /2023-11/001/src/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /2023-11/001/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/.gitignore -------------------------------------------------------------------------------- /2023-11/001/src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/README.md -------------------------------------------------------------------------------- /2023-11/001/src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/index.html -------------------------------------------------------------------------------- /2023-11/001/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/package-lock.json -------------------------------------------------------------------------------- /2023-11/001/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/package.json -------------------------------------------------------------------------------- /2023-11/001/src/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/public/vite.svg -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/App.css -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/App.tsx -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/aws.json -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/content/flag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/content/flag.tsx -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/content/index.tsx -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/index.css -------------------------------------------------------------------------------- /2023-11/001/src/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/src/main.tsx -------------------------------------------------------------------------------- /2023-11/001/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /2023-11/001/src/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2023-11/001/src/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/frontend/vite.config.ts -------------------------------------------------------------------------------- /2023-11/001/src/script/cdk-script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/cdk-script/deploy.sh -------------------------------------------------------------------------------- /2023-11/001/src/script/cdk-script/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/cdk-script/destroy.sh -------------------------------------------------------------------------------- /2023-11/001/src/script/cdk-script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/cdk-script/init.sh -------------------------------------------------------------------------------- /2023-11/001/src/script/cdk-script/synth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/cdk-script/synth.sh -------------------------------------------------------------------------------- /2023-11/001/src/script/frontend-script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/frontend-script/init.sh -------------------------------------------------------------------------------- /2023-11/001/src/script/frontend-script/npm-run-build.sh: -------------------------------------------------------------------------------- 1 | docker compose up -it frontend 2 | -------------------------------------------------------------------------------- /2023-11/001/src/script/frontend-script/npm-run-dev.sh: -------------------------------------------------------------------------------- 1 | pushd ./frontend 2 | npm run dev 3 | popd 4 | -------------------------------------------------------------------------------- /2023-11/001/src/script/frontend-script/npm-run-preview.sh: -------------------------------------------------------------------------------- 1 | pushd ./frontend 2 | npm run preview 3 | popd 4 | -------------------------------------------------------------------------------- /2023-11/001/src/script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/001/src/script/init.sh -------------------------------------------------------------------------------- /2023-11/002/_chal/002.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/002.yml -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box.zip -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/API.md -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/README.md -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/assets/image.png -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/.gitignore -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/.npmignore -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/S3_Bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/S3_Bucket.md -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/assets/image.png -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/bin/cdk.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/cdk.json -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/authorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/authorizer.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/const.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/list.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/signUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/signUp.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlDelete.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlGet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlGet.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlPut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/functions/signedUrlPut.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/api/index.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/Dockerfile -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/aws-lambda-rie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/aws-lambda-rie -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/package-lock.json -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/package.json -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/src/index.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/code/tsconfig.json -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/entry.sh -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/container/report/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/container/report/makefile -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/container/index.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/idp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/idp/index.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/web/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/web/deploy.ts -------------------------------------------------------------------------------- /2023-11/002/_chal/miss_box/infra/lib/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_chal/miss_box/infra/lib/web/index.ts -------------------------------------------------------------------------------- /2023-11/002/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-11/002/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/assets/image.png -------------------------------------------------------------------------------- /2023-11/002/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/.gitignore -------------------------------------------------------------------------------- /2023-11/002/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/README.md -------------------------------------------------------------------------------- /2023-11/002/src/cdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/.gitignore -------------------------------------------------------------------------------- /2023-11/002/src/cdk/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/.npmignore -------------------------------------------------------------------------------- /2023-11/002/src/cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/README.md -------------------------------------------------------------------------------- /2023-11/002/src/cdk/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/assets/image.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/bin/cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/bin/cdk.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/cdk.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/jest.config.js -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/authorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/authorizer.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/const.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/list.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/signUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/signUp.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/signedUrlDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/signedUrlDelete.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/signedUrlGet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/signedUrlGet.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/functions/signedUrlPut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/functions/signedUrlPut.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/api/index.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/Dockerfile -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/aws-lambda-rie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/aws-lambda-rie -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/code/package-lock.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/code/package.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/code/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/code/src/index.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/code/tsconfig.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/entry.sh -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/makefile -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-0.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-1.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-2.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-3.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/container/report/tmp/screenshot-4.png -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/container/index.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/idp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/idp/index.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/web/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/web/deploy.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/lib/web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/lib/web/index.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/package-lock.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/package.json -------------------------------------------------------------------------------- /2023-11/002/src/cdk/test/cdk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/test/cdk.test.ts -------------------------------------------------------------------------------- /2023-11/002/src/cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/cdk/tsconfig.json -------------------------------------------------------------------------------- /2023-11/002/src/develop/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/base/Dockerfile -------------------------------------------------------------------------------- /2023-11/002/src/develop/base/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/base/install.sh -------------------------------------------------------------------------------- /2023-11/002/src/develop/cdk-node/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/cdk-node/.eslintrc.json -------------------------------------------------------------------------------- /2023-11/002/src/develop/cdk-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/cdk-node/Dockerfile -------------------------------------------------------------------------------- /2023-11/002/src/develop/cdk-node/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/cdk-node/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/develop/cdk-node/install.sh: -------------------------------------------------------------------------------- 1 | npm install -g aws-cdk 2 | -------------------------------------------------------------------------------- /2023-11/002/src/develop/front/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/front/.eslintrc.cjs -------------------------------------------------------------------------------- /2023-11/002/src/develop/front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/front/Dockerfile -------------------------------------------------------------------------------- /2023-11/002/src/develop/front/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/develop/front/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/develop/front/install.sh: -------------------------------------------------------------------------------- 1 | npm install -g vite 2 | -------------------------------------------------------------------------------- /2023-11/002/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/docker-compose.yml -------------------------------------------------------------------------------- /2023-11/002/src/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /2023-11/002/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/.gitignore -------------------------------------------------------------------------------- /2023-11/002/src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/README.md -------------------------------------------------------------------------------- /2023-11/002/src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/index.html -------------------------------------------------------------------------------- /2023-11/002/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/package-lock.json -------------------------------------------------------------------------------- /2023-11/002/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/package.json -------------------------------------------------------------------------------- /2023-11/002/src/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/public/vite.svg -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/aws.json -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/components/page/header/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/components/page/header/auth.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/components/page/header/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/components/page/header/index.css -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/components/page/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/components/page/header/index.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/components/page/header/noAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/components/page/header/noAuth.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/hooks/useAuthentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/hooks/useAuthentication.ts -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/index.css -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/index.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/layouts/pageBasicLayout/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/layouts/pageBasicLayout/index.css -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/layouts/pageBasicLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/layouts/pageBasicLayout/index.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/main.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/auth.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/file.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/page.css -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/pageProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/pageProps.ts -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/report.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/src/pages/signout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/src/pages/signout.tsx -------------------------------------------------------------------------------- /2023-11/002/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /2023-11/002/src/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2023-11/002/src/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/frontend/vite.config.ts -------------------------------------------------------------------------------- /2023-11/002/src/script/cdk-script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdk-script/deploy.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdk-script/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdk-script/destroy.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdk-script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdk-script/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdk-script/synth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdk-script/synth.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdktf-script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdktf-script/deploy.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdktf-script/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdktf-script/destroy.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdktf-script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdktf-script/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/cdktf-script/synth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/cdktf-script/synth.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/deploy.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/frontend-script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/frontend-script/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/script/frontend-script/npm-run-build.sh: -------------------------------------------------------------------------------- 1 | docker compose up -it frontend 2 | -------------------------------------------------------------------------------- /2023-11/002/src/script/frontend-script/npm-run-dev.sh: -------------------------------------------------------------------------------- 1 | pushd ./frontend 2 | npm run dev 3 | popd 4 | -------------------------------------------------------------------------------- /2023-11/002/src/script/frontend-script/npm-run-preview.sh: -------------------------------------------------------------------------------- 1 | pushd ./frontend 2 | npm run preview 3 | popd 4 | -------------------------------------------------------------------------------- /2023-11/002/src/script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/script/init.sh -------------------------------------------------------------------------------- /2023-11/002/src/tmp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/tmp/index.html -------------------------------------------------------------------------------- /2023-11/002/src/tmp/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/002/src/tmp/test.png -------------------------------------------------------------------------------- /2023-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-11/README.md -------------------------------------------------------------------------------- /2023-12-speedrun/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /2023-12-speedrun/001/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/Dockerfile -------------------------------------------------------------------------------- /2023-12-speedrun/001/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/Makefile -------------------------------------------------------------------------------- /2023-12-speedrun/001/_chal/001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/_chal/001.yml -------------------------------------------------------------------------------- /2023-12-speedrun/001/_chal/x.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/_chal/x.zip -------------------------------------------------------------------------------- /2023-12-speedrun/001/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-12-speedrun/001/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/bun.lockb -------------------------------------------------------------------------------- /2023-12-speedrun/001/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/compose.yaml -------------------------------------------------------------------------------- /2023-12-speedrun/001/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/package.json -------------------------------------------------------------------------------- /2023-12-speedrun/001/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/server.ts -------------------------------------------------------------------------------- /2023-12-speedrun/001/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/001/tsconfig.json -------------------------------------------------------------------------------- /2023-12-speedrun/002/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/Dockerfile -------------------------------------------------------------------------------- /2023-12-speedrun/002/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/Makefile -------------------------------------------------------------------------------- /2023-12-speedrun/002/_chal/002.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/_chal/002.yml -------------------------------------------------------------------------------- /2023-12-speedrun/002/_chal/busybox1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/_chal/busybox1.zip -------------------------------------------------------------------------------- /2023-12-speedrun/002/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-12-speedrun/002/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/bun.lockb -------------------------------------------------------------------------------- /2023-12-speedrun/002/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/compose.yaml -------------------------------------------------------------------------------- /2023-12-speedrun/002/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/index.html -------------------------------------------------------------------------------- /2023-12-speedrun/002/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/package.json -------------------------------------------------------------------------------- /2023-12-speedrun/002/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/server.ts -------------------------------------------------------------------------------- /2023-12-speedrun/002/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/002/tsconfig.json -------------------------------------------------------------------------------- /2023-12-speedrun/003/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/Dockerfile -------------------------------------------------------------------------------- /2023-12-speedrun/003/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/Makefile -------------------------------------------------------------------------------- /2023-12-speedrun/003/_chal/003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/_chal/003.yml -------------------------------------------------------------------------------- /2023-12-speedrun/003/_chal/busybox2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/_chal/busybox2.zip -------------------------------------------------------------------------------- /2023-12-speedrun/003/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-12-speedrun/003/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/bun.lockb -------------------------------------------------------------------------------- /2023-12-speedrun/003/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/compose.yaml -------------------------------------------------------------------------------- /2023-12-speedrun/003/flag: -------------------------------------------------------------------------------- 1 | flag{dummy} 2 | -------------------------------------------------------------------------------- /2023-12-speedrun/003/getflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/getflag.c -------------------------------------------------------------------------------- /2023-12-speedrun/003/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/index.html -------------------------------------------------------------------------------- /2023-12-speedrun/003/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/package.json -------------------------------------------------------------------------------- /2023-12-speedrun/003/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/server.ts -------------------------------------------------------------------------------- /2023-12-speedrun/003/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/003/tsconfig.json -------------------------------------------------------------------------------- /2023-12-speedrun/004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/Dockerfile -------------------------------------------------------------------------------- /2023-12-speedrun/004/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/Makefile -------------------------------------------------------------------------------- /2023-12-speedrun/004/_chal/004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/_chal/004.yml -------------------------------------------------------------------------------- /2023-12-speedrun/004/_chal/semgrep.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/_chal/semgrep.zip -------------------------------------------------------------------------------- /2023-12-speedrun/004/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-12-speedrun/004/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/bun.lockb -------------------------------------------------------------------------------- /2023-12-speedrun/004/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/compose.yaml -------------------------------------------------------------------------------- /2023-12-speedrun/004/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/config.yml -------------------------------------------------------------------------------- /2023-12-speedrun/004/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/index.html -------------------------------------------------------------------------------- /2023-12-speedrun/004/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/package.json -------------------------------------------------------------------------------- /2023-12-speedrun/004/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/server.ts -------------------------------------------------------------------------------- /2023-12-speedrun/004/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/004/tsconfig.json -------------------------------------------------------------------------------- /2023-12-speedrun/005/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/Dockerfile -------------------------------------------------------------------------------- /2023-12-speedrun/005/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/Makefile -------------------------------------------------------------------------------- /2023-12-speedrun/005/_chal/005.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/_chal/005.yml -------------------------------------------------------------------------------- /2023-12-speedrun/005/_chal/nginx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/_chal/nginx.zip -------------------------------------------------------------------------------- /2023-12-speedrun/005/_solution/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/_solution/exploit.sh -------------------------------------------------------------------------------- /2023-12-speedrun/005/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/compose.yaml -------------------------------------------------------------------------------- /2023-12-speedrun/005/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/default.conf.template -------------------------------------------------------------------------------- /2023-12-speedrun/005/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/005/nginx.conf -------------------------------------------------------------------------------- /2023-12-speedrun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/README.md -------------------------------------------------------------------------------- /2023-12-speedrun/author-writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/author-writeup.pdf -------------------------------------------------------------------------------- /2023-12-speedrun/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2023-12-speedrun/screenshot.png -------------------------------------------------------------------------------- /2024-06-firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/README.md -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/.firebaserc -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/Makefile -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/README.md: -------------------------------------------------------------------------------- 1 | # Chall-00 - Practice 2 | 3 | 想定難易度: Warmup 4 | 5 | DevTools と JavaScript を使って Firestore からドキュメントを取得してみましょう。 6 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/add-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/add-flag.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/firebase.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/firestore.indexes.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/firestore.rules -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/.eslintrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/.prettierrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/public/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/public/vite.svg -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/src/App.vue -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/src/firebase.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/src/main.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/src/style.css -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/frontend/vite.config.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/solver/flag.txt: -------------------------------------------------------------------------------- 1 | flag{w3lc0m3_70_fl477_53cur17y_f1r3b453_m1n1_c7f} 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-00/solver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-00/solver/index.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/.firebaserc -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/Makefile -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/README.md -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/add-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/add-flag.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/firebase.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/firestore.indexes.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/firestore.rules -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/.eslintrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/.prettierrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/public/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/public/vite.svg -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/src/App.vue -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/src/firebase.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/src/main.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/src/style.css -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/frontend/vite.config.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/solver/flag.txt: -------------------------------------------------------------------------------- 1 | flag{b3_c4r3ful_w17h_53lf_516nup} 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-01/solver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-01/solver/index.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/.firebaserc -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/Makefile -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/README.md: -------------------------------------------------------------------------------- 1 | # Chall-02 - Posts 2 | 3 | 想定難易度: Easy 4 | 5 | 秘密にしたい投稿もありますよね。 6 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/add-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/add-flag.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/firebase.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/firestore.indexes.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/firestore.rules -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/.eslintrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/.prettierrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/public/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/public/vite.svg -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/src/App.vue -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/src/firebase.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/src/main.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/src/style.css -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/frontend/vite.config.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/solver/flag.txt: -------------------------------------------------------------------------------- 1 | flag{pl5_ch3ck_r3qu357_4u7h_u1d_pr0p3rly} 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-02/solver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-02/solver/index.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/.firebaserc -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/Makefile -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/README.md: -------------------------------------------------------------------------------- 1 | # Chall-03 - Flatt Clicker 2 | 3 | 想定難易度: Medium 4 | 5 | たくさんクリックしましょう 6 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/add-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/add-flag.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/firebase.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/firestore.indexes.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/firestore.rules -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/.eslintrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/.prettierrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/public/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/public/vite.svg -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/src/App.vue -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/src/firebase.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/flatt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/src/flatt-logo.png -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/src/main.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/src/style.css -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/frontend/vite.config.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/.eslintrc.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/src/index.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/functions/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/solver/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/solver/flag.txt -------------------------------------------------------------------------------- /2024-06-firebase/chall-03/solver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-03/solver/index.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/.firebaserc -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/Makefile -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/README.md: -------------------------------------------------------------------------------- 1 | # Chall-04 - NoteExporter 2 | 3 | 想定難易度: Hard 4 | 5 | 大事なデータは Cloud Storage にエクスポートすると安心! 6 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/add-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/add-flag.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/firebase.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/firestore.indexes.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/firestore.rules -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/.eslintrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/.prettierrc.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/public/index.html -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/public/vite.svg -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/src/App.vue -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/src/firebase.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/src/main.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/src/style.css -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/frontend/vite.config.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/.eslintrc.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/.gitignore -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/package-lock.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/package.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/src/index.ts -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/functions/tsconfig.json -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/solver/flag.txt: -------------------------------------------------------------------------------- 1 | flag{7h4nk_y0u_f0r_pl4y1n6!!!} 2 | -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/solver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/solver/index.js -------------------------------------------------------------------------------- /2024-06-firebase/chall-04/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2024-06-firebase/chall-04/storage.rules -------------------------------------------------------------------------------- /2025-08-minictf-7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/.DS_Store -------------------------------------------------------------------------------- /2025-08-minictf-7/001/challenge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/challenge/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/001/challenge/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/challenge/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/001/challenge/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/challenge/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/001/challenge/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/challenge/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/001/challenge/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/challenge/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/001/distfiles/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/distfiles/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/001/distfiles/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/distfiles/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/001/distfiles/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/distfiles/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/001/distfiles/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/distfiles/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/001/distfiles/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/001/distfiles/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/flag: -------------------------------------------------------------------------------- 1 | flag{tiger_bar_monkey_29a4530e} 2 | -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/static/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/static/1.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/static/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/static/2.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/static/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/static/3.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/static/script.js -------------------------------------------------------------------------------- /2025-08-minictf-7/002/challenge/web/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/challenge/web/static/style.css -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/flag: -------------------------------------------------------------------------------- 1 | flag{DUMMY} 2 | -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/static/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/static/1.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/static/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/static/2.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/static/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/static/3.txt -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/static/script.js -------------------------------------------------------------------------------- /2025-08-minictf-7/002/distfiles/web/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/002/distfiles/web/static/style.css -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/003/challenge/web/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/challenge/web/readflag.c -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/003/distfiles/web/readflag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/003/distfiles/web/readflag.c -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/runner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/runner/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/runner/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/runner/app.py -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/runner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/runner/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/sandbox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/sandbox/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/sandbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/sandbox/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/sandbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/sandbox/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/004/challenge/sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/challenge/sandbox/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/compose.yaml -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/runner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/runner/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/runner/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/runner/app.py -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/runner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/runner/index.html -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/sandbox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/sandbox/Dockerfile -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/sandbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/sandbox/index.js -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/sandbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/sandbox/package-lock.json -------------------------------------------------------------------------------- /2025-08-minictf-7/004/distfiles/sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/004/distfiles/sandbox/package.json -------------------------------------------------------------------------------- /2025-08-minictf-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/README.md -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/.DS_Store -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/001.ctfire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/001.ctfire.yml -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/002.ctfire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/002.ctfire.yml -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/003.ctfire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/003.ctfire.yml -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/004.ctfire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/004.ctfire.yml -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/dist-001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/dist-001.zip -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/dist-002.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/dist-002.zip -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/dist-003.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/dist-003.zip -------------------------------------------------------------------------------- /2025-08-minictf-7/_chal/dist-004.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/_chal/dist-004.zip -------------------------------------------------------------------------------- /2025-08-minictf-7/solver/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/solver/1.sh -------------------------------------------------------------------------------- /2025-08-minictf-7/solver/2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/solver/2.sh -------------------------------------------------------------------------------- /2025-08-minictf-7/solver/3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/solver/3.sh -------------------------------------------------------------------------------- /2025-08-minictf-7/solver/4.json: -------------------------------------------------------------------------------- 1 | {"directives":{"script-src":["give me flag!"]}} -------------------------------------------------------------------------------- /2025-08-minictf-7/solver/solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/2025-08-minictf-7/solver/solution.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatt-security/mini-ctf/HEAD/LICENSE --------------------------------------------------------------------------------