296,663
Total vulnerabilities in the database
Authlib’s JWS verification accepts tokens that declare unknown critical header parameters (crit
), violating RFC 7515 “must‑understand” semantics. An attacker can craft a signed token with a critical header (for example, bork
or cnf
) that strict verifiers reject but Authlib accepts. In mixed‑language fleets, this enables split‑brain verification and can lead to policy bypass, replay, or privilege escalation.
authlib.jose.JsonWebSignature.deserialize_compact(...)
crit
RFC 7515 (JWS) §4.1.11 defines crit
as a “must‑understand” list: recipients MUST understand and enforce every header parameter listed in crit
, otherwise they MUST reject the token. Security‑sensitive semantics such as token binding (e.g., cnf
from RFC 7800) are often conveyed via crit
.
Observed behavior with Authlib 1.6.3:
crit: ["cnf"]
and a cnf
object, or crit: ["bork"]
with an unknown parameter, Authlib verifies the signature and returns the payload without rejecting the token or enforcing semantics of the critical parameter.jose
v5 both reject such tokens by default when crit
lists unknown names.Impact in heterogeneous fleets:
crit
carries binding or policy information.This repository provides a multi‑runtime PoC demonstrating the issue across Python (Authlib), Node (jose
v5), and Java (Nimbus).
Enter the directory authlib-crit-bypass-poc & run following commands.
make setup
make tokens
tokens/unknown_crit.jwt
with protected header:
{ "alg": "HS256", "crit": ["bork"], "bork": "x" }
tokens/cnf_header.jwt
with protected header:
{ "alg": "HS256", "crit": ["cnf"], "cnf": {"jkt": "thumb-42"} }
Run the cross‑runtime demo:
make demo
Expected output for each token (strict verifiers reject; Authlib accepts):
For tokens/unknown_crit.jwt
:
Strict(Nimbus): REJECTED (unknown critical header: bork)
Strict(Node jose): REJECTED (unrecognized crit)
Lenient(Authlib): ACCEPTED -> payload={'sub': '123', 'role': 'user'}
For tokens/cnf_header.jwt
:
Strict(Nimbus): REJECTED (unknown critical header: cnf)
Strict(Node jose): REJECTED (unrecognized crit)
Lenient(Authlib): ACCEPTED -> payload={'sub': '123', 'role': 'user'}
Environment notes:
1.6.3
(from PyPI)jose
version: ^5
9.37.x
0123456789abcdef0123456789abcdef
crit
“must‑understand” semantics; specification non‑compliance leading to authentication/authorization policy bypass.crit
to carry mandatory security semantics (e.g., token binding via cnf
) or operates in a heterogeneous fleet with strict verifiers elsewhere.crit
cnf
)