This detection identifies potential file-based threats or specific malware signatures identified by the tElockv070 YARA rule within the Azure Sentinel environment. Proactively hunting for these indicators allows the SOC team to uncover latent infections that may not trigger high-severity alerts, ensuring early identification of low-fidelity threats before they escalate into broader incidents.
rule tElockv070
{
meta:
author="malware-lu"
strings:
$a0 = { 60 E8 BD 10 00 00 C3 83 E2 00 F9 75 FA 70 }
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 4 specific false positive scenarios for the tElockv070 detection rule in an enterprise environment, including suggested filters and exclusions:
Scenario: Enterprise Antivirus Engine Scanning
C:\Program Files directory while performing real-time scanning, triggering the rule.ImageName contains falcon.sys, MsMpEng.exe, or Symantec.IF Process.ImageName IN ['C:\Program Files\CrowdStrike\...\FalconService.exe', 'C:\ProgramData\Microsoft\Microsoft Defender Antivirus\bin\MsMpEng.exe'] THEN ExcludeScenario: Scheduled System Backup Jobs
.vmdk, .bak) during the backup window. If these jobs run on standard business hours, they mimic the file locking behavior detected by tElockv070.AccountName is SYSTEM, BackupService, or specific backup account names (e.g., svc-veeam) occurring between 02:00 and 06:00 UTC.