This hunt detects adversary activity consistent with the SmartApeSG threat actor by identifying network connections and file artifacts matching three specific Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to rapidly identify early-stage intrusions and mitigate potential data exfiltration before lateral expansion occurs.
Malware Family: SmartApeSG Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://alabastercompass.top/public/refresh-cookie | payload_delivery | 2026-07-14 | 100% |
| domain | alabastercompass.top | payload_delivery | 2026-07-14 | 100% |
| url | hxxps://alabastercompass.top/public/throttle-sandbox.js | payload_delivery | 2026-07-14 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["alabastercompass.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://alabastercompass.top/public/refresh-cookie", "https://alabastercompass.top/public/throttle-sandbox.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 specific false positive scenarios and suggested exclusions for the ThreatFox: SmartApeSG IOCs detection rule within an enterprise environment:
Security Operations Center (SOC) Threat Intel Ingestion
Automated Vulnerability Scanning and Patch Management
Software Supply Chain and Repository Synchronization