mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
17 lines
554 B
Plaintext
17 lines
554 B
Plaintext
|
|
rule SUSP_RAR_Exfil_Ntds_SAM {
|
|
meta:
|
|
description = "Detects suspicious RAR file that contains ntds.dit or SAM export"
|
|
author = "Florian Roth"
|
|
reference = "https://www.cybereason.com/blog/operation-soft-cell-a-worldwide-campaign-against-telecommunications-providers"
|
|
date = "2019-12-16"
|
|
score = 70
|
|
strings:
|
|
$x1 = "ntds.dit0" ascii fullword
|
|
$x2 = { 0? 53 41 4D 30 01 00 03 } // SAM0
|
|
$x3 = { 0? 73 61 6D 30 01 00 03 } // sam0
|
|
condition:
|
|
uint32(0) == 0x21726152 // Rar!
|
|
and 1 of them
|
|
}
|