From 362753d57cdd5da2182b4c3aea3764aa69fb90c2 Mon Sep 17 00:00:00 2001 From: ekultek Date: Thu, 7 Dec 2017 16:28:12 -0600 Subject: [PATCH] minor update for a new feature that will be implemented soon (preparing for it) --- lib/core/parse.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/core/parse.py b/lib/core/parse.py index eb32f51..dee11f0 100644 --- a/lib/core/parse.py +++ b/lib/core/parse.py @@ -45,6 +45,9 @@ class ZeusParser(OptionParser): mandatory.add_option("-f", "--url-file", dest="fileToEnumerate", metavar="FILE-PATH", help="Run an attack on URL's in a given file") + mandatory.add_option("-u", "--url", dest="singleTargetRecon", metavar="URL", + help=SUPPRESS_HELP) + # attack options attacks = OptionGroup(parser, "Attack arguments", "These arguments will give you the choice on how you want to check the websites")