This detection identifies potential malicious activity through a specific YARA signature (tElockv042) that targets known file patterns or behavioral indicators within the environment. Proactively hunting for this signal in Azure Sentinel allows the SOC team to uncover low-severity threats that may serve as early indicators of broader compromise, ensuring timely investigation before adversaries escalate their operations.
rule tElockv042
{
meta:
author="malware-lu"
strings:
$a0 = { C1 EE 00 66 8B C9 EB 01 EB 60 EB 01 EB 9C E8 00 00 00 00 5E 83 C6 52 8B FE 68 79 01 59 EB 01 EB AC 54 E8 03 5C EB 08 }
condition:
$a0 at pe.entry_point
}
This YARA rule can be deployed in the following contexts:
This rule contains 1 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the tElockv042 detection rule in an enterprise environment, including suggested filters and exclusions:
Scenario: Microsoft Defender Antivirus Real-Time Scanning
MsMpEng.exe (Microsoft Defender) when it scans a large batch of user documents in the C:\Users\Public\Documents directory. This often triggers during peak business hours, mimicking malicious file enumeration.C:\Program Files\Windows Defender\MsMpEng.exe from the detection logic when the accessed file extension matches common document types (.docx, .xlsx, .pdf) within user profile directories.Scenario: Scheduled System Backup via Veeam Agent
VeeamAgent.exe performs a full image capture of the system drive. The rule interprets the high volume of file handles and locking mechanisms during the snapshot creation as suspicious activity, particularly when the agent accesses the System Volume Information folder.VeeamAgent.exe (and its child processes) specifically when running under the “SYSTEM” account context between 01:00 and 05:00 local time, or exclude paths containing \System Volume Information\.Scenario: Office 365 Click-to-Run Update Service
OfficeClickToRun.exe service initiates a background update for the Microsoft 365 suite. This process frequently locks configuration files in %ProgramFiles%\Microsoft Office\root\Office16, triggering the rule’s logic regarding unexpected file modification and locking patterns.