← Back to SOC feed Coverage →

MacOceanLotusDropper

kql MEDIUM Azure-Sentinel
DeviceProcessEvents
backdoorhuntingmicrosoftofficial
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-05-05T11:00:00Z · Confidence: medium

Hunt Hypothesis

A SOC team should proactively hunt for processes associated with the OceanLotus Mac backdoor dropper as it represents a potential compromise of macOS endpoints, allowing adversaries to establish persistence and exfiltrate data. This behavior is indicative of advanced persistent threats and should be actively investigated in Azure Sentinel to detect and mitigate early-stage malware activity.

KQL Query

DeviceProcessEvents
| where Timestamp > ago(14d)
| where ProcessCommandLine contains "theme0" 
| project Timestamp, DeviceId , DeviceName, AccountName , AccountSid , InitiatingProcessCommandLine , ProcessCommandLine  
| top 100 by Timestamp 

Analytic Rule Definition

id: 1b7f5ba1-6712-4d74-ab88-182932b6af0d
name: MacOceanLotusDropper
description: |
  Backdoor processes associated with OceanLotus Mac malware backdoor dropper.
  References:.
  Https://blog.trendmicro.com/trendlabs-security-intelligence/new-macos-backdoor-linked-to-oceanlotus-found/.
  OS Platforms: Macintosh.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - DeviceProcessEvents
query: |
  DeviceProcessEvents
  | where Timestamp > ago(14d)
  | where ProcessCommandLine contains "theme0" 
  | project Timestamp, DeviceId , DeviceName, AccountName , AccountSid , InitiatingProcessCommandLine , ProcessCommandLine  
  | top 100 by Timestamp 

Required Data Sources

Sentinel TableNotes
DeviceProcessEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/MacOceanLotusDropper.yaml