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
d72154be
Unverified
Commit
d72154be
authored
5 years ago
by
Jaume Martin
Committed by
GitHub
5 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #373 from Nishan8583/master
Poet Rat Rules
parents
b219ed24
35db229a
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
RAT_PoetRATDoc.yar
malware/RAT_PoetRATDoc.yar
+26
-0
RAT_PoetRATPython.yar
malware/RAT_PoetRATPython.yar
+20
-0
No files found.
malware/RAT_PoetRATDoc.yar
0 → 100644
View file @
d72154be
rule PoetRat
{
meta:
Author = "Nishan Maharjan"
Description = "A yara rule to catch PoetRat Word Document"
Data = "6th May 2020"
strings:
$pythonRegEx = /(\.py$|\.pyc$|\.pyd$|Python)/ // checking for python strings
// Python file strings in the word documents
$pythonFile1 = "launcher.py"
$zipFile = "smile.zip"
$pythonFile2 = "smile_funs.py"
$pythonFile3 = "frown.py"
$pythonFile4 = "backer.py"
$pythonFile5 = "smile.py"
$pythonFile6 = "affine.py"
// dlls and cmd strings
$dlls = /\.dll/
$cmd = "cmd"
$exe = ".exe"
condition:
all of them
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
malware/RAT_PoetRATPython.yar
0 → 100644
View file @
d72154be
rule PoetRat
{
meta:
Author = "Nishan Maharjan"
Description = "A yara rule to catch PoetRat python scripts"
Data = "6th May 2020"
strings:
// Any of the strings that stand out in the files, these are for the multiple python files, not just for a single file
$encrptionFunction = "Affine"
$commands = /version|ls|cd|sysinfo|download|upload|shot|cp|mv|link|register|hid|compress|jobs|exit|tasklist|taskkill/
$domain = "dellgenius.hopto.org"
$grammer_massacre = /BADD|Bad Error Happened|/
$mayBePresent = /self\.DIE|THE_GUID_KEY/
$pipe_out = "Abibliophobia23"
$shot = "shot_{0}_{1}.png"
condition:
any of them
}
\ No newline at end of file
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