We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255b532 commit 6613d43Copy full SHA for 6613d43
ethical-hacking/subdomain-scanner/fast_subdomain_scanner.py
@@ -49,7 +49,7 @@ def main(domain, n_threads, subdomains):
49
parser.add_argument("-l", "--wordlist", help="File that contains all subdomains to scan, line by line. Default is subdomains.txt",
50
default="subdomains.txt")
51
parser.add_argument("-t", "--num-threads", help="Number of threads to use to scan the domain. Default is 10", default=10, type=int)
52
- parser.add_argument("-o", "--output-file", help="Specify the output text file to write discovered subdomains")
+ parser.add_argument("-o", "--output-file", help="Specify the output text file to write discovered subdomains", default="discovered-subdomains.txt")
53
54
args = parser.parse_args()
55
domain = args.domain
0 commit comments