CVE-2025-6204 IBM QRadar · QRadar

Detect CVE-2025-6204 — Dassault Systèmes DELMIA Apriso Code Injection in IBM QRadar

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

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS EventTime,
  sourceip,
  destinationip,
  username,
  URL,
  "QID",
  CATEGORYNAME(category) AS EventCategory,
  logsourcename(logsourceid) AS LogSource
FROM events
WHERE LOGSOURCETYPENAME(devicetype) IN ('Microsoft IIS', 'Sysmon', 'Windows Security Event Log')
  AND (
    URL ILIKE '%Apriso%'
    OR "Process Name" ILIKE '%w3wp%'
    OR "Process Name" ILIKE '%java%'
  )
  AND (
    URL ILIKE '%eval(%'
    OR URL ILIKE '%exec(%'
    OR URL ILIKE '%system(%'
    OR URL ILIKE '%Runtime.exec%'
    OR "Process CommandLine" ILIKE '%cmd.exe%'
    OR "Process CommandLine" ILIKE '%powershell%'
    OR "Process CommandLine" ILIKE '%bash -c%'
    OR "Process CommandLine" ILIKE '%wget http%'
  )
  AND starttime > NOW() - 1 DAYS
ORDER BY starttime DESC
LIMIT 500
critical severity medium confidence

Queries QRadar for IIS and Sysmon events showing code injection payload patterns in Apriso web requests or suspicious child process execution from Apriso web workers.

Data Sources

IBM QRadarMicrosoft IIS DSMSysmon DSMWindows Security Event Log DSM

Required Tables

events

False Positives & Tuning

  • Apriso integration middleware that uses legitimate exec-style API calls for inter-process communication
  • Authorized red team operations testing Apriso endpoint resilience
  • Third-party MES connectors that pass command-like parameters to Apriso APIs
  • Security tooling performing active vulnerability scanning against the Apriso instance

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