This hunt targets adversary activity involving specific indicators of compromise 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 breaches before they escalate, ensuring rapid containment and validation against this high-severity threat profile.
Malware Family: SmartApeSG Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://bronzehorizon.top/role/route-state | payload_delivery | 2026-07-01 | 100% |
| domain | bronzehorizon.top | payload_delivery | 2026-07-01 | 100% |
| url | hxxps://bronzehorizon.top/role/settings-worker.js | payload_delivery | 2026-07-01 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["bronzehorizon.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://bronzehorizon.top/role/route-state", "https://bronzehorizon.top/role/settings-worker.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 for the ThreatFox: SmartApeSG IOCs detection rule within an enterprise environment, along with suggested filters and exclusions:
Security Team Manual IOC Testing via EDR Console
Security-Lab-Workstations Active Directory OU or those tagged with Environment: Test. Additionally, filter out events where the initiating process is a known security tool (e.g., CrowdStrike Falcon Sensor, Carbon Black Agent) running under the SYSTEM account rather than a standard user context.Automated Patch Management and Software Deployment
ccmexec.exe (SCCM) or IvAgent.exe, specifically when the execution occurs during the defined “Maintenance Window” (e.g., 02:00–04:00 local time). You can also whitelist specific file hashes associated with the known deployment package version.Third-Party Cloud Backup and Synchronization Services