← Back to SOC feed Coverage →

ThreatFox: RatonRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
backdooriocthreatfoxwin-raton_rat
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-30T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies adversary activity involving the five specific indicators of compromise linked to the RatonRAT remote access trojan within Azure Sentinel logs. Proactively hunting for these signatures is critical because early detection of this RAT enables the SOC team to isolate compromised endpoints before attackers can establish persistent command-and-control channels or exfiltrate sensitive data.

IOC Summary

Malware Family: RatonRAT Total IOCs: 5 IOC Types: sha256_hash, md5_hash, ip:port, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port158[.]160[.]75[.]185:40644botnet_cc2026-06-29100%
md5_hash4db7b73a3650b98b99aa282bf1e16cc1payload2026-06-2995%
sha256_hash16aa5e9cd33302fb4bba5f5fe61b9dcef4e6e1a777098985eca17e5a6f075234payload2026-06-2995%
sha1_hash3f762a0e0d991b182032fcf13cb94c75a61fe47bpayload2026-06-2995%
ip:port81[.]177[.]49[.]127:24378botnet_cc2026-06-29100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - RatonRAT
let malicious_ips = dynamic(["81.177.49.127", "158.160.75.185"]);
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(["81.177.49.127", "158.160.75.185"]);
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 - RatonRAT
let malicious_hashes = dynamic(["4db7b73a3650b98b99aa282bf1e16cc1", "16aa5e9cd33302fb4bba5f5fe61b9dcef4e6e1a777098985eca17e5a6f075234", "3f762a0e0d991b182032fcf13cb94c75a61fe47b"]);
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 specific false positive scenarios for the ThreatFox: RatonRAT IOCs detection rule, tailored for an enterprise environment:

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