-
Notifications
You must be signed in to change notification settings - Fork 240
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
feat: add JTI validation feature #4560
Merged
paullatzelsperger
merged 12 commits into
eclipse-edc:main
from
paullatzelsperger:3749_jti_validation_service
Oct 21, 2024
Merged
feat: add JTI validation feature #4560
paullatzelsperger
merged 12 commits into
eclipse-edc:main
from
paullatzelsperger:3749_jti_validation_service
Oct 21, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
paullatzelsperger
force-pushed
the
3749_jti_validation_service
branch
3 times, most recently
from
October 21, 2024 12:52
146e4f6
to
872bccf
Compare
paullatzelsperger
requested review from
wolf4ood and
ndr-brt
and removed request for
ndr-brt
October 21, 2024 13:08
paullatzelsperger
force-pushed
the
3749_jti_validation_service
branch
from
October 21, 2024 13:14
872bccf
to
a2c1b88
Compare
wolf4ood
approved these changes
Oct 21, 2024
...ql/src/test/java/org/eclipse/edc/edr/store/index/sql/SqlJtiValidationStoreExtensionTest.java
Outdated
Show resolved
Hide resolved
…java/org/eclipse/edc/edr/store/index/sql/SqlJtiValidationStoreExtensionTest.java Co-authored-by: Enrico Risa <enrico.risa@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this PR changes/adds
adds a feature to validate the uniqueness of Token-IDs ("jti"). To do that, a
JtiValidationStore
class was implemented (in-mem + SQL) that holds valid JTI strings and is cleaned up periodically by a reaper thread.Store implementations for in-mem and SQL were added.
Why it does that
to be able to validate JTI claims
Further notes
token-core
module should be split up into atoken-core
(containing the extension) and atoken-lib
modules (containing the rules, in-mem store, and other impls etc.). This will come in a subsequent PR (Remove references tocore:common:token-core
#4389), I didn't want to blow the changeset up even more.EmbeddedSecureTokenService
, but are validated in theAccessTokenVerifierImpl
of IdentityHub. A related PR will be created shortly.Linked Issue(s)
Closes #3749
Please be sure to take a look at the contributing guidelines and our etiquette for pull requests.