← Back to SOC feed Coverage →

Mimikatz Rule generated from a memory dump

yara CRITICAL Yara-Rules
backdoorcommunitycredential-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 executing Mimikatz to extract credentials and secrets directly from system memory, a technique frequently used during post-compromise lateral movement. SOC teams should proactively hunt for this activity in Azure Sentinel because memory dumping is often a precursor to credential theft that can lead to domain-wide compromise if not immediately contained.

YARA Rule

rule Mimikatz_Memory_Rule_2 : APT {
	meta:
		description = "Mimikatz Rule generated from a memory dump"
		author = "Florian Roth - Florian Roth"
		type = "memory"
		score = 80
	strings:
		$s0 = "sekurlsa::" ascii
		$x1 = "cryptprimitives.pdb" ascii
		$x2 = "Now is t1O" ascii fullword
		$x4 = "ALICE123" ascii
		$x5 = "BOBBY456" ascii
	condition:
		$s0 and 1 of ($x*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 5 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Mimikatz Rule generated from a memory dump, including targeted filters and exclusions:

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