Created
October 20, 2021 06:34
-
-
Save timb-machine/222830801605b1aa85a91c4205469dda to your computer and use it in GitHub Desktop.
pscan_or_luckscan.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 pscan_or_luckscan { | |
meta: | |
author = "Tim Brown @timb_machine" | |
description = "Hunts for references to pscan_or_luckscan" | |
strings: | |
$getopt = "%s <a-block> <port> [b-block] [c-block]" | |
$vulnerable = "Lets try to root the %s" | |
condition: | |
$getopt or $vulnerable | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment