Skip to content

Instantly share code, notes, and snippets.

@ecapuano
Last active October 30, 2023 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecapuano/f40d5a99d19500538984bd88996cfe68 to your computer and use it in GitHub Desktop.
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
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