CVE-2025-6205

Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205)

Detects exploitation attempts targeting CVE-2025-6205, a missing authorization vulnerability (CWE-862) in Dassault Systèmes DELMIA Apriso. This vulnerability allows unauthenticated or low-privileged attackers to access protected resources or perform actions without proper authorization checks. Listed as a CISA KEV, indicating active exploitation in the wild.

Vulnerability Intelligence

KEV — Known Exploited

Affected Software

Vendor
Dassault Systèmes
Product
DELMIA Apriso

Weakness (CWE)

Timeline

Disclosed
October 28, 2025

CVSS

Unscored
Write-up coming soon

What is CVE-2025-6205 Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205)?

Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205) (CVE-2025-6205) maps to the Initial Access and Privilege Escalation and Credential Access tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205), covering the data sources and telemetry it touches: Microsoft Defender for Endpoint, IIS Logs, Windows Security Events, Azure Monitor. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Credential Access
Microsoft Sentinel / Defender
kusto
union isfuzzy=true
(
    DeviceNetworkEvents
    | where RemotePort in (80, 443, 8080, 8443)
    | where InitiatingProcessFileName has_any ("apriso", "delmia", "Manufacturing", "GlobalFluency")
    | extend Hint = "DELMIA Apriso process network activity"
),
(
    W3CIISLog
    | where csUriStem has_any ("/Apriso", "/DELMIA", "/GlobalFluency", "/MES", "/Manufacturing")
    | where scStatus in (200, 201, 204, 301, 302)
    | where csMethod in ("POST", "PUT", "DELETE", "PATCH")
    | where csUriQuery has_any ("bypass", "auth=", "token=skip", "noauth", "anonymous")
        or isempty(csUsername) or csUsername == "-"
    | extend Hint = "Unauthenticated or suspicious request to Apriso web endpoint"
),
(
    SecurityEvent
    | where EventID in (4624, 4625, 4648, 4672)
    | where TargetUserName has_any ("apriso", "delmia", "mes", "mfg")
    | extend Hint = "Authentication event involving Apriso service account"
)
| extend CVE = "CVE-2025-6205"
| project TimeGenerated, CVE, Hint, Computer, Account, RemoteIP, csUriStem, csStatus, csMethod

Detects suspicious unauthenticated or authorization-bypassing requests to DELMIA Apriso web endpoints, Apriso process network activity, and authentication anomalies for Apriso service accounts.

critical severity medium confidence

Data Sources

Microsoft Defender for Endpoint IIS Logs Windows Security Events Azure Monitor

Required Tables

DeviceNetworkEvents W3CIISLog SecurityEvent

False Positives

  • Legitimate administrative access to Apriso endpoints from authorized IPs
  • Scheduled integration jobs that use service accounts with broad permissions
  • Internal health check or monitoring probes hitting Apriso URLs
  • ERP/MES integration middleware that may use anonymous or token-based auth legitimately

Sigma rule & cross-platform mapping

The detection logic for Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205) (CVE-2025-6205) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  category: network_connection
  product: windows

Browse the community-maintained Sigma rules for this technique:


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Unauthenticated HTTP POST to Apriso API Endpoint

    Expected signal: IIS access log entry: POST /Apriso/api/v1/WorkOrders with username '-' or empty and HTTP response code 200/201/401/403. Network flow showing outbound connection to Apriso host on port 80 or 443.

  2. Test 2Apriso Endpoint Enumeration via Unauthenticated GET Scan

    Expected signal: Multiple IIS log entries for sequential GET requests to /Apriso*, /DELMIA*, /GlobalFluency* paths from same source IP within a short time window.

  3. Test 3Authorization Bypass via Query Parameter Manipulation

    Expected signal: IIS log entry with URI /Apriso/api/v1/Users?anonymous=true&auth=skip, method POST, and username '-'. Windows Security Event Log may show no corresponding authentication event.

  4. Test 4Repeated Authentication Failure on Apriso Service Account

    Expected signal: Windows Security Event Log Event ID 4625 (failed logon) for TargetUserName=apriso_svc repeated 10 times within a short window. IIS 401 responses for POST to /Apriso/login.

Unlock Pro Content

Get the full detection package for CVE-2025-6205 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections