SUSP_XORed_Mozilla_Oct19
Description
Detects suspicious single byte XORed keyword 'Mozilla/5.0' - it uses yara's XOR modifier and therefore cannot print the XOR key. You can use the CyberChef recipe linked in the reference field to brute force the used key.
Query · yara
strings:
$xo1 = "Mozilla/5.0" xor ascii wide
$xof1 = "Mozilla/5.0" ascii wide
$fpa1 = "Sentinel Labs" wide
$fpa2 = "<filter object at" ascii /* Norton Security */
$fpb1 = { 64 65 78 0a 30 33 35 } /* dex.035 */
condition:
$xo1
and not $xof1
and not 1 of ($fpa*)
and not $fpb1 at 0