mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-07 02:25:19 +00:00
rule: xor hunting Mozilla
This commit is contained in:
parent
e5dfec4e2f
commit
284229b854
14
yara/gen_xor_hunting.yar
Normal file
14
yara/gen_xor_hunting.yar
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
rule SUSP_XORed_Mozilla {
|
||||
meta:
|
||||
description = "Detects suspicious XORed keyword - Mozilla/5.0"
|
||||
author = "Florian Roth"
|
||||
reference = "Internal Research"
|
||||
date = "2019-10-28"
|
||||
score = 65
|
||||
strings:
|
||||
$xo1 = "Mozilla/5.0" xor ascii wide
|
||||
$xof1 = "Mozilla/5.0" ascii wide
|
||||
condition:
|
||||
$xo1 and not $xof1
|
||||
}
|
Loading…
Reference in New Issue
Block a user