← Back to SOC feed Coverage →

ThreatFox: RedTail IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
elf-redtailiocthreatfox
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-06-14T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: RedTail IOCs rule detects potential adversary activity linked to the RedTail threat group, leveraging known indicators of compromise associated with its malicious infrastructure. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate advanced persistent threats that may be establishing persistence or exfiltrating data within their environment.

IOC Summary

Malware Family: RedTail Total IOCs: 8 IOC Types: sha256_hash, url, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port79[.]76[.]58[.]113:2375payload_delivery2026-06-1485%
urlhxxps://217[.]60[.]195[.]113/shpayload_delivery2026-06-1485%
sha256_hash7c8e7619c5398d3b857e6f72cf791e2c2e27762ddd8521eb8971c893cdb8b1fcpayload2026-06-1485%
ip:port87[.]120[.]166[.]130:2375payload_delivery2026-06-1485%
ip:port152[.]42[.]247[.]85:2375payload_delivery2026-06-1485%
ip:port31[.]76[.]27[.]231:80payload_delivery2026-06-1485%
ip:port183[.]56[.]243[.]176:2375payload_delivery2026-06-1485%
ip:port168[.]144[.]45[.]211:2375payload_delivery2026-06-1485%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - RedTail
let malicious_urls = dynamic(["https://217.60.195.113/sh"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - RedTail
let malicious_hashes = dynamic(["7c8e7619c5398d3b857e6f72cf791e2c2e27762ddd8521eb8971c893cdb8b1fc"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/elf.redtail/