mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
Low scoring rule: Anomaly - Linux UPX compressed binaries
This commit is contained in:
parent
ab5ac55a1b
commit
826446a785
15
yara/gen_elf_file_anomalies.yar
Normal file
15
yara/gen_elf_file_anomalies.yar
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
rule SUSP_ELF_LNX_UPX_Compressed_File {
|
||||
meta:
|
||||
description = "Detects a suspicious ELF binary with UPX compression"
|
||||
author = "Florian Roth"
|
||||
reference = "Internal Research"
|
||||
date = "2018-12-12"
|
||||
score = 40
|
||||
hash1 = "038ff8b2fef16f8ee9d70e6c219c5f380afe1a21761791e8cbda21fa4d09fdb4"
|
||||
strings:
|
||||
$s1 = "PROT_EXEC|PROT_WRITE failed." fullword ascii
|
||||
$s3 = "$Id: UPX" fullword ascii
|
||||
condition:
|
||||
uint16(0) == 0x457f and filesize < 2000KB and all of them
|
||||
}
|
Loading…
Reference in New Issue
Block a user