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

Hunt Hypothesis

This hunt targets adversary behavior consistent with the ValleyRAT remote access trojan by actively searching for its seven known indicators of compromise across network traffic and endpoint logs. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage lateral movement or data exfiltration attempts before they escalate into a full-blown incident, given the high severity of this threat actor’s capabilities.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]239[.]19[.]194:10087botnet_cc2026-07-02100%
sha1_hash8359d76b9578d5861822218077e167c31da9eb83payload2026-07-0295%
md5_hash1cf8d51ca815ee4fac497e15c6a5d9e6payload2026-07-0295%
sha1_hash401d2e17be9c43c3e63af409ee1e3758180b477cpayload2026-07-0295%
md5_hash3a7a359c92ebc3cb971f278c538b9ed5payload2026-07-0295%
sha256_hashca66840e7c8c30a572c0489618a57d25474039bc0b44b0955ca4edc9c5d81706payload2026-07-0295%
sha256_hash75ccc97b9fefe904ad711e32f29fd337d78b7560dfb96252e421a643a1796c9apayload2026-07-0295%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["47.239.19.194"]);
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(["47.239.19.194"]);
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(["8359d76b9578d5861822218077e167c31da9eb83", "1cf8d51ca815ee4fac497e15c6a5d9e6", "401d2e17be9c43c3e63af409ee1e3758180b477c", "3a7a359c92ebc3cb971f278c538b9ed5", "ca66840e7c8c30a572c0489618a57d25474039bc0b44b0955ca4edc9c5d81706", "75ccc97b9fefe904ad711e32f29fd337d78b7560dfb96252e421a643a1796c9a"]);
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 for the ThreatFox: ValleyRAT IOCs detection rule, tailored for an enterprise environment:

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