forked from Yara-Rules/rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Yara-Rules#299 from mikesxrs/patch-11
Create MALW_Monero_Miner_installer.yar
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
rule nkminer_monero { | ||
|
||
meta: | ||
|
||
description = "Detects installer of Monero miner that points to a NK domain" | ||
|
||
author = "[email protected]" | ||
|
||
reference = "https://www.alienvault.com/blogs/labs-research/a-north-korean-monero-cryptocurrency-miner" | ||
|
||
tlp = "white" | ||
|
||
license = "MIT License" | ||
|
||
strings: | ||
$a = "82e999fb-a6e0-4094-aa1f-1a306069d1a5" nocase wide ascii | ||
$b = "4JUdGzvrMFDWrUUwY3toJATSeNwjn54LkCnKBPRzDuhzi5vSepHfUckJNxRL2gjkNrSqtCoRUrEDAgRwsQvVCjZbRy5YeFCqgoUMnzumvS" nocase wide ascii | ||
$c = "barjuok.ryongnamsan.edu.kp" nocase wide ascii | ||
$d = "C:\\SoftwaresInstall\\soft" nocase wide ascii | ||
$e = "C:\\Windows\\Sys64\\intelservice.exe" nocase wide ascii | ||
$f = "C:\\Windows\\Sys64\\updater.exe" nocase wide ascii | ||
$g = "C:\\Users\\Jawhar\\documents\\" nocase wide ascii | ||
condition: | ||
any of them | ||
} |