This hunt hypothesis targets adversary behavior involving the deployment or execution of HypeAgent indicators, which often signal reconnaissance activities or lateral movement by threat actors leveraging this specific tool. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify and contain potential compromises before adversaries can establish persistence or exfiltrate sensitive data within the cloud environment.
Malware Family: HypeAgent Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 46[.]151[.]182[.]98:7080 | botnet_cc | 2026-08-30 | 75% |
| ip:port | 194[.]59[.]30[.]96:7080 | botnet_cc | 2026-08-30 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - HypeAgent
let malicious_ips = dynamic(["194.59.30.96", "46.151.182.98"]);
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(["194.59.30.96", "46.151.182.98"]);
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 specific false positive scenarios and corresponding exclusions for the ThreatFox: HypeAgent IOCs detection rule in an enterprise environment:
Scenario: Scheduled Patch Deployment via SCCM/Intune
HypeAgent process to download and install new IOC definitions, generating network traffic and file creation events that match the rule’s signature.ccmsetup.exe, Microsoft.IntuneManagementExtension.exe, or TaskScheduler (specifically jobs named “HypeAgent Update”) running between 02:00 and 06:00 local time.Scenario: Admin-Initiated Endpoint Health Check
User Account is a member of the “Security Admins” group and the command line arguments contain flags such as --sync, --health-check, or --force-update.Scenario: CI/CD Pipeline Agent Installation
provision.sh or setup.ps1), the HypeAgent installer is executed to register the new host with the central management console, triggering IOC registration events.