Skip to content

Commit

Permalink
Update __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius authored Aug 3, 2022
1 parent 7e9a35a commit d90c852
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apachetomcatscanner/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def parseArgs():
parser.add_argument("-T", "--threads", default=8, type=int, help='Number of threads (default: 5)')
parser.add_argument("-s", "--servers_only", default=False, action="store_true", help='If querying ActiveDirectory, only get servers and not all computer objects. (default: False)')

parser.add_argument("--only-http", default=False, action="store_true", help='Scan only with HTTPs scheme. (default: False, scanning with both HTTP and HTTPs)')
parser.add_argument("--only-https", default=False, action="store_true", help='Scan only with HTTP scheme. (default: False, scanning with both HTTP and HTTPs)')
parser.add_argument("--only-http", default=False, action="store_true", help='Scan only with HTTP scheme. (default: False, scanning with both HTTP and HTTPs)')
parser.add_argument("--only-https", default=False, action="store_true", help='Scan only with HTTPs scheme. (default: False, scanning with both HTTP and HTTPs)')
parser.add_argument("--no-check-certificate", default=False, action="store_true", help='Do not check certificate. (default: False)')

parser.add_argument("--xlsx", default=None, type=str, help='Export results to XLSX')
Expand Down

0 comments on commit d90c852

Please sign in to comment.