mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-07 02:25:19 +00:00
754d19604d
- useful to impress PowerShell hipsters
21 lines
462 B
Plaintext
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
|
|
}
|