This hunt targets known indicators of compromise associated with the SmartApeSG threat actor, aiming to identify potential footholds or lateral movement activities within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical to detect early-stage intrusions and mitigate the high-severity risks posed by this targeted threat group before they can establish persistence or exfiltrate data.
Malware Family: SmartApeSG Total IOCs: 2 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://io.honeysucklefolio.co/status/legacy-view.js | botnet_cc | 2026-09-02 | 100% |
| domain | io.honeysucklefolio.co | botnet_cc | 2026-09-02 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["io.honeysucklefolio.co"]);
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://io.honeysucklefolio.co/status/legacy-view.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 |
Legacy Application Deployment via Group Policy
C:\Program Files\LegacyInventory\app.exe) and the parent process is gpupdate.exe or ccmexec.exe (SCCM client). Alternatively, create a baseline exclusion for the specific SHA-256 hash if it is confirmed as benign for that specific application version.Third-Party Security Tool Telemetry
qualysagent.exe, tsserver.exe, or falconctl.exe). If the IOC is an IP address, exclude connections from the security tool’s service account or specific service ports (e.g., TCP 443 or 8443) to the known SmartApeSG IP.Scheduled Backup or Sync Job