← Back to SOC feed Coverage →

ThreatFox: CraxsRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
apk-craxs_ratbackdooriocthreatfox
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-04T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving CraxsRAT remote access trojans by actively searching for specific indicators of compromise (IOCs) known to facilitate command-and-control communications and lateral movement. Proactively hunting for these signatures in Azure Sentinel is critical because early detection of this RAT prevents attackers from establishing persistent footholds that could lead to sensitive data exfiltration before traditional alerting triggers.

IOC Summary

Malware Family: CraxsRAT Total IOCs: 3 IOC Types: ip:port, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]33[.]183:9999botnet_cc2026-07-04100%
sha256_hash5f94e59c132a7ed0e35b60146d973a728ab9f390c8291f9547cee26c56427738payload2026-07-04100%
sha256_hashfc99609172910a8fad9522b374f8bae21e5805abdf052a49029edb53620a8e8cpayload2026-07-04100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - CraxsRAT
let malicious_ips = dynamic(["91.92.33.183"]);
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(["91.92.33.183"]);
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 - CraxsRAT
let malicious_hashes = dynamic(["5f94e59c132a7ed0e35b60146d973a728ab9f390c8291f9547cee26c56427738", "fc99609172910a8fad9522b374f8bae21e5805abdf052a49029edb53620a8e8c"]);
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: CraxsRAT IOCs detection rule, tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/apk.craxs_rat/