This rule detects the initial infection and covert command-and-control establishment of the HypeAgent malware family by matching known threat intelligence indicators within Azure Sentinel logs. Proactive hunting for these specific IOCs is critical to identify early-stage compromises before adversaries can leverage their stealth capabilities to exfiltrate sensitive data or pivot laterally across the network.
Malware Family: HypeAgent Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 82[.]29[.]101[.]38:7443 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 94[.]154[.]32[.]73:7080 | botnet_cc | 2026-08-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - HypeAgent
let malicious_ips = dynamic(["94.154.32.73", "82.29.101.38"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["94.154.32.73", "82.29.101.38"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are 3-5 specific false positive scenarios for the ThreatFox: HypeAgent IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Endpoint Protection Scheduled Scans
NT SERVICE\MsMpSvc for Defender or C:\Program Files\CrowdStrike\csagent.exe) where the destination is known update servers (e.g., *.microsoft.com, *.crowdstrike.com). Additionally, filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 local time).Scenario: Automated Patch Management Deployments
C:\Program Files\Microsoft Configuration Manager\ccmsetup.exe or C:\Ivanti\Application Management\agent.exe). Filter alerts where the parent process is a known system scheduler service (svchost.exe running under LocalSystem) during active deployment