← Back to SOC feed Coverage →

Xtrem RAT v3.5

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 the Xtrem Remote Access Trojan (RAT) version 3.5, which adversaries deploy to establish persistent command-and-control channels and exfiltrate sensitive data from endpoints. Proactively hunting for this specific malware variant in Azure Sentinel is critical because its low severity classification may cause it to be overlooked by standard alerting thresholds, allowing stealthy lateral movement to go undetected until significant compromise occurs.

YARA Rule

rule xtremrat : rat
{
	meta:
		author = "Jean-Philippe Teissier / @Jipe_"
		description = "Xtrem RAT v3.5"
		date = "2012-07-12" 
		version = "1.0" 
		filetype = "memory"

	strings:
		$a = "XTREME" wide
		$b = "XTREMEBINDER" wide
		$c = "STARTSERVERBUFFER" wide
		$d = "SOFTWARE\\XtremeRAT" wide
		$e = "XTREMEUPDATE" wide
		$f = "XtremeKeylogger" wide
		$g = "myversion|3.5" wide
		$h = "xtreme rat" wide nocase
	condition:
		2 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 8 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the Xtrem RAT v3.5 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