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

Hunt Hypothesis

This hunt detects adversary activity involving five specific indicators of compromise (IOCs) linked to the ValleyRAT remote access trojan, which are known to facilitate credential theft and lateral movement within compromised networks. The SOC team should proactively search for these IOCs in Azure Sentinel because early identification of ValleyRAT presence allows for immediate containment before attackers can establish persistence or exfiltrate sensitive data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port43[.]132[.]212[.]50:661botnet_cc2026-08-16100%
ip:port43[.]132[.]212[.]50:662botnet_cc2026-08-16100%
md5_hash079d47dd089638b90a5741175e15760fpayload2026-08-1595%
sha256_hashaafaddd58c513931655be4a52b11317283b500ef27608a83af45d4e625568d20payload2026-08-1595%
sha1_hash4068c64946bc4bafa70fba0bef12fd1568d62441payload2026-08-1595%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["43.132.212.50"]);
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(["43.132.212.50"]);
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(["079d47dd089638b90a5741175e15760f", "aafaddd58c513931655be4a52b11317283b500ef27608a83af45d4e625568d20", "4068c64946bc4bafa70fba0bef12fd1568d62441"]);
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 the false positive scenarios and corresponding exclusion strategies for the ThreatFox: ValleyRAT IOCs detection rule:

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