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

Hunt Hypothesis

This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the ValleyRAT remote access trojan, which is known for establishing persistent backdoors and exfiltrating sensitive data from compromised endpoints. The SOC team should proactively search for these IOCs within Azure Sentinel to identify early-stage infections before the malware can escalate its capabilities or spread laterally across the network.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]86[.]2[.]244:558botnet_cc2026-08-0475%
ip:port118[.]107[.]9[.]185:1112botnet_cc2026-08-04100%
ip:port47[.]86[.]2[.]244:557botnet_cc2026-08-04100%
ip:port118[.]107[.]43[.]220:8080botnet_cc2026-08-04100%
sha1_hashf5701fb674b20fdc997b7eba242ace9f8a314807payload2026-08-0495%
md5_hashebbdc2815774b02394c688f9415325bbpayload2026-08-0495%
sha1_hash323574f16b63ebd05f097a572e8cf6e56efaa910payload2026-08-0495%
md5_hash8f4d337438eaf684b61e294ea52588f1payload2026-08-0495%
sha256_hash875630fd7cae532e3700bec48bdd1c51ba7f133a595d4a62b94733f54073c62epayload2026-08-0495%
sha256_hash1ab82089b52096ef768066cc619f1774801834221e22480411afa09e253461b4payload2026-08-0495%
md5_hashda6a114917bdb41286172fcaec6a05a3payload2026-08-0495%
sha1_hash0d891499b453fec47129011c7160128223bbfabdpayload2026-08-0495%
sha256_hash7b1da0a6dc4eb9fc73d0e810677c2740cad5a1320fc5c9af00babf553ca2cebcpayload2026-08-0495%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["118.107.9.185", "118.107.43.220", "47.86.2.244"]);
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(["118.107.9.185", "118.107.43.220", "47.86.2.244"]);
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(["f5701fb674b20fdc997b7eba242ace9f8a314807", "ebbdc2815774b02394c688f9415325bb", "323574f16b63ebd05f097a572e8cf6e56efaa910", "8f4d337438eaf684b61e294ea52588f1", "875630fd7cae532e3700bec48bdd1c51ba7f133a595d4a62b94733f54073c62e", "1ab82089b52096ef768066cc619f1774801834221e22480411afa09e253461b4", "da6a114917bdb41286172fcaec6a05a3", "0d891499b453fec47129011c7160128223bbfabd", "7b1da0a6dc4eb9fc73d0e810677c2740cad5a1320fc5c9af00babf553ca2cebc"]);
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 exclusions for the ThreatFox: ValleyRAT IOCs detection rule in an enterprise environment:

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