This hypothesis targets the presence of the tElock v098 tE YARA signature, which indicates the execution or persistence of a specific low-severity threat actor or tooling variant within the environment. Proactively hunting for this signature in Azure Sentinel allows the SOC team to identify early-stage footholds or dormant payloads that may have evaded standard behavioral detections, ensuring timely remediation before the adversary escalates privileges or exfiltrates data.
rule tElock_v098_tE: PEiD
{
strings:
$a = { E9 25 E4 FF FF 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 }
condition:
$a at pe.entry_point
}
This YARA rule can be deployed in the following contexts:
This rule contains 1 string patterns in its detection logic.
Legacy Application Deployment via Group Policy
tElock protection wrapper. The binary is pushed to endpoints via Group Policy Software Installation or SCCM, triggering the YARA rule on the file system.C:\Program Files\LegacyApp\) or specific known-good hashes associated with the deployed legacy application version.Scheduled Backup or Archiving Job
BackupAgent.exe or a custom PowerShell script) processes and moves log files or database dumps that were previously compressed or protected using tElock utilities. The rule triggers when the agent reads or writes these protected files during the backup window.C:\Program Files\BackupService\) or exclude file paths matching the backup repository location (e.g., \\fileserver\backups\) during the defined backup time window.Developer Testing in Isolated Environments
tElock to protect test binaries or configuration files in a dedicated development VM or container. The YARA rule scans these test artifacts during a routine integrity check or CI/CD pipeline validation step, causing a false positive.C:\Dev\Projects\) or exclude the specific user account associated with the development team (e.g., DOMAIN\dev-team) when the file path matches the test environment structure.