This hunt hypothesis targets adversary behavior characterized by network communications to known malicious indicators of compromise (IOCs) linked to the Satacom threat actor. Proactively hunting for these specific IOCs in Azure Sentinel is critical because their high severity rating suggests an active campaign that requires immediate identification and containment before lateral movement occurs.
Malware Family: Satacom Total IOCs: 2 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://eyuboglutv.com/nfront.php | botnet_cc | 2026-07-04 | 100% |
| domain | eyuboglutv.com | botnet_cc | 2026-07-04 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Satacom
let malicious_domains = dynamic(["eyuboglutv.com"]);
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 - Satacom
let malicious_urls = dynamic(["https://eyuboglutv.com/nfront.php"]);
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: Satacom IOCs rule, tailored for a legitimate enterprise environment:
Automated Vulnerability Scanning via Qualys or Tenable
Qualys-Scanner or Tenable-Agent security groups. Alternatively, filter events where the destination port is restricted to standard web traffic (80/443) and the user agent string contains “Qualys” or “Tenable.”Scheduled Software Updates via Microsoft Endpoint Configuration Manager (MECM)
WindowsUpdate service or a specific vendor updater process will generate outbound traffic matching the Satacom IOCs during the maintenance window (e.g., 02:00 – 04:00).UpdateOrchestrator.exe or SatacomUpdater.exe. Additionally, filter by user context to exclude accounts named SYSTEM or LocalService during these hours.Cloud Backup and Archiving Jobs (Veeam or Commvault)