← 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-08-31T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity involving known indicators of compromise (IOCs) from the ValleyRAT remote access trojan to identify potential lateral movement and data exfiltration attempts within the environment. A SOC team should proactively search for these specific IOCs in Azure Sentinel to rapidly validate early-stage infections before the malware establishes persistence or escalates privileges on critical assets.

IOC Summary

Malware Family: ValleyRAT Total IOCs: 8 IOC Types: md5_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
md5_hash07ddbbe2c71c45577a7a4fbcdba0df91payload2026-08-3150%
md5_hash8a626d844943da3456b044f38deae3a2payload2026-08-3150%
md5_hashc24e99f9437feacaa63766a3cde3fe3dpayload2026-08-3150%
ip:port103[.]45[.]66[.]18:442botnet_cc2026-08-3175%
ip:port103[.]45[.]66[.]18:443botnet_cc2026-08-3175%
ip:port192[.]253[.]225[.]173:6666botnet_cc2026-08-3175%
ip:port192[.]253[.]225[.]173:8888botnet_cc2026-08-3175%
ip:port103[.]45[.]66[.]18:441botnet_cc2026-08-3175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["192.253.225.173", "103.45.66.18"]);
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(["192.253.225.173", "103.45.66.18"]);
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(["07ddbbe2c71c45577a7a4fbcdba0df91", "8a626d844943da3456b044f38deae3a2", "c24e99f9437feacaa63766a3cde3fe3d"]);
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

Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: ValleyRAT IOCs detection rule in an enterprise environment:

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