← Back to SOC feed Coverage →

ThreatFox: ValleyRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-17T23:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: ValleyRAT IOCs rule detects potential command and control activity associated with the ValleyRAT malware, which is known for exfiltrating sensitive data and establishing persistent access. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate advanced persistent threats before they cause significant data loss or system compromise.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hash9fb91bff7289b601bb0a7d91200fe770payload2026-06-1795%
sha256_hash7e27deea413f5c390fd790423de9dc552a1e393187607485394044c4ddc85fdfpayload2026-06-1795%
sha1_hashc211776370bab8368f126d414eb2ea3d55ae7da8payload2026-06-1795%
sha256_hash9ab135ec9d97c65caacdc2cd1ac166b7f491d8ad0635b3bd595a244ca6af9795payload2026-06-1795%
sha1_hash6e2603b2cb7c1150b1d0d9f024c7283b4a749260payload2026-06-1795%
md5_hashbd2c666c8c598630a65ac6d481b96ee4payload2026-06-1795%
ip:port134[.]122[.]155[.]147:23610botnet_cc2026-06-1775%
domainc[.]360ctct.combotnet_cc2026-06-1775%

KQL: Ip Hunt

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

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ValleyRAT
let malicious_domains = dynamic(["c.360ctct.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - ValleyRAT
let malicious_hashes = dynamic(["9fb91bff7289b601bb0a7d91200fe770", "7e27deea413f5c390fd790423de9dc552a1e393187607485394044c4ddc85fdf", "c211776370bab8368f126d414eb2ea3d55ae7da8", "9ab135ec9d97c65caacdc2cd1ac166b7f491d8ad0635b3bd595a244ca6af9795", "6e2603b2cb7c1150b1d0d9f024c7283b4a749260", "bd2c666c8c598630a65ac6d481b96ee4"]);
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
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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