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

Hunt Hypothesis

This hunt targets the presence of ValleyRAT, a remote access trojan known for enabling persistent backdoor access and data exfiltration, by correlating its specific indicators of compromise against your Azure Sentinel telemetry. Proactively hunting for these IOCs is critical to identify compromised endpoints before the adversary leverages the RAT to establish command-and-control channels or escalate privileges within the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port134[.]122[.]187[.]74:80botnet_cc2026-09-0575%
ip:port134[.]122[.]187[.]74:8888botnet_cc2026-09-0575%
ip:port134[.]122[.]187[.]74:6666botnet_cc2026-09-05100%
md5_hash3c143cde7d767aba3024349739d9d708payload2026-09-0495%
sha1_hashae42cc9a3b33728a7e3cbf98a251ec2782b4f4b5payload2026-09-0495%
md5_hashdc4054f1ff61a001d3d872ae280b3208payload2026-09-0495%
sha256_hash1055656b4243a6f96db475f0fd2f8506a944f65eaea22789c409220b2b82040bpayload2026-09-0495%
sha1_hash0dd128e087b0740d6cb86c502815d9b6697fc80bpayload2026-09-0495%
sha1_hash6572fd0e50094c7f2ff4aa7267893ec09853b3e4payload2026-09-0495%
md5_hashee532fd47952c2b5ad8cb3cd3a92757dpayload2026-09-0495%
sha256_hash50f8064aa9924f674b5b7d24d1562f35f11007cc8ef57a7a3ce07e0f713efba1payload2026-09-0495%
sha1_hashe584cc74edc4bee1b7808ec6c287a24376a8e05dpayload2026-09-0495%
md5_hash6ac22b0b445d781a3b104ed39d3f7693payload2026-09-0495%
sha256_hash13b5ce5838356cffbb328312b4509eef0662d2d3434b683f177bb0aaf8281b9cpayload2026-09-0495%
sha1_hasha7c737cd5dee4c165d2e0d5a44b256340f89db58payload2026-09-0495%
md5_hashf2d73d70f95b645bbdfcc00f306ce16dpayload2026-09-0495%
sha256_hashf650d42dc1d33f8e776b9eadbc7f8789868b20d97b48d1d2338532ba81d36337payload2026-09-0495%
sha256_hash966b1fea9cdc54843a728b1a870bfb7d2f8109085b6114455d6e2635ab1ad40fpayload2026-09-0495%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["134.122.187.74"]);
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.187.74"]);
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(["3c143cde7d767aba3024349739d9d708", "ae42cc9a3b33728a7e3cbf98a251ec2782b4f4b5", "dc4054f1ff61a001d3d872ae280b3208", "1055656b4243a6f96db475f0fd2f8506a944f65eaea22789c409220b2b82040b", "0dd128e087b0740d6cb86c502815d9b6697fc80b", "6572fd0e50094c7f2ff4aa7267893ec09853b3e4", "ee532fd47952c2b5ad8cb3cd3a92757d", "50f8064aa9924f674b5b7d24d1562f35f11007cc8ef57a7a3ce07e0f713efba1", "e584cc74edc4bee1b7808ec6c287a24376a8e05d", "6ac22b0b445d781a3b104ed39d3f7693", "13b5ce5838356cffbb328312b4509eef0662d2d3434b683f177bb0aaf8281b9c", "a7c737cd5dee4c165d2e0d5a44b256340f89db58", "f2d73d70f95b645bbdfcc00f306ce16d", "f650d42dc1d33f8e776b9eadbc7f8789868b20d97b48d1d2338532ba81d36337", "966b1fea9cdc54843a728b1a870bfb7d2f8109085b6114455d6e2635ab1ad40f"]);
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

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