← Back to SOC feed Coverage →

ThreatFox: HypeAgent IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
iocthreatfoxwin-hype_agent
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-25T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of HypeAgent indicators to establish persistence or execute malicious payloads within the Azure environment. A SOC team should proactively hunt for these specific IOCs in Azure Sentinel to rapidly identify and contain early-stage compromises before they escalate into broader lateral movement incidents.

IOC Summary

Malware Family: HypeAgent Total IOCs: 5 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port80[.]76[.]49[.]47:7443botnet_cc2026-08-2575%
ip:port66[.]235[.]175[.]82:7080botnet_cc2026-08-2575%
ip:port31[.]77[.]248[.]3:7443botnet_cc2026-08-2575%
ip:port195[.]177[.]94[.]155:7443botnet_cc2026-08-2575%
ip:port151[.]241[.]154[.]55:7443botnet_cc2026-08-2575%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - HypeAgent
let malicious_ips = dynamic(["80.76.49.47", "31.77.248.3", "195.177.94.155", "151.241.154.55", "66.235.175.82"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["80.76.49.47", "31.77.248.3", "195.177.94.155", "151.241.154.55", "66.235.175.82"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: HypeAgent IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/win.hype_agent/