This hunt detects adversary activity by monitoring network and endpoint logs for specific indicators of compromise (IOCs) linked to the SmartApeSG threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of this high-severity campaign enables rapid containment before lateral movement or data exfiltration occurs within the environment.
Malware Family: SmartApeSG Total IOCs: 3 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://flintazimuth.top/private/login-dom | payload_delivery | 2026-07-27 | 100% |
| domain | flintazimuth.top | payload_delivery | 2026-07-27 | 100% |
| url | hxxps://flintazimuth.top/private/health-header.js | payload_delivery | 2026-07-27 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["flintazimuth.top"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - SmartApeSG
let malicious_urls = dynamic(["https://flintazimuth.top/private/login-dom", "https://flintazimuth.top/private/health-header.js"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios and their corresponding filters/exclusions for the ThreatFox: SmartApeSG IOCs detection rule:
Scenario: Scheduled Security Scans by Endpoint Protection Agents
10.x.x.x where x is the security team VLAN) and filter out processes with names matching major EDR agents (FalconSensor.exe, MsMpEng.exe) when connecting to the specific SmartApeSG domain.Scenario: Automated Patch Management and Software Distribution
C:\Program Files\Microsoft Configuration Manager\bin\admin\ccmsetup.exe) and whitelist the SmartApeSG IP range during defined maintenance windows (e.g., 02:00 – 06:00 UTC).Scenario: Third-Party Cloud Backup and Archiving Services