← Back to SOC feed Coverage →

ThreatFox: ValleyRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-01T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversaries deploying the ValleyRAT remote access trojan to establish persistent command-and-control channels through specific IP:port pairs for data exfiltration and system manipulation. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly detect early-stage infections, prevent unauthorized data leakage, and mitigate the risk of long-term lateral movement within the network.

IOC Summary

Malware Family: ValleyRAT Total IOCs: 10 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port95[.]41[.]36[.]198:443botnet_cc2026-09-0175%
ip:port185[.]9[.]17[.]250:443botnet_cc2026-09-0175%
ip:port95[.]40[.]176[.]172:8443botnet_cc2026-09-0175%
ip:port95[.]40[.]209[.]24:8443botnet_cc2026-09-0175%
ip:port95[.]41[.]69[.]117:8443botnet_cc2026-09-0175%
ip:port43[.]154[.]230[.]182:443botnet_cc2026-09-0175%
ip:port69[.]72[.]83[.]130:443botnet_cc2026-09-0175%
ip:port69[.]72[.]83[.]130:2083botnet_cc2026-09-0175%
ip:port69[.]72[.]83[.]130:2096botnet_cc2026-09-0175%
ip:port69[.]72[.]83[.]130:8443botnet_cc2026-09-0175%

KQL: Ip Hunt

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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 3-5 specific false positive scenarios for the ThreatFox: ValleyRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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