← Back to SOC feed Coverage →

unrecom

yara LOW Yara-Rules
community
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-14T11:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies the execution of unregistered or unrecognized commands that deviate from standard baseline activity, potentially signaling early-stage reconnaissance or lateral movement by an adversary. Proactively hunting for these anomalies in Azure Sentinel is critical to uncover stealthy threats that bypass traditional signature-based defenses before they escalate into significant incidents.

YARA Rule

rule unrecom : RAT
{
	meta:
		author = " Kevin Breen <[email protected]>"
		date = "2014/04"
		ref = "http://malwareconfig.com/stats/AAR"
		maltype = "Remote Access Trojan"
		filetype = "exe"

	strings:
		$meta = "META-INF"
		$conf = "load/ID"
		$a = "load/JarMain.class"
		$b = "load/MANIFEST.MF"
        $c = "plugins/UnrecomServer.class"

	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the unrecom detection rule in an enterprise environment, along with suggested filters or exclusions:

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