← Back to SOC feed Coverage →

Modified (packed) version of Windows Credential Editor

yara HIGH Yara-Rules
communitycredential-theft
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-07-28T11:00:01Z · Confidence: medium

Hunt Hypothesis

This detection targets adversaries who modify or pack the legitimate Windows Credential Editor to obscure malicious activities and evade signature-based defenses by altering its binary structure. Proactively hunting for this behavior in Azure Sentinel is critical because attackers often leverage trusted system utilities like CredEdit.exe to execute credential theft or lateral movement while blending into normal administrative traffic.

YARA Rule

rule WCE_Modified_1_1014 {
	meta:
		description = "Modified (packed) version of Windows Credential Editor"
		author = "Florian Roth"
		hash = "09a412ac3c85cedce2642a19e99d8f903a2e0354"
		score = 70
	strings:
		$s0 = "LSASS.EXE" fullword ascii
		$s1 = "_CREDS" ascii
		$s9 = "Using WCE " ascii
	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Modified (Packed) Version of Windows Credential Editor detection rule, including suggested filters and exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/TOOLKIT_THOR_HackTools.yar