{"id":"PYSEC-2026-2589","summary":" Lemur: JWT verifier honors attacker-supplied alg, enabling ATO","details":"\u003c!-- obsidian --\u003e\u003ch1 data-heading=\"Lemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header — defense-in-depth gap; chain-dependent ATO with secret disclosure\"\u003eLemur 1.9.0: JWT verifier trusts attacker-supplied alg from token header — 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 — 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 — 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['alg']])\u003c/code\u003e. This is a classic JWT antipattern: the server is supposed to pin the algorithm, not the attacker. PyJWT 2.x's default config rejects \u003ccode\u003ealg=none\u003c/code\u003e, 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 \u003ccode\u003ealg=HS256\u003c/code\u003e and forge tokens using the public key as the HMAC secret — the legacy \"RS256→HS256 confusion\" trick. Second, the audit-log surface that records \u003ccode\u003ealg\u003c/code\u003e 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.\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's 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=[&#x3C;attacker_value\u003e])\u003c/code\u003e. The \u003ccode\u003ealgorithms\u003c/code\u003e 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.\u003c/p\u003e\n\u003cp\u003eWhy this is MEDIUM and not CRITICAL today: PyJWT 2.x's \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 — 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→HS256 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't, 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's 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't 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 — 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'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.\u003c/p\u003e\n\u003ch2 data-heading=\"Proof of Concept &#x26; Steps to Reproduce\"\u003eProof of Concept &#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 — Baseline legitimate login\"\u003eStep 1 — 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 'Content-Type: application/json' \\\n  -d '{\"email\":\"operator@netflix.example\"}'\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 — baseline auth path works.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 2 — Confirm the antipattern in source\"\u003eStep 2 — 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\"]]   # &#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 — Forge &#x60;alg=none&#x60; (PyJWT 2.x rejects)\"\u003eStep 3 — 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 'HTTP %{http_code}\n' \\\n  http://127.0.0.1:18001/api/1/users/me \\\n  -H 'Authorization: Bearer eyJhbGciOiAibm9uZSIsICJ0eXAiOiAiSldUIn0.eyJzdWIiOiAyLCAiZW1haWwiOiAiYWRtaW5AbmV0ZmxpeC5leGFtcGxlIn0.'\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 — Chain demo: config disclosure → HS256 forgery\"\u003eStep 4 — Chain demo: config disclosure → 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 — 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 = 'lab-deploy-token-secret-DO-NOT-USE-IN-PROD-aabbccdd11'\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({'sub':2,'email':'admin@netflix.example'}, '&#x3C;leaked\u003e', algorithm='HS256'))\"\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'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.\u003c/p\u003e\n\u003ch3 data-heading=\"Step 5 — Verdict\"\u003eStep 5 — Verdict\u003c/h3\u003e\n\u003cpre\u003e\u003ccode\u003eVERDICT: ANTIPATTERN CONFIRMED — 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 → HS256 forgery wins\n\u003c/code\u003e\u003c/pre\u003e\n\n# Exploit Code & 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's \u003ccode\u003ealgorithms\u003c/code\u003e 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 \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's 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's \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 — 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.\u003c/p\u003e\n\u003cp\u003eThe 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 \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's \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'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.\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) — 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 — 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.\u003c/p\u003e\n\u003cp\u003eThe 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 \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 — 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't 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","aliases":["CVE-2026-55165","GHSA-r9gp-7f88-9r54"],"modified":"2026-07-13T16:32:03.081746610Z","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"}],"affected":[{"package":{"name":"lemur","ecosystem":"PyPI","purl":"pkg:pypi/lemur"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"0"},{"fixed":"1.9.2"}]}],"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"],"database_specific":{"source":"https://github.com/pypa/advisory-database/blob/main/vulns/lemur/PYSEC-2026-2589.yaml"}}],"schema_version":"1.7.5","severity":[{"type":"CVSS_V3","score":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N"}]}