← Back to SOC feed Coverage →

oceanlotus-apt32-network

kql MEDIUM Azure-Sentinel
DeviceNetworkEvents
apthuntingmicrosoftofficial
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-07T11:00:00Z · Confidence: medium

Hunt Hypothesis

The hypothesis is that the detected network activity aligns with the known tactics of APT32/OceanLotus, indicating potential command and control communication or data exfiltration. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate advanced persistent threat activity early in the attack lifecycle.

KQL Query

//Network activities 
DeviceNetworkEvents 
| where Timestamp > ago(30d) 
| where RemoteUrl in ( 
//'Malicious URL Indicators for OceanLotus Activities 2019', 
'open.betaoffice.net', 
'outlook.updateoffices.net', 
'load.newappssystems.com', 
'syn.servebbs.com', 
//'C2 Indicators for OceanLotus Activities 2019', 
'cortanazone.com', 
'cortanasyn.com', 
'ristineho.com', 
'syn.servebbs.com') 

Analytic Rule Definition

id: 8e2c33f5-0c00-4246-b10b-9fb43da56365
name: oceanlotus-apt32-network
description: |
  This query was originally published in a threat analytics report about the group known to other security researchers as APT32 or OceanLotus
  This tracked activity group uses a wide array of malicious documents to conduct attacks. Some of their favored techniques include sideloading dynamic link libraries,  and disguising payloads as image files.
  The following query detects network activity that may indicate an attack by this group.
  See Detect malicious documents associated with group known as "OceanLotus" for another query related to this group's activity.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - DeviceNetworkEvents
tactics:
- Discovery
- Lateral movement
- Command and control
query: |
  //Network activities 
  DeviceNetworkEvents 
  | where Timestamp > ago(30d) 
  | where RemoteUrl in ( 
  //'Malicious URL Indicators for OceanLotus Activities 2019', 
  'open.betaoffice.net', 
  'outlook.updateoffices.net', 
  'load.newappssystems.com', 
  'syn.servebbs.com', 
  //'C2 Indicators for OceanLotus Activities 2019', 
  'cortanazone.com', 
  'cortanasyn.com', 
  'ristineho.com', 
  'syn.servebbs.com') 

Required Data Sources

Sentinel TableNotes
DeviceNetworkEventsEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

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