Skip to content

Commit 6613d43

Browse files
committed
add default output file for subdomain scanner
1 parent 255b532 commit 6613d43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethical-hacking/subdomain-scanner/fast_subdomain_scanner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main(domain, n_threads, subdomains):
4949
parser.add_argument("-l", "--wordlist", help="File that contains all subdomains to scan, line by line. Default is subdomains.txt",
5050
default="subdomains.txt")
5151
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")
52+
parser.add_argument("-o", "--output-file", help="Specify the output text file to write discovered subdomains", default="discovered-subdomains.txt")
5353

5454
args = parser.parse_args()
5555
domain = args.domain

0 commit comments

Comments
 (0)