minor edit to the main file

This commit is contained in:
ekultek 2017-09-07 15:04:22 -05:00
parent 93364c3669
commit 8966a9a0c2
3 changed files with 4 additions and 4 deletions

3
.gitignore vendored
View file

@ -1,4 +1,5 @@
log/*
geckodriver.log
*.pyc
.idea/*
.idea/*
bin/*

View file

@ -3,4 +3,3 @@ requests==2.12.2
python-nmap==0.6.1
whichcraft==0.4.1
pyvirtualdisplay==0.2.1

View file

@ -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)