Why these auth utilities?
OAuth and OIDC debugging often needs quick Base64URL transforms, checking whether granted scopes cover required ones, and verifying CORS preflight responses from token or userinfo endpoints.
These utilities run in your browser — Base64URL and scope comparison never leave the tab; CORS probes use browser fetch (mode cors) against the URL you provide.
How to use this tool
- Use Base64URL to encode UTF-8 text or decode tokens/segments.
- Paste granted vs required scopes to see matched, missing, and extra entries.
- Enter an endpoint URL and OPTIONS preflight parameters to inspect ACAO / ACAM / ACAH headers.
Frequently asked questions
Does CORS inspection proxy through stbox?
No. The browser issues the OPTIONS request directly. Opaque CORS failures are reported as the browser sees them.
Are tokens stored?
No. Base64URL and scope tools keep values in memory for this tab only.