Back to Intelligence

Threat Intelligence Roundup: Countering Dolphin X AI Malware and Linux Kernel Exploitation

SA
Security Arsenal Team
July 24, 2026
6 min read

This week, threat intelligence indicates a surge in diverse attack vectors ranging from the emergence of AI-enhanced malware to critical infrastructure targeting. Security Arsenal analysts are tracking the active deployment of "Dolphin X," a malicious software family leveraging AI capabilities for evasion, alongside reports of significant vulnerabilities in Siemens ROX II industrial switches and a massive disclosure of 400 Linux kernel flaws. Additionally, a Russian-aligned espionage campaign targeting Zimbra webmail platforms and an encryption-based extortion attempt against Stadler Rail highlight the breadth of the threat landscape.

Introduction

Defenders are currently facing a "pincer movement" of sophisticated, AI-powered threats and a widening attack surface due to foundational software vulnerabilities. The convergence of these events—the active use of Dolphin X and the disclosure of hundreds of kernel flaws—creates an immediate imperative for SOC teams to enhance detection logic and accelerate patch cycles. This post breaks down the technical mechanics of these threats and provides actionable detection and remediation guidance.

Technical Analysis

1. Dolphin X AI-Powered Malware

Dolphin X represents an evolution in offensive tooling, incorporating artificial intelligence to dynamically obfuscate code, bypass heuristic detection, and optimize command-and-control (C2) traffic patterns. Unlike static malware, Dolphin X analyzes the host environment in real-time to tailor its behavior, significantly lowering the signal-to-noise ratio for traditional signature-based defenses.

2. 400 Linux Kernel Flaws

A recent disclosure has highlighted nearly 400 vulnerabilities within the Linux kernel. While details vary, these flaws collectively impact a wide range of distributions, potentially allowing for local privilege escalation (LPE), container escapes, and denial-of-service (DoS) conditions. The sheer volume necessitates a shift from reactive patching to a risk-based prioritization model, focusing on flaws that facilitate kernel code execution.

3. Operational Technology (OT) and Webmail Threats

  • Siemens ROX II: Vulnerabilities in these industrial switches could allow attackers to disrupt critical ICS operations or manipulate network traffic between engineering workstations and controllers.
  • Zimbra Espionage: A Russian-linked campaign is actively exploiting webmail vulnerabilities to harvest credentials and exfiltrate sensitive communications from high-value targets.

Detection & Response

Given the technical nature of these threats, specifically Dolphin X and the Linux kernel flaws, the following detection rules and hunts are designed to identify anomalous behavior and exploitation attempts.

Sigma Rules

YAML
---
title: Potential Dolphin X AI Malware Activity
id: 8a2c1d4e-9f5b-4c2e-8a3d-1b5c6d7e8f9a
status: experimental
description: Detects suspicious process execution patterns often associated with AI-powered malware like Dolphin X, characterized by obfuscated PowerShell or unexpected child processes.
references:
  - Internal Threat Research
author: Security Arsenal
date: 2026/05/12
tags:
  - attack.execution
  - attack.defense_evasion
  - attack.t1027
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - '\winword.exe'
      - '\excel.exe'
      - '\outlook.exe'
    Image|endswith:
      - '\powershell.exe'
      - '\pwsh.exe'
    CommandLine|contains:
      - 'EncodedCommand'
      - 'FromBase64String'
  condition: selection
falsepositives:
  - Legitimate macro automation
level: high
---
title: Linux Kernel Module Load Anomaly
id: 9b3d2e5f-0a6c-5d3f-9b4e-2c6d7e8f9a0b
status: experimental
description: Detects the loading of kernel modules, which may indicate an attempt to exploit kernel flaws or load a rootkit.
references:
  - Linux Kernel Security Advisories
author: Security Arsenal
date: 2026/05/12
tags:
  - attack.privilege_escalation
  - attack.t1547.006
logsource:
  category: process_creation
  product: linux
detection:
  selection:
    Image|endswith:
      - '/insmod'
      - '/modprobe'
      - '/kmod'
  condition: selection
falsepositives:
  - Legitimate system administration
  - Hardware driver installation
level: medium
---
title: Zimbra Webmail Suspicious File Access
id: 0c4e3f6g-1b7d-6e4g-0c5f-3d7e8f9a0b1c
status: experimental
description: Detects suspicious access patterns to Zimbra mail services indicative of espionage activity.
references:
  - Zimbra Security Advisory
author: Security Arsenal
date: 2026/05/12
tags:
  - attack.initial_access
  - attack.t1190
logsource:
  category: webserver
  product: apache
