← Back to SOC feed Coverage →

LSASS minidump file for mimikatz

yara LOW 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-31T11:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies adversaries leveraging Mimikatz to create LSASS memory dumps, a technique used to extract credentials and facilitate lateral movement within the environment. Proactive hunting is essential in Azure Sentinel because these minidump operations often occur with low severity but can serve as a critical precursor to more severe credential theft incidents that may otherwise go unnoticed until after compromise.

YARA Rule

rule mimikatz_lsass_mdmp
{
	meta:
		description		= "LSASS minidump file for mimikatz"
		author			= "Benjamin DELPY (gentilkiwi)"

	strings:
		$lsass			= "System32\\lsass.exe"	wide nocase

	condition:
		(uint32(0) == 0x504d444d) and $lsass
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

Here are 3-5 specific false positive scenarios for the LSASS minidump file for mimikatz detection rule, including suggested filters and exclusions:

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