Skip to content

Commit

Permalink
Fixing a typo in the latest Yara rule.
Browse files Browse the repository at this point in the history
Also updating Yara to 3.5.0 in the whole project.
  • Loading branch information
JusticeRage committed Apr 18, 2017
1 parent 17a3532 commit daebe4c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions bin/yara_rules/suspicious_strings.yara
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,14 @@ rule System_Tools
$a9 = "regmon.exe" nocase wide ascii
$a10 = "filemon.exe" nocase wide ascii
$a11 = "msconfig.exe" nocase wide ascii
<<<<<<< HEAD
$a12 = "vssadmin.exe" nocase wide ascii
$a13 = "bcdedit.exe" nocase wide ascii
$a14 = "dumpcap.exe" nocase wide ascii
$a15 = "tcpdump.exe" nocase wide ascii
$a16 = "mshta.exe" nocase wide ascii // Used by DUBNIUM to download files
$a16 = "control.exe" nocase wide ascii // Used by EquationGroup to launch DLLs
$a17 = "regsvr32.exe" nocase wide ascii
$a18 = "rundll32.exe" nocase wide ascii
$a17 = "control.exe" nocase wide ascii // Used by EquationGroup to launch DLLs
$a18 = "regsvr32.exe" nocase wide ascii
$a19 = "rundll32.exe" nocase wide ascii
condition:
any of them
Expand Down

0 comments on commit daebe4c

Please sign in to comment.