signature-base/yara/gen_invoke_mimikatz.yar
Florian Roth 754d19604d Invoke-Mimikatz Rule
- useful to impress PowerShell hipsters
2016-08-10 09:35:08 +02:00

21 lines
462 B
Plaintext

/*
Yara Rule Set
Author: Florian Roth
Date: 2016-07-19
Identifier: Invoke-Mimikatz
*/
/* Rule Set ----------------------------------------------------------------- */
rule Invoke_Mimikatz {
meta:
description = "Detects Invoke-Mimikatz String"
author = "Florian Roth"
reference = "https://github.com/clymb3r/PowerShell/tree/master/Invoke-Mimikatz"
date = "2016-08-03"
strings:
$x1 = "Invoke-Mimikatz" wide fullword
condition:
1 of them
}