Security Vulnerability Report
中文
CVE-2026-32684 CVSS 2.9 LOW

CVE-2026-32684

Published: 2026-05-12 11:16:19
Last Modified: 2026-05-12 11:16:19

Description

The application does not impose strict enough restrictions on directory access permissions, posing a risk that other malicious applications could obtain sensitive information.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Hikvision 相关应用程序 (具体版本请参考官方公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os import stat # Proof of Concept for checking directory permissions # This script checks if a target directory has overly permissive access rights def check_vulnerable_directory(path): """ Checks if a directory is world-readable or world-writable. """ if not os.path.exists(path): print(f"[!] Path not found: {path}") return # Get directory status status = os.stat(path) mode = status.st_mode # Check for Others Read (o+r) or Others Write (o+w) is_world_readable = bool(mode & stat.S_IROTH) is_world_writable = bool(mode & stat.S_IWOTH) if is_world_readable or is_world_writable: print(f"[!] Vulnerable Directory Found: {path}") print(f" - World Readable: {is_world_readable}") print(f" - World Writable: {is_world_writable}") # Simulate reading sensitive files try: files = os.listdir(path) print(f" - Accessible Files: {files}") except Exception as e: print(f" - Error listing files: {e}") else: print(f"[-] Secure Directory: {path}") # Example target path (replace with actual vulnerable path) # This is often located in /data/data/ for Android or /AppData/ for Windows target_path = "/path/to/hikvision/app/data" check_vulnerable_directory(target_path)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32684", "sourceIdentifier": "[email protected]", "published": "2026-05-12T11:16:19.283", "lastModified": "2026-05-12T11:16:19.283", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "The application does not impose strict enough restrictions on directory access permissions, posing a risk that other malicious applications could obtain sensitive information."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 2.9, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.4, "impactScore": 1.4}]}, "references": [{"url": "https://pinfo.hikvision.com/hkwsen/unzip/20260511114030_14652_doc/GUID-A47A8570-631E-4F62-BCEE-37E9F2983DD7.html", "source": "[email protected]"}]}}