Severity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H
Primary rating from Vendor (GitHub_M) · only source for this CVE.
CVSS VectorVendor: GitHub_M
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H
Lifecycle Timeline
3DescriptionCVE.org
Snipe-IT is an IT asset/license management system. A vulnerability in versions prior to 8.6.0 allows a non-admin user holding only the granular users.edit permission to lock every admin out of the instance by editing the activated flag (which determines whether or not a user can login) and the ldap_import flag, which determines whether or not the user can request a password reset. Version 8.6.0 contains a patch.
AnalysisAI
Privilege escalation via authorization bypass in Snipe-IT versions prior to 8.6.0 allows any authenticated user holding only the granular users.edit permission to disable administrator and superuser accounts through the bulk-edit endpoint, effectively locking all admins out of the instance. By toggling the activated and ldap_import flags on admin targets, a low-privileged actor denies admins both interactive login and password-reset recovery. No public exploit identified at time of analysis, but the upstream fix and detailed advisory disclose the exact attack surface.
Technical ContextAI
Snipe-IT is a Laravel/PHP-based open-source IT asset and license management application by Grokability. The flaw lives in app/Http/Controllers/Users/BulkUsersController.php, where the bulk user-update flow applied the activated and ldap_import fields via a mass-assignment helper (conditionallyAddItem) without gating them through the canEditAuthFields policy check that the per-user paths enforce. CWE-863 (Incorrect Authorization) captures the root cause: the policy that prevents non-admins from editing admins (and admins from editing superusers) was applied conditionally to groups but skipped for the two authentication-controlling fields, so authorization was incorrectly evaluated for those columns. The patched commit (403f9c8) removes the mass-assignment shortcut and routes both fields through a per-user loop guarded by canEditAuthFields and editableOnDemo, and additionally tightens the user-merge endpoint (raising it from update to delete authorization and re-checking canEditAuthFields per target).
RemediationAI
Vendor-released patch: upgrade Snipe-IT to 8.6.0 or later, which rewrites the bulk-user update to apply the activated and ldap_import fields per-user behind the canEditAuthFields and editableOnDemo policy checks and additionally hardens the user-merge endpoint; see the advisory at https://github.com/grokability/snipe-it/security/advisories/GHSA-6f75-x745-xcpr and the patch at https://github.com/grokability/snipe-it/commit/403f9c848b05274642f64450696bdcdc242a352a. If immediate upgrade is not possible, the most effective compensating control is to audit and revoke the granular users.edit permission from any non-admin role, restricting it to trusted admin/superuser accounts only - the trade-off is that delegated helpdesk/HR workflows that legitimately edit user records will break until the upgrade lands. As an additional defensive measure, block POST access to the users/bulkeditsave route (e.g., via a reverse-proxy or WAF rule) for non-admin sessions, accepting that this disables bulk user edits entirely; and pre-stage an out-of-band superuser recovery account (kept off ldap_import) so that a lockout can be unwound without database surgery.
Cross-Site Request Forgery (CSRF) in GitHub repository snipe/snipe-it prior to v.6.2.3. Rated high severity (CVSS 8.8),
In Snipe-IT, versions v3.0-alpha to v5.3.7 are vulnerable to Host Header Injection. Rated high severity (CVSS 8.8), this
snipe-it is vulnerable to Cross-Site Request Forgery (CSRF). Rated high severity (CVSS 8.8), this vulnerability is remot
snipe-it is vulnerable to Cross-Site Request Forgery (CSRF). Rated high severity (CVSS 8.8), this vulnerability is remot
Session Fixation in GitHub repository snipe/snipe-it prior to 6.0.10. Rated high severity (CVSS 8.0), this vulnerability
Old sessions are not blocked by the login enable function. Rated high severity (CVSS 7.4), this vulnerability is remotel
snipe-it is vulnerable to Server-Side Request Forgery (SSRF). Rated high severity (CVSS 7.2), this vulnerability is remo
Snipe-IT before 7.0.10 allows remote code execution (associated with cookie serialization) when an attacker knows the AP
Missing Authorization in GitHub repository snipe/snipe-it prior to 5.4.4. Rated medium severity (CVSS 6.5), this vulnera
snipe-it is vulnerable to Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting'). Rated me
snipe-it is vulnerable to Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting'). Rated me
Snipe-IT before 8.3.4 allows stored XSS via the Locations "Country" field, enabling a low-privileged authenticated user
Same weakness CWE-863 – Incorrect Authorization
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-35140
GHSA-6f75-x745-xcpr