← Back to SOC feed Coverage →

Xtreme RAT

yara LOW Yara-Rules
backdoorcommunity
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 Yara-Rules →
Retrieved: 2026-07-14T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection rule identifies the execution of Xtreme Remote Administration Tool (RAT), a remote access utility frequently repurposed by adversaries to establish persistent command-and-control channels and exfiltrate sensitive data. Proactively hunting for this behavior in Azure Sentinel is critical because, despite its low severity classification, legitimate RAT usage often masks malicious activity that requires manual validation to distinguish between authorized administration and unauthorized adversary presence.

YARA Rule

rule xtreme_rat : Trojan
{
	meta:
		author="Kevin Falcoz"
		date="23/02/2013"
		description="Xtreme RAT"
	
	strings:
		$signature1={58 00 54 00 52 00 45 00 4D 00 45} /*X.T.R.E.M.E*/
		
	condition:
		$signature1
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Xtreme RAT detection rule in an enterprise environment, including suggested filters and exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/RAT_Xtreme.yar