CVE-2025-6205 Microsoft Sentinel · KQL

Detect Dassault Systèmes DELMIA Apriso Missing Authorization (CVE-2025-6205) in Microsoft Sentinel

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.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Credential Access

KQL Detection Query

Microsoft Sentinel (KQL)
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
critical severity medium confidence

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

Data Sources

Microsoft Defender for EndpointIIS LogsWindows Security EventsAzure Monitor

Required Tables

DeviceNetworkEventsW3CIISLogSecurityEvent

False Positives & Tuning

  • 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

Other platforms for CVE-2025-6205


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