jwt_analyze
Analyze JSON Web Tokens (JWTs) to detect vulnerabilities and security issues. Identify potential risks in token structure, claims, and signatures for enhanced security.
Instructions
Analyze a JWT for common vulnerabilities and issues.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token | Yes |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"title": "Token",
"type": "string"
}
},
"required": [
"token"
],
"title": "jwt_analyzeArguments",
"type": "object"
}