Skip to content

Instantly share code, notes, and snippets.

@timb-machine
Created February 28, 2021 21:28
Show Gist options
  • Save timb-machine/9f03bd84b0b3615dae6abf5e2da974eb to your computer and use it in GitHub Desktop.
Save timb-machine/9f03bd84b0b3615dae6abf5e2da974eb to your computer and use it in GitHub Desktop.
ciscotools.yara
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