Security
Debug API authentication
Trace a failing bearer token from decode through signature checks. Each step uses a different DevPipe tool; deep explanations live on those tool pages.
- JWT Debugger
Decode the token and verify exp, nbf, aud, iss, and alg in the header.
Reference guide and full documentation on the tool page →
- HMAC-SHA256 Builder
Recompute HMAC-SHA256 if the API uses shared-secret signing instead of JWT.
Reference guide and full documentation on the tool page →
- Regex Matcher
Test claim or header patterns when middleware uses custom validation rules.
Reference guide and full documentation on the tool page →
