CVE-2024-36112: Nautobot dynamic-group-members doesn't enforce permission restrictions on member objects
6.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.30951%
CWE
Published
5/29/2024
Updated
1/21/2025
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| nautobot | pip | >= 1.3.0, < 1.6.23 | 1.6.23 |
| nautobot | pip | >= 2.0.0, < 2.2.5 | 2.2.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from missing permission checks when accessing dynamic group members. The key evidence is in the commit diffs:- In api/views.py, the members endpoint changed from 'instance.members' to 'instance.members.restrict()'- In views.py, the UI table changed from 'instance.members' to 'instance.members.restrict()'These functions directly handled member object retrieval without applying Nautobot's permission system (restrict()), which normally enforces object-level permissions. The tests added in test_api.py and test_views.py explicitly validate the permission enforcement, confirming these were the vulnerable points.