This hunt targets adversary behavior involving the execution of known ValleyRAT remote access trojan indicators to establish persistent command and control channels within the environment. Proactively hunting these specific IOCs in Azure Sentinel is critical because early detection of this high-severity threat enables rapid containment before attackers can exfiltrate sensitive data or pivot laterally across the network.
Malware Family: ValleyRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]253[.]228[.]193:4412 | botnet_cc | 2026-07-15 | 75% |
| ip:port | 192[.]253[.]228[.]193:4411 | botnet_cc | 2026-07-15 | 75% |
| ip:port | 154[.]82[.]93[.]200:778 | botnet_cc | 2026-07-15 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - ValleyRAT
let malicious_ips = dynamic(["192.253.228.193", "154.82.93.200"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["192.253.228.193", "154.82.93.200"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: ValleyRAT IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
C:\ProgramData\Quarantine directory. This directory contains archived, benign versions of legacy software that happen to share file hashes with known ValleyRAT IOCs due to shared code libraries or previous updates from the same vendor.*\Quarantine*, *\Backup*, and *\Archive* from the detection logic, provided the process initiating the scan is a trusted security agent (e.g., csagent.exe or MsMpEng.exe).IT Administration: Software Deployment via SCCM/Intune
%TEMP% that match ValleyRAT IOCs before the final application is fully installed and signed by the internal PKI.ccmexec.exe (SCCM) or Microsoft.IntuneManagementExtension.exe, specifically targeting file paths within %TEMP% and %PROGRAMDATA%\Microsoft\Intune.Scheduled Maintenance: Antivirus Signature Updates