Last active
October 30, 2023 04:51
-
-
Save ecapuano/f40d5a99d19500538984bd88996cfe68 to your computer and use it in GitHub Desktop.
Inspired by NCSC UK, but modified to be much less specific. Ref: https://www.ncsc.gov.uk/files/Advisory-further-TTPs-associated-with-SVR-cyber-actors.pdf
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
rule sliver_strings { | |
meta: | |
author = "Eric Capuano, inspired by NCSC UK" | |
description = "Detects Sliver Windows and Linux implants based on obvious strings within - not tested at scale, but it's probably good :)" | |
strings: | |
$p1 = "/sliver/" | |
$p2 = "sliverpb" | |
condition: | |
all of ($p*) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment