Created
February 28, 2021 21:28
-
-
Save timb-machine/9f03bd84b0b3615dae6abf5e2da974eb to your computer and use it in GitHub Desktop.
ciscotools.yara
This file contains hidden or 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 ciscotools { | |
meta: | |
author = "Tim Brown @timb_machine" | |
description = "Cisco tools" | |
strings: | |
$labs = "labs.portcullis.co.uk" | |
$portcullislabs = "portcullislabs" | |
$CiscoCXSecurity = "CiscoCXSecurity" | |
$timb_machine = "timb_machine" | |
$pentestmonkey = "pentestmonkey" | |
$enum4linux = "enum4linux" | |
$linikatz = "linikatz" | |
$unixprivesccheck = "unix-privesc-check" | |
condition: | |
$labs or $portcullislabs or $CiscoCXSecurity or $timb_machine or $pentestmonkey or $enum4linux or $linikatz or $unixprivesccheck | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment