← Back to SOC feed Coverage →

MEW 11

yara LOW Yara-Rules
community
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 Yara-Rules →
Retrieved: 2026-09-22T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects the execution of the Microsoft Edge WebView2 (MEW) process, which adversaries frequently leverage to run malicious payloads or perform web-based attacks within trusted application contexts. Proactively hunting for this activity allows the SOC team to identify potential initial access or lateral movement attempts that exploit the ubiquity of the Edge runtime in Azure Sentinel environments.

YARA Rule

rule mew_11_xx : Packer
{
	meta:
		author="Kevin Falcoz"
		date_create="25/03/2013"
		description="MEW 11"

	strings:
		$signature1={50 72 6F 63 41 64 64 72 65 73 73 00 E9 [6-7] 00 00 00 00 00 00 00 00 00 [7] 00}
		$signature2="MEW"

	condition:
		$signature1 and $signature2
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar