This detection rule identifies adversary activity by correlating network and endpoint telemetry against specific Indicators of Compromise (IOCs) linked to the SmartApeSG threat actor. Proactively hunting for these IOCs within Azure Sentinel is critical to rapidly detect early-stage intrusions, enabling the SOC team to isolate affected assets before the adversary can establish persistence or exfiltrate sensitive data.
Malware Family: SmartApeSG Total IOCs: 2 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | profile.cobaltwayfinder.org | botnet_cc | 2026-09-01 | 100% |
| url | hxxps://profile.cobaltwayfinder.org/reset/gateway-runtime.js | botnet_cc | 2026-09-01 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - SmartApeSG
let malicious_domains = dynamic(["profile.cobaltwayfinder.org"]);
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://profile.cobaltwayfinder.org/reset/gateway-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 3-5 specific false positive scenarios for the ThreatFox: SmartApeSG IOCs detection rule, including targeted filters and exclusions:
Scenario: Automated Security Tool Updates via Scheduled Tasks
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe or C:\Windows\System32\scheduledtasks.exe when the source IP is within the corporate DMZ range (e.g., 10.50.x.x) and the destination port matches standard HTTPS traffic (443).Scenario: Admin-Initiated Threat Intelligence Ingestion
SEC-Admins or SOC-Analysts) and the process name is splunkd.exe, sentinel-cli.exe, or PowerShell.exe running with elevated privileges.Scenario: Cloud Backup and Data Archiving Services