├── .gitignore ├── 0x01Merge ├── README.md ├── app.js └── package.json ├── 0x02Host ├── .idea │ ├── .gitignore │ ├── 0x02 - Host.iml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── app.js ├── host.js ├── package.json ├── pnpm-lock.yaml └── topsecret.env ├── 0x03time ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── api │ │ ├── auth │ │ │ ├── login │ │ │ │ └── route.ts │ │ │ ├── logout │ │ │ │ └── route.ts │ │ │ └── register │ │ │ │ └── route.ts │ │ ├── credits │ │ │ └── transfer │ │ │ │ └── route.ts │ │ └── user │ │ │ └── profile │ │ │ └── route.ts │ ├── components │ │ ├── CreditTransfer.tsx │ │ ├── Navigation.tsx │ │ └── auth │ │ │ ├── LoginForm.tsx │ │ │ └── RegisterForm.tsx │ ├── dashboard │ │ └── page.tsx │ ├── error.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── register │ │ └── page.tsx ├── docker-compose.yml ├── eslint.config.mjs ├── lib │ ├── auth.ts │ └── prisma.ts ├── next.config.js ├── next.config.ts ├── nginx │ ├── Dockerfile │ ├── generate-cert.sh │ └── nginx.conf ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── prisma │ ├── dev.db │ └── schema.prisma ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── start.sh ├── tailwind.config.ts └── tsconfig.json ├── LICENSE ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/.gitignore -------------------------------------------------------------------------------- /0x01Merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x01Merge/README.md -------------------------------------------------------------------------------- /0x01Merge/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x01Merge/app.js -------------------------------------------------------------------------------- /0x01Merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x01Merge/package.json -------------------------------------------------------------------------------- /0x02Host/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/.idea/.gitignore -------------------------------------------------------------------------------- /0x02Host/.idea/0x02 - Host.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/.idea/0x02 - Host.iml -------------------------------------------------------------------------------- /0x02Host/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/.idea/modules.xml -------------------------------------------------------------------------------- /0x02Host/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/.idea/vcs.xml -------------------------------------------------------------------------------- /0x02Host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/README.md -------------------------------------------------------------------------------- /0x02Host/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/app.js -------------------------------------------------------------------------------- /0x02Host/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/host.js -------------------------------------------------------------------------------- /0x02Host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/package.json -------------------------------------------------------------------------------- /0x02Host/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x02Host/pnpm-lock.yaml -------------------------------------------------------------------------------- /0x02Host/topsecret.env: -------------------------------------------------------------------------------- 1 | thisistopsecretfile -------------------------------------------------------------------------------- /0x03time/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/.eslintrc.json -------------------------------------------------------------------------------- /0x03time/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/.gitignore -------------------------------------------------------------------------------- /0x03time/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/Dockerfile -------------------------------------------------------------------------------- /0x03time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/README.md -------------------------------------------------------------------------------- /0x03time/app/api/auth/login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/api/auth/login/route.ts -------------------------------------------------------------------------------- /0x03time/app/api/auth/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/api/auth/logout/route.ts -------------------------------------------------------------------------------- /0x03time/app/api/auth/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/api/auth/register/route.ts -------------------------------------------------------------------------------- /0x03time/app/api/credits/transfer/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/api/credits/transfer/route.ts -------------------------------------------------------------------------------- /0x03time/app/api/user/profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/api/user/profile/route.ts -------------------------------------------------------------------------------- /0x03time/app/components/CreditTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/components/CreditTransfer.tsx -------------------------------------------------------------------------------- /0x03time/app/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/components/Navigation.tsx -------------------------------------------------------------------------------- /0x03time/app/components/auth/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/components/auth/LoginForm.tsx -------------------------------------------------------------------------------- /0x03time/app/components/auth/RegisterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/components/auth/RegisterForm.tsx -------------------------------------------------------------------------------- /0x03time/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/dashboard/page.tsx -------------------------------------------------------------------------------- /0x03time/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/error.tsx -------------------------------------------------------------------------------- /0x03time/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/favicon.ico -------------------------------------------------------------------------------- /0x03time/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/globals.css -------------------------------------------------------------------------------- /0x03time/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/layout.tsx -------------------------------------------------------------------------------- /0x03time/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/login/page.tsx -------------------------------------------------------------------------------- /0x03time/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/not-found.tsx -------------------------------------------------------------------------------- /0x03time/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/page.tsx -------------------------------------------------------------------------------- /0x03time/app/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/app/register/page.tsx -------------------------------------------------------------------------------- /0x03time/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/docker-compose.yml -------------------------------------------------------------------------------- /0x03time/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/eslint.config.mjs -------------------------------------------------------------------------------- /0x03time/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/lib/auth.ts -------------------------------------------------------------------------------- /0x03time/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/lib/prisma.ts -------------------------------------------------------------------------------- /0x03time/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/next.config.js -------------------------------------------------------------------------------- /0x03time/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/next.config.ts -------------------------------------------------------------------------------- /0x03time/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/nginx/Dockerfile -------------------------------------------------------------------------------- /0x03time/nginx/generate-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/nginx/generate-cert.sh -------------------------------------------------------------------------------- /0x03time/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/nginx/nginx.conf -------------------------------------------------------------------------------- /0x03time/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/package-lock.json -------------------------------------------------------------------------------- /0x03time/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/package.json -------------------------------------------------------------------------------- /0x03time/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/postcss.config.mjs -------------------------------------------------------------------------------- /0x03time/prisma/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/prisma/dev.db -------------------------------------------------------------------------------- /0x03time/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/prisma/schema.prisma -------------------------------------------------------------------------------- /0x03time/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/public/file.svg -------------------------------------------------------------------------------- /0x03time/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/public/globe.svg -------------------------------------------------------------------------------- /0x03time/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/public/next.svg -------------------------------------------------------------------------------- /0x03time/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/public/vercel.svg -------------------------------------------------------------------------------- /0x03time/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/public/window.svg -------------------------------------------------------------------------------- /0x03time/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/start.sh -------------------------------------------------------------------------------- /0x03time/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/tailwind.config.ts -------------------------------------------------------------------------------- /0x03time/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/0x03time/tsconfig.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdisec/codebreakers-dev-to-hacker/HEAD/package.json --------------------------------------------------------------------------------