Unverified Commit 28d7327f by mmorenog Committed by GitHub

Merge pull request #297 from simonsigre/patch-2

Create RAT_CrossRAT.yar
parents 3b5a6627 52e256a4
import "hash"
global private rule javaarchive
{
strings:
$magic = { 50 4b 03 04 ( 14 | 0a ) 00 }
$string_1 = "META-INF/"
$string_2 = ".class" nocase
condition:
filesize < 400KB and
$magic at 0 and 1 of ($string_*)
}
rule CrossRAT: RAT
{
meta:
description = "Detects CrossRAT known hash"
author = "Simon Sigre (simon.sigre@gmail.com)"
date = "26/01/2018"
ref = "https://simonsigre.com"
ref= "https://objective-see.com/blog/blog_0x28.html"
condition:
filesize < 400KB and
hash.md5(0, filesize) == "85b794e080d83a91e904b97769e1e770"
}
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