← Back to SOC feed Coverage →

ThreatFox: Meterpreter IOCs

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

Hunt Hypothesis

This hypothesis posits that adversaries are actively deploying Meterpreter implants to establish persistent command-and-control channels and execute post-exploitation tasks within the Azure environment. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel because early detection of this widely used post-exploitation tool allows for rapid containment before attackers can expand their lateral movement or exfiltrate sensitive data.

IOC Summary

Malware Family: Meterpreter Total IOCs: 4 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port103[.]177[.]46[.]36:3790botnet_cc2026-07-1150%
ip:port168[.]245[.]203[.]188:3790botnet_cc2026-07-1150%
ip:port168[.]245[.]203[.]104:3790botnet_cc2026-07-1150%
ip:port168[.]245[.]203[.]176:3790botnet_cc2026-07-1150%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Meterpreter
let malicious_ips = dynamic(["103.177.46.36", "168.245.203.188", "168.245.203.176", "168.245.203.104"]);
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(["103.177.46.36", "168.245.203.188", "168.245.203.176", "168.245.203.104"]);
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 four specific false positive scenarios for the ThreatFox: Meterpreter IOCs detection rule, tailored for an enterprise environment where legitimate administrative and development activities often mimic C2 beaconing behavior.

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