This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the SmartApeSG threat actor, which may signal early-stage reconnaissance or lateral movement within the network. Proactively hunting for these IOCs in Azure Sentinel is critical to identify potential high-severity threats before they escalate into active breaches, ensuring timely containment and response.
Malware Family: SmartApeSG Total IOCs: 2 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://indigocrest.top/middleware/scope-runtime.js | payload_delivery | 2026-08-08 | 75% |
| domain | indigocrest.top | payload_delivery | 2026-08-08 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["indigocrest.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://indigocrest.top/middleware/scope-runtime.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 for the ThreatFox: SmartApeSG IOCs rule, including targeted filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Endpoint Detection & Response (EDR) Telemetry Uploads
Source_Process_Name matches known EDR agents (FalconSensor.exe, MsMpEng.exe) AND Destination_Port is 443, provided the destination IP belongs to the vendor’s trusted CIDR range.Scenario: Scheduled Third-Party Vulnerability Scanner Jobs
Source_Host_Group containing “Vulnerability_Scan_Nodes” and restrict the rule to trigger only outside of the defined maintenance window (e.g., exclude events occurring between 01:00 and 05:00).Scenario: Admin-Driven Software Deployment via Configuration Management