detection:
  selection:
    cs_uri_stem|contains:
      - '/service/extension/backup/mboximport'
      - '/service/extension/backup/accounts'
    cs_method:
      - 'POST'
  condition: selection
falsepositives:
  - Legitimate administrator imports
level: high


**KQL (Microsoft Sentinel / Defender)**
KQL — Microsoft Sentinel / Defender
// Hunt for Dolphin X related obfuscated script execution
DeviceProcessEvents
| where Timestamp > ago(7d)
| where FileName in~ ("powershell.exe", "pwsh.exe", "cmd.exe")
| where ProcessCommandLine has any ("Enc", "enc", "FromBase64String", "IEX")
| where InitiatingProcessFileName in~ ("winword.exe", "excel.exe", "powerpnt.exe")
| project Timestamp, DeviceName, FileName, ProcessCommandLine, InitiatingProcessFileName
| extend Phase = "Execution"
;
// Hunt for Linux Kernel Privilege Escalation attempts
Syslog
| where Timestamp > ago(7d)
| where SyslogMessage contains "insmod" or SyslogMessage contains "modprobe"
| where ProcessName != ""
| project Timestamp, Computer, ProcessName, SyslogMessage
| extend Phase = "Privilege Escalation"


**Velociraptor VQL**
VQL — Velociraptor
// Hunt for suspicious kernel modules or recent modifications in /dev
SELECT 
  FullPath, 
  Size, 
  Mode.String AS Permissions, 
  Mtime AS ModifiedTime
FROM glob(globs="/*/*.ko")
WHERE ModifiedTime > now() - 24h
  -- Identify modules not in standard paths often used by rootkits
  AND FullPath NOT STARTS WITH "/lib/modules"


**Remediation Script (Bash)**
Bash / Shell
#!/bin/bash
# Remediation: Verify Linux Kernel Version and Check for Active Exploitation Indicators
# Author: Security Arsenal
# Date: 2026/05/12

echo "[+] Checking current Linux Kernel version..."
uname -r

echo "[+] Checking for recently modified kernel objects (potential rootkits)..."
find /lib/modules/$(uname -r) -name "*.ko" -mtime -1 -ls

echo "[+] Verifying system package integrity for kernel updates..."
if command -v apt-get &> /dev/null; then
    apt list --installed 2>/dev/null | grep linux-image | grep -i $(uname -r)
elif command -v yum &> /dev/null; then
    yum list installed | grep kernel | grep $(uname -r)
fi

echo "[+] Reviewing active kernel modules..."
lsmod | head -n 20

echo "[REMEDIATION] If the kernel version is older than the latest security patch (check vendor advisory), update immediately."
echo "REMEDIATION] If unknown kernel modules are found, investigate via 'modinfo <module_name>'."

Remediation

  1. Patch Management (Linux Kernel): Immediately review the disclosed 400 Linux kernel flaws. Prioritize patches for vulnerabilities rated High or Critical that allow Local Privilege Escalation (LPE). Update all Linux endpoints and servers to the latest kernel version provided by your distribution vendor (e.g., Canonical, Red Hat).
  2. Network Segmentation (Siemens ROX II): Isolate industrial switches (Siemens ROX II) within a dedicated ICS VLAN. Ensure that management interfaces are not accessible from the corporate IT network without strict jump host access and Multi-Factor Authentication (MFA).
  3. Webmail Hardening (Zimbra): Apply the latest security patches for Zimbra Collaboration Suite. Enforce strong password policies and enable MFA for all user accounts. Audit logs for unauthorized access to backup or export functions.
  4. Endpoint Detection (Dolphin X): Update EDR signatures to include heuristics for AI-obfuscated scripts. Restrict PowerShell execution policies to Restricted or AllSigned where possible.

Executive Takeaways

  • Prioritize Kernel Patching: The volume of Linux kernel disclosures (400) presents a statistically significant risk; automated patch management pipelines are no longer optional.
  • AI is an Offense Accelerant: The emergence of Dolphin X confirms that AI is being weaponized to bypass static defenses. SOC teams must invest in behavioral analytics rather than relying solely on signature-based detection.
  • OT is a Primary Target: Vulnerabilities in infrastructure gear like Siemens switches highlight the blurring lines between IT and OT security; convergence strategies must be accelerated.

Related Resources

Security Arsenal Managed SOC Services AlertMonitor Platform Book a SOC Assessment soc-mdr Intel Hub

managed-socmdrsecurity-monitoringthreat-detectionsiemdolphin-xlinux-kernelzimbraics-securitythreat-intel

Is your security operations ready?

Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.