← Back to SOC feed Coverage →

ThreatFox: ValleyRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
backdooriocthreatfoxwin-valley_rat
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-09-19T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets known indicators of compromise for ValleyRAT, a remote access trojan frequently used for initial access and lateral movement, by correlating specific network and host artifacts against active Azure Sentinel telemetry. Proactively hunting for these IOCs allows the SOC team to identify dormant or active ValleyRAT infections before they progress to data exfiltration or privilege escalation, thereby reducing the mean time to detection for this high-severity threat.

IOC Summary

Malware Family: ValleyRAT Total IOCs: 6 IOC Types: sha256_hash, md5_hash, sha1_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port43[.]248[.]172[.]115:1443botnet_cc2026-09-1975%
ip:port202[.]79[.]166[.]26:6666botnet_cc2026-09-1975%
ip:port202[.]79[.]166[.]26:8888botnet_cc2026-09-1975%
sha256_hashd3f5b2ed1b616c6302341f7a7736490e11b4b63081a22e6153d4a4c0a53d0a40payload2026-09-1995%
sha1_hash3e9cf3f84058b4600342398c4d5218c551beea7bpayload2026-09-1995%
md5_hash79d90eabf375fcae4bf76ed88d7d2c10payload2026-09-1995%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["202.79.166.26", "43.248.172.115"]);
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(["202.79.166.26", "43.248.172.115"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - ValleyRAT
let malicious_hashes = dynamic(["d3f5b2ed1b616c6302341f7a7736490e11b4b63081a22e6153d4a4c0a53d0a40", "3e9cf3f84058b4600342398c4d5218c551beea7b", "79d90eabf375fcae4bf76ed88d7d2c10"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

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