From 8966a9a0c2c7d17457a6b6625ee6d4f28fbb726d Mon Sep 17 00:00:00 2001 From: ekultek Date: Thu, 7 Sep 2017 15:04:22 -0500 Subject: [PATCH] minor edit to the main file --- .gitignore | 3 ++- requirements.txt | 1 - zeus.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3ce306f..678c350 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ log/* geckodriver.log *.pyc -.idea/* \ No newline at end of file +.idea/* +bin/* \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index d56bea2..21ae74a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,3 @@ requests==2.12.2 python-nmap==0.6.1 whichcraft==0.4.1 pyvirtualdisplay==0.2.1 - diff --git a/zeus.py b/zeus.py index f1ccc30..0612653 100644 --- a/zeus.py +++ b/zeus.py @@ -37,8 +37,6 @@ if __name__ == "__main__": help="Specify a singular Google dork to use for queries") mandatory.add_option("-l", "--dork-list", dest="dorkFileToUse", metavar="FILE-PATH", help="Specify a file full of dorks to run through"), - mandatory.add_option("--show", dest="showSqlmapArguments", action="store_true", - help="Show the arguments that the sqlmap API understands") # attack options attacks = optparse.OptionGroup(parser, "Attack arguments", @@ -80,6 +78,8 @@ if __name__ == "__main__": help="Attempt to automatically find sqlmap on your system") misc.add_option("--search-here", dest="givenSearchPath", metavar="PATH-TO-START", help="Start searching for sqlmap in this given path") + misc.add_option("--show", dest="showSqlmapArguments", action="store_true", + help="Show the arguments that the sqlmap API understands") parser.add_option_group(mandatory) parser.add_option_group(attacks)