Skip to content

Commit

Permalink
fix: FP found in testing env
Browse files Browse the repository at this point in the history
  • Loading branch information
phantinuss committed Oct 11, 2023
1 parent ea5b283 commit 5f93bc3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion yara/gen_xor_hunting.yar
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rule SUSP_XORed_MSDOS_Stub_Message {
author = "Florian Roth"
reference = "https://yara.readthedocs.io/en/latest/writingrules.html#xor-strings"
date = "2019-10-28"
modified = "2023-09-04"
modified = "2023-10-11"
score = 55
strings:
$xo1 = "This program cannot be run in DOS mode" xor(0x01-0xff) ascii wide
Expand All @@ -36,6 +36,10 @@ rule SUSP_XORed_MSDOS_Stub_Message {
$fp5 = "McAfee Labs" fullword ascii wide
$fp6 = "Kaspersky Lab" fullword ascii wide
$fp7 = "<propertiesmap>" ascii wide /* KasperSky Lab XML profiles */
$fp10 = "Avira Engine Module" wide /* Program Files (x86)/Avira/Antivirus/aeheur.dll */
$fp11 = "syntevo GmbH" wide fullword /* Program Files (x86)/DeepGit/bin/deepgit64.exe */
$fp13 = "SophosClean" ascii /* ProgramData/Sophos/Update Manager/Update Manager/Warehouse/4d7da8cfbfbb16664dac79e78273a1e8x000.dat */
$fp14 = "SophosHomeClean" wide
condition:
1 of ($x*)
and not 1 of ($fp*)
Expand Down

0 comments on commit 5f93bc3

Please sign in to comment.