This hunt targets adversary behavior characterized by the deployment of Meterpreter implants to establish persistent command-and-control channels and execute lateral movement within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early detection of Meterpreter activity allows the SOC team to disrupt advanced post-exploitation phases before attackers can exfiltrate sensitive data or escalate privileges.
Malware Family: Meterpreter Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 168[.]245[.]203[.]140:3790 | botnet_cc | 2026-07-17 | 50% |
| ip:port | 168[.]245[.]203[.]179:3790 | botnet_cc | 2026-07-17 | 50% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Meterpreter
let malicious_ips = dynamic(["168.245.203.140", "168.245.203.179"]);
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(["168.245.203.140", "168.245.203.179"]);
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 specific false positive scenarios for the ThreatFox: Meterpreter IOCs detection rule, tailored for an enterprise environment:
Endpoint Management Software Updates
C:\Program Files\EndpointAgent\meterpreter.exe process spawning network connections to internal management servers as suspicious IOCs.C:\Program Files\EndpointAgent\ directory path.IT Helpdesk Remote Support Sessions
TeamViewer_Service.exe, AnyDeskService.exe) and the destination IP belongs to the internal IT Support VLAN subnet.Automated Compliance & Patching Scheduled Jobs