This hunt targets adversary activity involving four specific indicators of compromise linked to the SmartApeSG threat actor, which may signal reconnaissance or initial access attempts within our environment. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection allows the SOC team to isolate affected assets and mitigate potential lateral movement before the adversary establishes a persistent foothold.
Malware Family: SmartApeSG Total IOCs: 4 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://pearlgallery.top/reset/user-ajax.js | payload_delivery | 2026-07-08 | 100% |
| url | hxxps://pearlgallery.top/reset/refresh-util | payload_delivery | 2026-07-08 | 100% |
| domain | pearlgallery.top | payload_delivery | 2026-07-08 | 100% |
| url | hxxps://pearlgallery.top/reset/principal-response.js | payload_delivery | 2026-07-08 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["pearlgallery.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://pearlgallery.top/reset/user-ajax.js", "https://pearlgallery.top/reset/refresh-util", "https://pearlgallery.top/reset/principal-response.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 four specific false positive scenarios for the ThreatFox: SmartApeSG IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Security Agent Updates via Vendor Repository
10.20.50.x range) destined for the specific SmartApeSG update URLs or IP ranges defined in the vendor’s “Trusted Sources” documentation. Additionally, whitelist process paths matching the standard agent updater executable (e.g., C:\Program Files\CrowdStrike\FalconSensor\CSFalconService.exe).Scheduled Threat Intelligence Feed Ingestion Job
TaskName: DailyThreatFeedSync) running under a dedicated service account (e.g., svc_threat_intel). Alternatively, filter out events where the source process is the specific script runner (e