← Back to SOC feed Coverage →

ThreatFox: ValleyRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-06-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the execution of known ValleyRAT indicators across endpoints to detect active reconnaissance or data exfiltration campaigns. The SOC team should proactively search for these specific IOCs in Azure Sentinel to identify early-stage infections before they escalate into broader lateral movement incidents within the cloud environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://149[.]30[.]222[.]4/getinstall64botnet_cc2026-06-30100%
ip:port47[.]243[.]127[.]117:889botnet_cc2026-06-2975%
ip:port47[.]243[.]127[.]117:887botnet_cc2026-06-29100%
md5_hasha8480f1bd4fc75a68930f3c60df63955payload2026-06-2995%
md5_hash63844cd3d2578789f0e5ca58cfddf9d4payload2026-06-2995%
sha256_hashffe98374173d7c2084a1a6953b308c13a8b9493294af831c23542b0d88654036payload2026-06-2995%
sha1_hashce609cfde7d81bc7311a83e0f008a2f756912ea9payload2026-06-2995%
sha256_hashd6ca3c85df784f0b7751f67bc0b23f44f173b7be7f6344d02f26c8e28e0abad8payload2026-06-2995%
sha1_hashab84b6726d46e9cdc1349d2c8cfb9777dac57101payload2026-06-2995%
md5_hash91ca6805aabe73cabd12644fccf91ec5payload2026-06-2995%
sha256_hashab168b5a63520e7cabe5d2d3917e1b9b1b388db0b3f27354bc7cd075e63cc7ddpayload2026-06-2995%
sha1_hasha29d766799b35f8c9a4fbc3950295aedc17c7e9apayload2026-06-2995%
ip:port134[.]122[.]128[.]106:443botnet_cc2026-06-29100%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - ValleyRAT
let malicious_urls = dynamic(["http://149.30.222.4/getinstall64"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - ValleyRAT
let malicious_hashes = dynamic(["a8480f1bd4fc75a68930f3c60df63955", "63844cd3d2578789f0e5ca58cfddf9d4", "ffe98374173d7c2084a1a6953b308c13a8b9493294af831c23542b0d88654036", "ce609cfde7d81bc7311a83e0f008a2f756912ea9", "d6ca3c85df784f0b7751f67bc0b23f44f173b7be7f6344d02f26c8e28e0abad8", "ab84b6726d46e9cdc1349d2c8cfb9777dac57101", "91ca6805aabe73cabd12644fccf91ec5", "ab168b5a63520e7cabe5d2d3917e1b9b1b388db0b3f27354bc7cd075e63cc7dd", "a29d766799b35f8c9a4fbc3950295aedc17c7e9a"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: ValleyRAT IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:

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