mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
minor edit to the main file
This commit is contained in:
parent
93364c3669
commit
8966a9a0c2
3 changed files with 4 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,4 +1,5 @@
|
|||
log/*
|
||||
geckodriver.log
|
||||
*.pyc
|
||||
.idea/*
|
||||
.idea/*
|
||||
bin/*
|
||||
|
|
@ -3,4 +3,3 @@ requests==2.12.2
|
|||
python-nmap==0.6.1
|
||||
whichcraft==0.4.1
|
||||
pyvirtualdisplay==0.2.1
|
||||
|
||||
|
|
|
|||
4
zeus.py
4
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue