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

Hunt Hypothesis

This hunt detects adversary activity consistent with the ValleyRAT remote access trojan by identifying matches against its specific set of eleven indicators of compromise across network and endpoint telemetry. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage infections before they establish persistence or exfiltrate sensitive data from the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
md5_hashc20a54cc45596e10f5eaf83a388128fepayload2026-07-1695%
sha1_hash7fb8478bfa214c20a0d4ed26b293501d39c475bcpayload2026-07-1695%
md5_hash3a85be4f475378e774b44aafd20102cdpayload2026-07-1695%
sha256_hash04bc0dbf904d347bfa0b064bb436650fad0583b550dbd9450c8d00f4cb5a3b1bpayload2026-07-1695%
md5_hash56ff460150b3ddeb5f1a01495ab44ee2payload2026-07-1695%
sha256_hash551854f430801e8352f6562a48077cb04f399cdc505b42f0daaa3ad61d0e9f62payload2026-07-1695%
sha1_hash9f4426b75d6dca82fb22a1f5ebfef3205ef78bcapayload2026-07-1695%
sha256_hasheee7db42470f6c58dc1e696ee937e87bd72f0cabe8df566021a79880d288e370payload2026-07-1695%
sha1_hashb524c7848c2599868c1a39d57f4bfb261d194197payload2026-07-1695%
urlhxxp://43[.]198[.]235[.]91/getinstall64botnet_cc2026-07-16100%
ip:port154[.]91[.]74[.]87:774botnet_cc2026-07-1675%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["154.91.74.87"]);
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(["154.91.74.87"]);
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://43.198.235.91/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(["c20a54cc45596e10f5eaf83a388128fe", "7fb8478bfa214c20a0d4ed26b293501d39c475bc", "3a85be4f475378e774b44aafd20102cd", "04bc0dbf904d347bfa0b064bb436650fad0583b550dbd9450c8d00f4cb5a3b1b", "56ff460150b3ddeb5f1a01495ab44ee2", "551854f430801e8352f6562a48077cb04f399cdc505b42f0daaa3ad61d0e9f62", "9f4426b75d6dca82fb22a1f5ebfef3205ef78bca", "eee7db42470f6c58dc1e696ee937e87bd72f0cabe8df566021a79880d288e370", "b524c7848c2599868c1a39d57f4bfb261d194197"]);
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, tailored for an enterprise environment:

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