Skip to content

Commit

Permalink
rule: Ryuk rule fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo23x0 committed Oct 29, 2020
1 parent 69d88f6 commit 7dcb9ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yara/ryuk-commandlines.yar
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ rule Ryuk_CmdLines {
/* FireEye report https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html */
$ba1 = "process call create"
$ba2 = "cmd.exe /c bitsadmin /transfer"
$ba3 = "%APPDATA%" nocase
$ba2 = "bitsadmin /transfer"
$ba3 = "AppData" nocase
$bx1 = "/transfer vVv"
$bx2 = "temp\\vVv.exe"
condition:
all of ($a*) and 1 of ($s*)
or all of ($b*)
or all of ($ba*)
or 1 of ($bx*)
}

0 comments on commit 7dcb9ff

Please sign in to comment.