Severity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
Network API requires only a valid role-member session (PR:L); no complexity; integrity and availability impacts are low because the attacker is bounded to roles they already belong to and cannot achieve full admin escalation.
Primary rating from Vendor (https://github.com/Netflix/lemur).
CVSS VectorVendor: https://github.com/Netflix/lemur
Lifecycle Timeline
2DescriptionCVE.org
Summary
The PUT /api/1/roles/<id> handler in lemur/roles/views.py gates only on RoleMemberPermission(role_id).can(), which is satisfied for any user who is already a member of the target role. The handler then passes data["users"] and data["name"] directly to service.update(), permitting any role member to rewrite that role's membership list and name. The companion DELETE handler on the same resource is correctly gated by @admin_permission.require; the asymmetry between PUT and DELETE on identical resources indicates an authorization oversight rather than a deliberate design choice.
Root Cause
lemur/roles/views.py:298:
permission = RoleMemberPermission(role_id)
if permission.can():
return service.update(
role_id, data["name"], data.get("description"), data.get("users")
)
return dict(message="You are not authorized to modify this role."), 403
@admin_permission.require(http_exception=403)
def delete(self, role_id):
...lemur/auth/permissions.py:56:
class RoleMemberPermission(Permission):
def __init__(self, role_id):
needs = [RoleNeed("admin"), RoleMemberNeed(role_id)]
super().__init__(*needs)flask_principal.Permission.allows() is OR-semantic across needs, so RoleMemberPermission(role_id).can() returns True if the caller is either an admin or a member of role_id. The PUT handler treats membership-of-self as sufficient to mutate the role; DELETE does not.
Affected Endpoints
| Method | Path | Source |
|---|---|---|
| PUT | /api/1/roles/<id> | lemur/roles/views.py:298 |
Impact
A user who is a member of role X can:
- Add other users to role X, granting them whatever certificate/authority access role X confers. In installs that delegate certificate or authority ownership to non-admin roles, this promotes arbitrary users to peer of every other role member.
- Remove other users from role X, denying their access (availability / governance impact).
- Rename role X to an arbitrary string.
The "rename to admin" path is blocked by the unique=True constraint on Role.name and by strict equality in User.is_admin, so direct self-promotion to admin via rename is not possible on default installs. The principal exploitation surface is membership rewriting and lateral promotion of colluders within roles the attacker already belongs to.
Remediation
Add @admin_permission.require(http_exception=403) to Roles.put, mirroring the existing decorator on Roles.delete:
@admin_permission.require(http_exception=403)
def put(self, role_id, data=None):
...If selective delegation is intended (role owners managing their own roles), that capability should be modeled with a dedicated permission class whose Needs reflect role *ownership* rather than membership, and the name field should be excluded from the mutable schema on that delegated path.
Steps to Reproduce
- Set up Lemur with default configuration. Create an admin user
admin, and two non-admin usersaliceandbob. Addaliceto the built-inoperatorrole; leavebobwith no roles or withread-onlyonly. - Authenticate as
aliceand capture the JWT:
curl -X POST https://lemur.local/api/1/auth/login \
-H "Content-Type: application/json" \
-d '{"username":"alice","password":"<alice_pw>"}'- Confirm the initial state -
bobis not a member ofoperator:
curl https://lemur.local/api/1/roles?filter=name;operator \
-H "Authorization: Bearer <admin_jwt>"
# observe: alice present in users list, bob absent- As
alice, send a PUT that injectsbobinto theoperatorrole:
curl -X PUT https://lemur.local/api/1/roles/<operator_role_id> \
-H "Authorization: Bearer <alice_jwt>" \
-H "Content-Type: application/json" \
-d '{
"name": "operator",
"description": "modified by alice",
"users": [{"id": <alice_id>}, {"id": <bob_id>}]
}'
# observe: HTTP 200- Confirm
bobis now a member ofoperator:
curl https://lemur.local/api/1/roles?filter=name;operator \
-H "Authorization: Bearer <admin_jwt>"
# observe: bob now present in users listStep 4 succeeds despite alice not being an admin. The same handler also accepts a name field; substituting "name": "operator_v2" in step 4 renames the role, demonstrating the second variant of the bug.
AnalysisAI
Incorrect authorization in Netflix Lemur's role management API allows any authenticated role member to rewrite the membership list and rename their own role via the PUT /api/1/roles/<id> endpoint in versions up to and including 1.9.1. The RoleMemberPermission check uses OR-semantics, meaning membership of a role is sufficient to mutate it - an authorization oversight confirmed by the asymmetry with the DELETE handler on the same resource, which correctly enforces admin-only access. Exploitation enables lateral privilege escalation within a Lemur PKI deployment: a malicious role member can inject colluders into certificate or authority management roles, remove legitimate members, or rename roles. No public exploit identified at time of analysis, though detailed reproduction steps are published in the GitHub security advisory GHSA-x3vf-mgxj-7785.
Technical ContextAI
Lemur is Netflix's open-source X.509 certificate management platform built on Flask and SQLAlchemy. The flaw resides in lemur/roles/views.py at the Roles.put() handler (line 298). Authorization is delegated to flask-principal's RoleMemberPermission class (lemur/auth/permissions.py:56), which constructs a Permission with two Needs: RoleNeed('admin') and RoleMemberNeed(role_id). Because flask-principal's Permission.allows() is OR-semantic, the check passes for any caller who satisfies either need - including non-admin users who are simply members of the target role. The handler then forwards data['users'] and data['name'] directly to service.update(), accepting full membership rewrites without scope validation. CWE-863 (Incorrect Authorization) applies: the authorization check is present but uses a permission class scoped to membership rather than ownership or administrative control, making it insufficient for a mutating operation. The companion DELETE on the same resource correctly uses @admin_permission.require, confirming this is a logic asymmetry rather than a systemic framework misuse.
RemediationAI
Upgrade to pip/lemur version 1.9.2, which is confirmed to resolve this vulnerability per the official release at https://github.com/Netflix/lemur/releases/tag/v1.9.2 and advisory GHSA-x3vf-mgxj-7785. The fix adds @admin_permission.require(http_exception=403) to Roles.put(), matching the existing decorator on Roles.delete(). As a compensating control prior to patching, operators should restrict PUT requests to /api/1/roles/ at the reverse proxy or WAF layer to admin-sourced sessions only, accepting the trade-off that legitimate non-admin role management workflows will be blocked until the patch is applied. Following patching, conduct an immediate audit of all role memberships to detect unauthorized additions made before the fix - specifically checking whether any role contains users not explicitly added by an administrator. If role-owner delegation is a legitimate business requirement, the advisory recommends modeling it with a dedicated permission class scoped to role ownership rather than membership, excluding the name field from the delegated mutation schema.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution affects Kestra OSS (the open-source event-driven orchestration platform) prior to
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Same weakness CWE-863 – Incorrect Authorization
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-61147
GHSA-x3vf-mgxj-7785