← 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-27T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity by correlating Azure Sentinel logs against ten specific Indicators of Compromise (IOCs) linked to the HypeAgent threat actor. Proactive hunting for these IOCs is essential to identify early-stage compromises and mitigate potential lateral movement before the adversary establishes a persistent foothold within the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port198[.]23[.]177[.]210:7443botnet_cc2026-08-2775%
ip:port155[.]117[.]183[.]31:7080botnet_cc2026-08-2775%
ip:port66[.]55[.]77[.]158:7400botnet_cc2026-08-2775%
ip:port172[.]245[.]155[.]83:7443botnet_cc2026-08-2775%
ip:port94[.]26[.]3[.]112:7443botnet_cc2026-08-2775%
ip:port94[.]26[.]3[.]112:7080botnet_cc2026-08-2775%
ip:port198[.]23[.]177[.]206:7080botnet_cc2026-08-2775%
ip:port198[.]23[.]177[.]206:7443botnet_cc2026-08-2775%
ip:port46[.]151[.]182[.]98:7443botnet_cc2026-08-2775%
ip:port196[.]251[.]121[.]137:7080botnet_cc2026-08-2775%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - HypeAgent
let malicious_ips = dynamic(["94.26.3.112", "196.251.121.137", "198.23.177.210", "66.55.77.158", "198.23.177.206", "46.151.182.98", "155.117.183.31", "172.245.155.83"]);
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(["94.26.3.112", "196.251.121.137", "198.23.177.210", "66.55.77.158", "198.23.177.206", "46.151.182.98", "155.117.183.31", "172.245.155.83"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: HypeAgent IOCs detection rule in an enterprise environment:

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