Security Vulnerability Report
中文
CVE-2025-66323 CVSS 5.3 MEDIUM

CVE-2025-66323

Published: 2025-12-08 08:15:54
Last Modified: 2025-12-09 18:28:03

Description

Vulnerability of improper criterion security check in the card module. Impact: Successful exploitation of this vulnerability may affect availability.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:huawei:harmonyos:5.0.1:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:huawei:harmonyos:5.1.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:huawei:harmonyos:6.0.0:*:*:*:*:*:*:* - VULNERABLE
华为设备 Card模块(具体版本见华为官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66323 PoC - Improper Security Check in Card Module # This PoC demonstrates the vulnerability concept # Note: Actual exploitation requires local access and user interaction import subprocess import sys def check_vulnerability(): """Check if the system is vulnerable to CVE-2025-66323""" print("[*] Checking for CVE-2025-66323 vulnerability...") print("[*] Target: Huawei Device Card Module") print("[*] Vulnerability: Improper Criterion Security Check") # Simulate vulnerability check # In real scenario, this would interact with the card module print("[!] This is a conceptual PoC") print("[!] Actual exploitation requires:") print(" - Local access to the target device") print(" - User interaction to trigger card module") print(" - Specific card module interface access") # Example attack vector (hypothetical) attack_vector = """ # Hypothetical attack steps: # 1. Access card module interface # 2. Craft malicious card request # 3. Bypass security check with malformed input # 4. Execute unauthorized card operations # Example malicious command: # curl -X POST http://target:port/card/verify \ # -d 'card_id=test&auth_token=malformed_token' """ print(attack_vector) return False def main(): if check_vulnerability(): print("[+] System is VULNERABLE") sys.exit(1) else: print("[*] Vulnerability check completed") sys.exit(0) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66323", "sourceIdentifier": "[email protected]", "published": "2025-12-08T08:15:53.780", "lastModified": "2025-12-09T18:28:03.117", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability of improper criterion security check in the card module. 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:R/S:U/C:L/I:L/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.8, "impactScore": 3.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-358"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:5.0.1:*:*:*:*:*:*:*", "matchCriteriaId": "738D803A-C4CE-477B-BC89-CE47351C0A84"}, {"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:5.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "E39DE6A6-CBE6-4086-93CD-113D1B3BA730"}, {"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:6.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "0EBE30DD-E146-4A6A-BE68-DEF9D4D0B2A8"}]}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2025/12/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}