← Back to SOC feed Coverage →

WastedLocker Downloader

kql MEDIUM Azure-Sentinel
DeviceProcessEvents
huntingmicrosoftofficialransomware
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 Azure-Sentinel →
Retrieved: 2026-05-06T11:00:00Z · Confidence: medium

Hunt Hypothesis

The WastedLocker Downloader detection identifies adversaries using a custom downloader to initiate ransomware execution, leveraging unusual process injection techniques to evade standard defenses. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate early-stage ransomware attacks before encryption impacts critical assets.

KQL Query

DeviceProcessEvents
| where InitiatingProcessFileName =~ 'wscript.exe' and FileName =~ 'powershell.exe' and InitiatingProcessCommandLine matches regex @"(?i)\\chrome\.update\..+?\.js"

Analytic Rule Definition

id: 4a8dec0a-2cfc-40a6-af59-e6657c26d0c1
name: WastedLocker Downloader
description: |
  This query identifies the launch pattern associated with wastedlocker ransomware.
  Reference writeup: https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/wastedlocker-ransomware-us
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - DeviceProcessEvents
tactics:
- Execution
query: |
  DeviceProcessEvents
  | where InitiatingProcessFileName =~ 'wscript.exe' and FileName =~ 'powershell.exe' and InitiatingProcessCommandLine matches regex @"(?i)\\chrome\.update\..+?\.js"

Required Data Sources

Sentinel TableNotes
DeviceProcessEventsEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/WastedLocker Downloader.yaml