CVE-2025-6204 Google Chronicle · YARA-L

Detect CVE-2025-6204 — Dassault Systèmes DELMIA Apriso Code Injection in Google Chronicle

Detects exploitation of CVE-2025-6204, a code injection vulnerability (CWE-94) in Dassault Systèmes DELMIA Apriso. This vulnerability allows attackers to inject and execute arbitrary code through the Apriso application layer. It is listed on CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Successful exploitation can lead to remote code execution, lateral movement, and full compromise of manufacturing execution system (MES) environments.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule cve_2025_6204_apriso_code_injection {
  meta:
    author = "df00tech Detection Engineering"
    description = "Detects CVE-2025-6204 code injection attempts against Dassault DELMIA Apriso"
    severity = "CRITICAL"
    priority = "HIGH"
    reference = "https://nvd.nist.gov/vuln/detail/CVE-2025-6204"

  events:
    (
      $e.metadata.event_type = "NETWORK_HTTP" or
      $e.metadata.event_type = "PROCESS_LAUNCH"
    )
    and (
      re.regex($e.target.url, `(?i)apriso`) or
      re.regex($e.principal.process.file.full_path, `(?i)(w3wp|java\.exe|tomcat)`)
    )
    and (
      re.regex($e.target.url, `(?i)(eval\(|exec\(|system\(|Runtime\.exec|ProcessBuilder)`) or
      re.regex($e.target.process.command_line, `(?i)(cmd\.exe|powershell|bash\s+-c|sh\s+-c|wget\s+http|curl\s+http)`)
    )

  condition:
    $e
}
critical severity medium confidence

Chronicle YARA-L rule to detect code injection exploitation of CVE-2025-6204 in DELMIA Apriso by monitoring HTTP events and process launches for known injection patterns.

Data Sources

Google ChronicleChronicle Ingestion APIWindows Event LogsIIS Logs

Required Tables

network_httpprocess_launch

False Positives & Tuning

  • Legitimate administrative HTTP requests to Apriso containing special characters in query parameters
  • Authorized Apriso customization scripts that use code-execution APIs as part of approved workflows
  • Security scanner traffic targeting Apriso endpoints for vulnerability assessment
  • CI/CD pipeline jobs that deploy Apriso configuration changes using command-line tools

Other platforms for CVE-2025-6204


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 1Simulate Apriso Code Injection via HTTP Request with Command Execution Payload

    Expected signal: IIS access log entry with POST to /Apriso/GlobalSuite.aspx; Sysmon Event ID 1 showing cmd.exe spawned by w3wp.exe; Windows Security Event ID 4688 for cmd.exe process creation.

  2. Test 2Web Shell Drop Simulation via Apriso Worker Process

    Expected signal: Sysmon Event ID 11 (FileCreate) for test_shell.aspx in the web root; Sysmon Event ID 1 for cmd.exe with parent w3wp.exe; Windows Security Event ID 4663 for file write to IIS directory.

  3. Test 3Outbound Beacon Simulation from Apriso Server Context

    Expected signal: Network connection event from the Apriso process (java or tomcat) to an external/loopback destination; DNS query or direct IP connection logged by EDR or network monitoring; process execution log showing curl or wget spawned by the web application parent.

  4. Test 4Reconnaissance Commands Executed Post-Injection via PowerShell

    Expected signal: Sysmon Event ID 1 for powershell.exe with parent w3wp.exe; Windows Security Event ID 4688 for PowerShell process; PowerShell Script Block Logging Event ID 4104 capturing the reconnaissance commands.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections