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.
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
}
This YARA rule can be deployed in the following contexts:
This rule contains 7 string patterns in its detection logic.
Here are 4 specific false positive scenarios for the Paradox detection rule in an enterprise environment, including suggested filters and exclusions:
Endpoint Protection Policy Updates via Microsoft Defender for Endpoint
MsMpEng.exe service outside of standard business hours.MsMpEng.exe) combined with a specific File Path pattern (e.g., C:\ProgramData\Microsoft\Windows Defender\*). Additionally, whitelist the specific SHA-256 hashes of known update installers published by Microsoft.Automated Patch Deployment via SCCM/MECM Scheduled Tasks
SYSTEM account executes a PowerShell script to deploy critical security patches using System Center Configuration Manager (SCCM). The “Paradox” rule might detect this as an anomaly if it looks for scripts executing from temporary directories (C:\Windows\CCMCache) or if the script performs network connections that mimic lateral movement behavior.NT AUTHORITY\SYSTEM and the Command Line contains specific SCCM identifiers (e.g., ccmsetup.exe, wsmprovhost.exe). You can also filter by the Scheduled Task Name, excluding tasks containing keywords like “SoftwareUpdate” or “PatchDeployment”.Log Aggregation and SIEM Forwarding via Splunk Universal Forwarder