← 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-29T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary activity involving five specific indicators of compromise linked to the RatonRAT remote access trojan, which is known for credential theft and lateral movement within compromised networks. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection allows the SOC team to isolate infected endpoints before the malware establishes persistence or exfiltrates sensitive data.

IOC Summary

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

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(["158.160.75.185", "81.177.49.127"]);
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(["158.160.75.185", "81.177.49.127"]);
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 in an enterprise environment, including suggested filters and exclusions:

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