← Back to SOC feed Coverage →

ThreatFox: RedTail IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsUrlClickEvents
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-05-23T23:00:00Z · Confidence: high

Hunt Hypothesis

The RedTail IOCs detected in Azure Sentinel indicate potential adversary activity associated with a known malicious group leveraging these indicators to compromise systems. SOC teams should proactively hunt for these IOCs to identify and mitigate early-stage threats before they escalate into full-scale breaches.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port107[.]189[.]3[.]150:80payload_delivery2026-05-2385%
ip:port140[.]99[.]32[.]48:80payload_delivery2026-05-2385%
urlhxxp://107[.]189[.]3[.]150/b2f628/cronb.shpayload_delivery2026-05-2390%
urlhxxp://209[.]141[.]58[.]166/b2f628/cronb.shpayload_delivery2026-05-2390%
urlhxxp://140[.]99[.]32[.]48/b2f628/cronb.shpayload_delivery2026-05-2385%
urlhxxp://205[.]185[.]118[.]246/b2f628/cronb.shpayload_delivery2026-05-2390%
urlhxxp://b[.]9-9-8.com/brysj/cronb.shpayload_delivery2026-05-2385%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - RedTail
let malicious_ips = dynamic(["107.189.3.150", "140.99.32.48"]);
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(["107.189.3.150", "140.99.32.48"]);
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(["http://107.189.3.150/b2f628/cronb.sh", "http://209.141.58.166/b2f628/cronb.sh", "http://140.99.32.48/b2f628/cronb.sh", "http://205.185.118.246/b2f628/cronb.sh", "http://b.9-9-8.com/brysj/cronb.sh"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure 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/