Security Vulnerability Report
中文
CVE-2025-14790 CVSS 6.5 MEDIUM

CVE-2025-14790

Published: 2026-03-25 20:16:22
Last Modified: 2026-03-30 16:59:59

Description

IBM InfoSphere Information Server 11.7.0.0 through 11.7.1.6 could allow an attacker to obtain sensitive information due to insufficiently protected credentials.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:infosphere_information_server:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:ibm:aix:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
IBM InfoSphere Information Server 11.7.0.0
IBM InfoSphere Information Server 11.7.1.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Conceptual PoC for CVE-2025-14790 # This script demonstrates a potential check for credential leakage. # Actual exploitation depends on the specific vulnerable endpoint. def check_credential_leak(url, auth_token): headers = { "Authorization": f"Bearer {auth_token}", "User-Agent": "CVE-2025-14790-Scanner/1.0" } # Hypothetical endpoint that might leak credentials in response headers or body target_endpoint = f"{url}/api/v1/secure_config/export" try: response = requests.get(target_endpoint, headers=headers, timeout=10, verify=False) # Check if sensitive keywords (like 'password', 'secret') appear in the response if response.status_code == 200: if "password" in response.text.lower() or "api_key" in response.text.lower(): print("[!] Potential credential leakage detected!") print(f"Response snippet: {response.text[:200]}...") return True else: print("[-] Request successful but no obvious credentials found in body.") # Check headers as well for header, value in response.headers.items(): if "auth" in header.lower() or "token" in header.lower(): print(f"[!] Sensitive header found: {header}: {value}") else: print(f"[-] Endpoint returned status code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[Error] Connection failed: {e}") return False if __name__ == "__main__": # Replace with actual target URL and valid low-priv token target_url = "http://target-infosphere-server:9080" low_priv_token = "valid_low_priv_token_here" check_credential_leak(target_url, low_priv_token)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14790", "sourceIdentifier": "[email protected]", "published": "2026-03-25T20:16:22.267", "lastModified": "2026-03-30T16:59:59.367", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM InfoSphere Information Server 11.7.0.0 through 11.7.1.6 could allow an attacker to obtain sensitive information due to insufficiently protected credentials."}, {"lang": "es", "value": "IBM InfoSphere Information Server 11.7.0.0 hasta 11.7.1.6 podría permitir a un atacante obtener información sensible debido a credenciales insuficientemente protegidas."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-522"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:infosphere_information_server:*:*:*:*:*:*:*:*", "versionStartIncluding": "11.7.0.0", "versionEndIncluding": "11.7.1.6", "matchCriteriaId": "65FBF88B-61F0-4D42-A290-453FDC874D7F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:ibm:aix:-:*:*:*:*:*:*:*", "matchCriteriaId": "E492C463-D76E-49B7-A4D4-3B499E422D89"}, {"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7266688", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}