Mimikatz_Memory_Rule_1
Description
Detects password dumper mimikatz in memory (False Positives: an service that could have copied a Mimikatz executable, AV signatures)
Query · yara
strings:
$s1 = "sekurlsa::wdigest" fullword ascii
$s2 = "sekurlsa::logonPasswords" fullword ascii
$s3 = "sekurlsa::minidump" fullword ascii
$s4 = "sekurlsa::credman" fullword ascii
$fp1 = "\"x_mitre_version\": " ascii
$fp2 = "{\"type\":\"bundle\","
$fp3 = "use strict" ascii fullword
$fp4 = "\"url\":\"https://attack.mitre.org/" ascii
condition:
1 of ($s*) and not 1 of ($fp*)