You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("--debug", default=False, action="store_true", help='Debug mode, for huge verbosity. (default: False)')
107
-
parser.add_argument("-C", "--list-cves", default=False, action="store_true", help='List CVE ids affecting each version found. (default: False)')
108
-
parser.add_argument("-T", "--threads", default=8, type=int, help='Number of threads (default: 5)')
109
-
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)')
110
-
111
-
parser.add_argument("--only-http", default=False, action="store_true", help='Scan only with HTTP scheme. (default: False, scanning with both HTTP and HTTPs)')
112
-
parser.add_argument("--only-https", default=False, action="store_true", help='Scan only with HTTPs scheme. (default: False, scanning with both HTTP and HTTPs)')
113
-
parser.add_argument("--no-check-certificate", default=False, action="store_true", help='Do not check certificate. (default: False)')
114
-
115
-
parser.add_argument("--xlsx", default=None, type=str, help='Export results to XLSX')
116
-
parser.add_argument("--json", default=None, type=str, help='Export results to JSON')
parser.add_argument("--debug", default=False, action="store_true", help="Debug mode, for huge verbosity. (default: False)")
110
+
parser.add_argument("-C", "--list-cves", default=False, action="store_true", help="List CVE ids affecting each version found. (default: False)")
111
+
parser.add_argument("-T", "--threads", default=8, type=int, help="Number of threads (default: 5)")
112
+
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)")
113
+
114
+
parser.add_argument("--only-http", default=False, action="store_true", help="Scan only with HTTP scheme. (default: False, scanning with both HTTP and HTTPs)")
115
+
parser.add_argument("--only-https", default=False, action="store_true", help="Scan only with HTTPs scheme. (default: False, scanning with both HTTP and HTTPs)")
116
+
parser.add_argument("--no-check-certificate", default=False, action="store_true", help="Do not check certificate. (default: False)")
group_targets_source.add_argument("-tf", "--targets-file", default=None, type=str, help="Path to file containing a line by line list of targets.")
125
129
group_targets_source.add_argument("-tt", "--target", default=[], type=str, action='append', help='Target IP, FQDN or CIDR')
126
-
group_targets_source.add_argument("-tp", "--target-ports", default="8080", type=str, help='Target ports to scan top search for Apache Tomcat servers.')
127
-
group_targets_source.add_argument("-ad", "--auth-domain", default=None, type=str, help='Windows domain to authenticate to.')
128
-
group_targets_source.add_argument("-ai", "--auth-dc-ip", default=None, type=str, help='IP of the domain controller.')
129
-
group_targets_source.add_argument("-au", "--auth-user", default=None, type=str, help='Username of the domain account.')
130
-
group_targets_source.add_argument("-ap", "--auth-password", default=None, type=str, help='Password of the domain account.')
131
-
group_targets_source.add_argument("-ah", "--auth-hash", default=None, type=str, help='LM:NT hashes to pass the hash for this user.')
130
+
group_targets_source.add_argument("-tp", "--target-ports", default="8080", type=str, help="Target ports to scan top search for Apache Tomcat servers.")
131
+
group_targets_source.add_argument("-ad", "--auth-domain", default=None, type=str, help="Windows domain to authenticate to.")
132
+
group_targets_source.add_argument("-ai", "--auth-dc-ip", default=None, type=str, help="IP of the domain controller.")
133
+
group_targets_source.add_argument("-au", "--auth-user", default=None, type=str, help="Username of the domain account.")
134
+
group_targets_source.add_argument("-ap", "--auth-password", default=None, type=str, help="Password of the domain account.")
135
+
group_targets_source.add_argument("-ah", "--auth-hash", default=None, type=str, help="LM:NT hashes to pass the hash for this user.")
0 commit comments