← Back to SOC feed Coverage →

Paradox

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 anomalous binary behaviors matching the “Paradox” signature, which may indicate early-stage reconnaissance or the deployment of a novel, unsigned tool by an adversary within the environment. Proactively hunting for this pattern in Azure Sentinel is critical to validate false positives and uncover stealthy lateral movement tactics before they escalate into high-severity incidents.

YARA Rule

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

	strings:
		$a = "ParadoxRAT"
		$b = "Form1"
		$c = "StartRMCam"
		$d = "Flooders"
		$e = "SlowLaris"
		$f = "SHITEMID"
		$g = "set_Remote_Chat"

	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 7 string patterns in its detection logic.

False Positive Guidance

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

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