Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rules
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
rules
Commits
fa6941b0
Commit
fa6941b0
authored
5 years ago
by
Johannes Bader
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new yara rule for AsyncRAT
parent
a1005b74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
RAT_Asyncrat.yar
malware/RAT_Asyncrat.yar
+45
-0
No files found.
malware/RAT_Asyncrat.yar
0 → 100644
View file @
fa6941b0
/*
This Yara ruleset is under the GNU-GPLv2 license
(http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or
organization, as long as you use it under this license.
*/
rule win_asyncrat_j1 {
meta:
author = "Johannes Bader @viql"
date = "2020-04-26"
description = "detects AsyncRAT"
references = "https://github.com/NYAN-x-CAT/AsyncRAT-C-Sharp"
tlp = "white"
strings:
$str_anti_1 = "VIRTUAL" wide
$str_anti_2 = "vmware" wide
$str_anti_3 = "VirtualBox" wide
$str_anti_4 = "SbieDll.dll" wide
$str_miner_1 = "--donate-level=" wide
$str_b_rev_run = "\\nuR\\noisreVtnerruC\\swodniW\\tfosorciM\\erawtfoS" wide
$str_b_msg_pack_1 = "(ext8,ext16,ex32) type $c7,$c8,$c9" wide
$str_b_msg_pack_2 = "(never used) type $c1" wide
$str_b_schtask_1 = "/create /f /sc ONLOGON /RL HIGHEST /tn \"'" wide
$str_b_schtask_2 = "\"' /tr \"'" wide
$str_config_1 = "Antivirus" wide
$str_config_2 = "Pastebin" wide
$str_config_3 = "HWID" wide
$str_config_4 = "Installed" wide
$str_config_5 = "Pong" wide
$str_config_6 = "Performance" wide
condition:
all of ($str_anti_*) and
4 of ($str_config_*) and (
all of ($str_miner_*) or
3 of ($str_b_*)
)
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment