Unverified Commit 10baa7ef by Jaume Martin Committed by GitHub

Merge pull request #371 from utkonos/patch-1

Add detection for hex encoded text PEs
parents 00994cbf 6d3fa171
......@@ -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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment