Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions data/yara/CAPE/NetSupport.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import "pe"

rule NetSupport
{
meta:
author = "YungBinary"
description = "Detects NetSupport Manager RAT on disk or in memory"
cape_type = "NetSupport Payload"
strings:
$a1 = "NetSupport Manager" wide
$b1 = "NetSupport Remote Control" wide
$s1 = "Client Application" wide
$s2 = "NetSupport Ltd" wide
condition:
uint16(0) == 0x5a4d and ((pe.imports("PCICL32.dll", "_NSMClient32@8")) or (($a1 and $b1) or ($s1 and $s2)))
}