79451692

Date: 2025-02-19 14:29:51
Score: 4
Natty:
Report link

Can you give any example for the invalid JWT? If you receive 400 code, your JWT Token might be malformed. For example;

{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1617201283,
  "scope": "read:data"
}

This token doesn't have "write:data" right. But if you send

{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1617201283,
}

This token might be considered as malformed.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you give any
  • Low reputation (1):
Posted by: Ali İhsan TAŞDELEN