-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Promote Sliver detection to proper malware family classification
- Loading branch information
1 parent
43be5e3
commit 1136574
Showing
2 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
rule Sliver { | ||
meta: | ||
author = "ditekSHen" | ||
description = "Detects Sliver implant cross-platform adversary emulation/red team" | ||
cape_type = "Sliver Payload" | ||
strings: | ||
$x1 = "github.com/bishopfox/sliver/protobuf/sliverpbb." ascii | ||
$s1 = ".commonpb.ResponseR" ascii | ||
$s2 = ".PortfwdProtocol" ascii | ||
$s3 = ".WGTCPForwarder" ascii | ||
$s4 = ".WGSocksServerR" ascii | ||
$s5 = ".PivotEntryR" ascii | ||
$s6 = ".BackdoorReq" ascii | ||
$s7 = ".ProcessDumpReq" ascii | ||
$s8 = ".InvokeSpawnDllReq" ascii | ||
$s9 = ".SpawnDll" ascii | ||
$s10 = ".TCPPivotReq" ascii | ||
condition: | ||
(uint16(0) == 0x5a4d or uint16(0) == 0x457f or uint16(0) == 0xfacf) and (1 of ($x*) or 5 of ($s*)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters