We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71eeec commit 999a7d9Copy full SHA for 999a7d9
SECURITY-REVIEW.md
@@ -237,6 +237,11 @@
237
238
### 13. Missing JWT Format Guards in get_jwt_user
239
240
+> [!NOTE]
241
+> ✅ **Done**: JWT format and length guards now applied in `get_jwt_user` before
242
+> decoding. Tokens exceeding `MAX_JWT_TOKEN_LENGTH` or failing `is_valid_jwt_format`
243
+> checks are rejected with 401 Unauthorized.
244
+
245
**Location**: `app/managers/auth.py:478-544` (`get_jwt_user`)
246
247
- **Issue**: `get_jwt_user` doesn't apply the JWT format/length guard you already
0 commit comments