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
10baa7ef
Unverified
Commit
10baa7ef
authored
Feb 24, 2020
by
Jaume Martin
Committed by
GitHub
Feb 24, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #371 from utkonos/patch-1
Add detection for hex encoded text PEs
parents
00994cbf
6d3fa171
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
suspicious_strings.yar
utils/suspicious_strings.yar
+14
-0
No files found.
utils/suspicious_strings.yar
View file @
10baa7ef
...
...
@@ -1324,3 +1324,17 @@ rule BITS_CLSID
condition:
any of them
}
rule HexEncodedTextPE
{
meta:
author = "Malware Utkonos"
date = "2020-01-28"
reference = "https://blog.reversinglabs.com/blog/rats-in-the-library"
description = "Text string with hexadecimal encoded MZ/PE and comma+ separation"
strings:
$mz = /4D,.{0,6}5A/ nocase
$pe = /50,.{0,6}45/
condition:
all of them
}
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