← Back to SOC feed Coverage →

ThreatFox: Cobalt Strike IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
cobalt-strikeiocthreatfoxwin-cobalt_strike
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-27T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity involving known Cobalt Strike indicators of compromise, which are frequently utilized by threat actors to establish command and control channels during post-exploitation phases. Proactively hunting for these IOCs within Azure Sentinel is critical because early identification of this widely adopted toolset enables the SOC team to rapidly isolate compromised assets before adversaries can execute lateral movement or data exfiltration campaigns.

IOC Summary

Malware Family: Cobalt Strike Total IOCs: 8 IOC Types: sha256_hash, ip:port, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
sha256_hash9a7fdfd933725c6cc3345da81b6ee2d6903e225f961aa18efa5b5a9447f4b015payload2026-07-2795%
sha1_hash30bc73c6672e6c46d21086a04762ce4170fd4e99payload2026-07-2795%
md5_hasha3db22547419f693905d3dd045ee9f84payload2026-07-2795%
ip:port38[.]244[.]52[.]101:888botnet_cc2026-07-27100%
ip:port38[.]244[.]52[.]101:8888botnet_cc2026-07-27100%
ip:port38[.]244[.]52[.]101:22botnet_cc2026-07-27100%
ip:port38[.]244[.]52[.]101:80botnet_cc2026-07-27100%
ip:port38[.]244[.]52[.]101:8080botnet_cc2026-07-27100%

KQL: Ip Hunt

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

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Cobalt Strike
let malicious_hashes = dynamic(["9a7fdfd933725c6cc3345da81b6ee2d6903e225f961aa18efa5b5a9447f4b015", "30bc73c6672e6c46d21086a04762ce4170fd4e99", "a3db22547419f693905d3dd045ee9f84"]);
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

References

False Positive Guidance

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

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