← 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-06-15T11:00:01Z · Confidence: high

Hunt Hypothesis

ValleyRAT is leveraging these IOCs to establish persistence and exfiltrate data within the network. SOC teams should proactively hunt for this activity to detect and mitigate a high-severity threat before it leads to data compromise or system control.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
sha1_hash4f769db571821779a629ec34253e268c3ad78208payload2026-06-1495%
md5_hash36b013c5e39acbe752709d0b2fc01006payload2026-06-1495%
sha256_hashb48c97d1dadc4cb7e0c3303d556a1217cccdd8839fe739d71a7c5f977b4810bdpayload2026-06-1495%
sha256_hashc1d77b03a2d57f4ef9670a7569a77b662196cb10c74e303a04626afc49fcfb0dpayload2026-06-1495%
sha1_hash1f61163784b16b391bff874349cf5fe115b2b01dpayload2026-06-1495%
md5_hash6382ad4c07f225406139f7ab90f2ccafpayload2026-06-1495%
ip:port38[.]46[.]13[.]178:65301botnet_cc2026-06-1475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["38.46.13.178"]);
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(["38.46.13.178"]);
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(["4f769db571821779a629ec34253e268c3ad78208", "36b013c5e39acbe752709d0b2fc01006", "b48c97d1dadc4cb7e0c3303d556a1217cccdd8839fe739d71a7c5f977b4810bd", "c1d77b03a2d57f4ef9670a7569a77b662196cb10c74e303a04626afc49fcfb0d", "1f61163784b16b391bff874349cf5fe115b2b01d", "6382ad4c07f225406139f7ab90f2ccaf"]);
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/