mirror of
https://github.com/roadwy/DefenderYara
synced 2026-06-21 14:08:27 +00:00
12 lines
365 B
Plaintext
12 lines
365 B
Plaintext
|
|
rule Backdoor_Linux_GetShell_A{
|
|
meta:
|
|
description = "Backdoor:Linux/GetShell.A,SIGNATURE_TYPE_ELFHSTR_EXT,02 00 02 00 02 00 00 "
|
|
|
|
strings :
|
|
$a_03_0 = {6a 02 6a 66 58 89 e1 cd 80 97 5b 68 [0-08] 66 68 1f 91 66 53 89 e1 6a 66 } //1
|
|
$a_01_1 = {89 e1 43 cd 80 5b 99 b6 0c b0 03 cd 80 } //1
|
|
condition:
|
|
((#a_03_0 & 1)*1+(#a_01_1 & 1)*1) >=2
|
|
|
|
} |