-
Notifications
You must be signed in to change notification settings - Fork 0
fix: harden widget SSO JWT token verification #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ALTER TABLE "organization" ADD COLUMN "jwt_max_token_lifetime_minutes" integer; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔒 Security & Privacy | 🟠 Major | ⚡ Quick win Enforce a positive cap that cannot exceed 24 hours. The migration accepts any integer. Both authentication paths convert every non-null value into a duration. A stored value such as
📍 Affects 3 files
🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Resolve the revocation behavior conflict.
Line 79 says tokens stop verifying immediately. It also says the grace period still applies. Tokens cannot both stop verifying and remain accepted during the grace period.
If the grace period applies, state that tokens signed with the revoked secret continue to verify for 24 hours.
🤖 Prompt for AI Agents