Companion code for the follow-up article. The repository now holds two Maven
projects sharing one docs/ tree:
jwt-authentication/ the hand-written filter application (unchanged, moved)
oauth2-resource-server/ a resource server, a Keycloak compose, and a stub
issuer whose JWK Set can be mutated on command
The stub exists because Keycloak will not rotate a signing key at a chosen
second, report how many times its JWKS endpoint was fetched, or drop a key from
the published set on request - and the caching and rotation measurements need
all three. The Keycloak run confirms the same code path against a real issuer.
Findings captured under docs/output/, all from real runs:
* The default validator stack does not check aud. A token minted for another
service in the same realm is accepted.
* Spring Security builds its JWKSource with refreshAheadCache(false) and
rateLimited(false), overriding two of Nimbus's protective defaults, and
enables Nimbus caching only when NO Spring cache was supplied - so
supplying one removes the five-minute expiry.
* A key retired from the JWK Set stops being accepted at t+300s with the
default cache, and never with a Spring cache that has no TTL.
* 25 tokens carrying an unknown kid produce 25 JWKS fetches at the issuer,
through permitAll() endpoints included.
* A hyphenated client id in an authorities-claim-expression parses as
subtraction; the SpelEvaluationException is swallowed and logged at TRACE.
* A clientScopes key in a Keycloak realm import replaces the built-in scopes
rather than adding to them.
New docs chapters 12-18. README covers both projects. Existing docs and scripts
updated for the new paths; no docs/output/ file from the first article moved, so
links in the published article still resolve.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013f7f2XZXrQ6gW3RtZE187t
52 lines
2.1 KiB
Bash
Executable File
52 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# The claim checks that decide whether a correctly signed token is yours.
|
|
# Usage: ./scripts/issuer-audience-demo.sh "<profiles the resource server is running with>"
|
|
set -eu
|
|
. "$(dirname "$0")/lib.sh"
|
|
PROFILES="${1:-unknown}"
|
|
|
|
head1 "resource server profiles: $PROFILES"
|
|
|
|
head1 "1. A correct token"
|
|
T=$(stub_token "sub=alice&aud=reports-api")
|
|
claims "$T"
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "2. Signed by the right key, but iss says something else"
|
|
echo "The signature verifies. The key is the same key. Only the string differs."
|
|
T=$(stub_token "sub=alice&aud=reports-api&issuerOverride=http://localhost:9000/other")
|
|
claims "$T"
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "3. A token minted for a different service in the same realm"
|
|
echo "This is the one that silently works when nothing checks aud."
|
|
T=$(stub_token "sub=alice&aud=billing-api")
|
|
claims "$T"
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "4. Expired 90 seconds ago"
|
|
echo "The default clock skew is 60s, so a token has to be more than a minute stale"
|
|
echo "before JwtTimestampValidator refuses it."
|
|
T=$(stub_token "sub=alice&aud=reports-api&issuedAgoSeconds=120&expiresInSeconds=30")
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "5. Expired 30 seconds ago - inside the default clock skew"
|
|
T=$(stub_token "sub=alice&aud=reports-api&issuedAgoSeconds=60&expiresInSeconds=30")
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "6. typ=at+jwt, which RFC 9068 says an access token SHOULD carry"
|
|
echo "The default validator stack contains JwtTypeValidator.jwt(), which accepts only an"
|
|
echo "absent typ or typ=JWT. Whether this passes depends on the attyp profile."
|
|
T=$(stub_token "sub=alice&aud=reports-api&typ=at%2Bjwt")
|
|
claims "$T"
|
|
call "GET /api/me" "$RS/api/me" "$T"
|
|
|
|
head1 "7. No token at all"
|
|
call "GET /api/me" "$RS/api/me"
|
|
call "GET /api/public/ping" "$RS/api/public/ping"
|
|
|
|
head1 "8. The endpoint nobody configured"
|
|
echo "Spring Security 7 publishes RFC 9728 protected resource metadata and points the"
|
|
echo "WWW-Authenticate challenge at it. It answers without a token."
|
|
call "GET /.well-known/oauth-protected-resource" "$RS/.well-known/oauth-protected-resource"
|