A simple mock SAML 2.0 Identity Provider
Go to file
dependabot[bot] fc85b5ec6c
build(deps-dev): bump eslint from 9.25.0 to 9.25.1 (#934)
Bumps [eslint](https://github.com/eslint/eslint) from 9.25.0 to 9.25.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.25.0...v9.25.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 9.25.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-22 19:21:08 +01:00
.github Update dependabot.yml 2025-04-09 09:44:29 +01:00
components link to github repo 2022-12-15 22:20:22 +00:00
lib fixed namespace login (#473) 2024-01-21 01:01:09 +00:00
pages fixed text 2024-03-16 20:01:08 +00:00
public updated logo 2022-05-22 19:57:08 +01:00
styles Download metadata url (#91) 2022-10-25 17:38:56 +01:00
types Cleanup 2022-02-18 09:37:27 +05:30
utils updated saml20 (#534) 2024-03-08 13:34:09 +00:00
.dockerignore Optimise multi platform build (#128) 2022-12-09 15:04:40 +00:00
.env.example fixed build when NEXT_PUBLIC_GTM_ID is not defined 2022-03-01 13:31:28 +00:00
.gitignore added vscode to gitignore 2024-02-04 15:39:25 +00:00
.prettierignore build(deps): bump the next group with 2 updates (#758) 2024-10-22 20:21:56 +03:00
.prettierrc.js prettier fix 2024-02-04 15:38:33 +00:00
.release-it.json added release-it 2023-12-25 12:15:10 +00:00
app.json prettier fix 2024-02-04 15:38:33 +00:00
Dockerfile fix: Dockerfile to reduce vulnerabilities (#709) 2024-09-10 11:31:15 +01:00
eslint.config.cjs build(deps): bump the next group with 2 updates (#758) 2024-10-22 20:21:56 +03:00
LICENSE added license file 2022-02-23 17:16:41 +00:00
next-env.d.ts npm update and cleanup of experimental options 2024-12-19 13:36:00 +00:00
next.config.js npm update and cleanup of experimental options 2024-12-19 13:36:00 +00:00
package-lock.json build(deps-dev): bump eslint from 9.25.0 to 9.25.1 (#934) 2025-04-22 19:21:08 +01:00
package.json build(deps-dev): bump eslint from 9.25.0 to 9.25.1 (#934) 2025-04-22 19:21:08 +01:00
postcss.config.js prettier fix 2024-02-04 15:38:33 +00:00
Procfile Oneclick deploy button (#2) 2022-02-28 21:54:20 +00:00
README.md Update README.md 2024-04-03 19:11:16 +01:00
tailwind.config.js cleanup theme, we use default in any case (#535) 2024-03-08 15:17:34 +00:00
tsconfig.json prettier fix 2024-02-04 15:38:33 +00:00

Mock SAML from BoxyHQ

Deploy Deploy with Vercel

Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.

Namespaces

Try Mock SAML, our free hosted service. Whilst we use the root domain for our own testing you can create your own unique namespace by navigating to https://mocksaml.com/namespace/any_name_of_your_choice.

Install

With Docker

The docker container can be found at boxyhq/mock-saml.

docker run \
  -p 4000:4000 \
  -e APP_URL="http://localhost:4000" \
  -e ENTITY_ID="https://saml.example.com/entityid" \
  -e PUBLIC_KEY="<PUBLIC_KEY>" \
  -e PRIVATE_KEY="<PRIVATE_KEY>" \
  -d boxyhq/mock-saml

Refer to env.example for instructions on how to create the key pair. Replace <PUBLIC_KEY> with Base64 encoded value of public key. Replace <PRIVATE_KEY> with Base64 encoded value of private key.

Without Docker

git clone https://github.com/boxyhq/mock-saml.git
cd mock-saml

Install dependencies

npm install

Update .env with your own keys.

cp .env.example .env

Build the Next.js app.

npm run build

Run the Mock SAML server.

npm run start

Contributing

Thanks for taking the time to contribute! Contributions make the open-source community a fantastic place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Please try to create bug reports that are:

  • Reproducible. Include steps to reproduce the problem.
  • Specific. Include as much detail as possible: which version, what environment, etc.
  • Unique. Do not duplicate existing opened issues.
  • Scoped to a Single Bug. One bug per report.

Community

  • Discord (For live discussion with the Open-Source Community and BoxyHQ team)
  • Twitter (Follow us)
  • GitHub Issues (Contributions, report issues and product ideas)