This hunt detects adversary activity by identifying network connections or file artifacts matching specific Indicators of Compromise (IOCs) linked to the SmartApeSG threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage compromises and mitigate potential data exfiltration before the adversary establishes persistence within the environment.
Malware Family: SmartApeSG Total IOCs: 2 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://privetbelvedere.net/proxy/legacy-thread.js | botnet_cc | 2026-08-31 | 100% |
| domain | privetbelvedere.net | botnet_cc | 2026-08-31 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["privetbelvedere.net"]);
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://privetbelvedere.net/proxy/legacy-thread.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 3-5 specific false positive scenarios for the ThreatFox: SmartApeSG IOCs detection rule, including tailored filters and exclusions:
Process Name and Parent Process. Exclude alerts where the parent process is falcon.sys, MsMpEng.exe, or wuauserv.exe (Windows Update) occurring between 02:00 and 05:00 local time.Source IP belongs to the internal subnet range (e.g., 10.20.x.x) and the destination matches the SmartApeSG IOCs, provided the user context is SYSTEM or a known service account like svc-patch-deploy.