CVE-2025-6205 CrowdStrike LogScale · LogScale

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

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

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName IN ("NetworkConnectIP4", "NetworkConnectIP6", "HttpRequest", "UserLogon", "UserLogonFailed")
| $falcon.event_type != ""
// Apriso process network activity
| case {
    ImageFileName =~ "(?i)(apriso|delmia|globalfluency|manufacturing)" :
        assign(detection_hint="Apriso process network activity", risk=70);
    // Apriso web endpoint access
    TargetURL =~ "(?i)(/apriso|/delmia|/globalfluency|/manufacturing)" AND HttpMethod IN ("POST", "PUT", "DELETE", "PATCH") AND (UserName == "-" OR UserName == "" OR TargetURL =~ "(?i)(bypass|noauth|anonymous)"):
        assign(detection_hint="Unauthenticated or bypass request to Apriso endpoint", risk=90);
    // Apriso service account auth failures
    UserName =~ "(?i)(apriso|delmia|mes)" AND #event_simpleName == "UserLogonFailed":
        assign(detection_hint="Apriso service account auth failure", risk=65);
    *: assign(detection_hint="Unclassified Apriso event", risk=10)
  }
| risk > 40
| groupBy([ComputerName, UserName, TargetURL, HttpMethod, HttpResponseCode, detection_hint], function=count(1, as=event_count))
| sort(risk, order=desc)
| CVE := "CVE-2025-6205"
critical severity medium confidence

CrowdStrike Falcon LogScale CQL to detect suspicious Apriso process network connections, unauthenticated web endpoint access, and repeated authentication failures for Apriso service accounts.

Data Sources

CrowdStrike Falcon SensorCrowdStrike Network EventsCrowdStrike HTTP Inspection

Required Tables

NetworkConnectIP4HttpRequestUserLogonUserLogonFailed

False Positives & Tuning

  • CrowdStrike sensor exclusions on Apriso application directories may reduce visibility
  • Legitimate batch processing jobs triggering high-volume Apriso API calls
  • Apriso process running under a shared manufacturing service account
  • Authorized red team or vulnerability assessment activity

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