Skip to content

Commit ad40682

Browse files
committed
added subdomain scanner tutorial
1 parent 39d3962 commit ad40682

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

‎ethical-hacking/subdomain-scanner/fast_subdomain_scanner.py‎

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
importrequests
2-
fromthreadingimportThread, active_count
2+
fromthreadingimportThread
33
fromqueueimportQueue
4-
importtime
54

65
q=Queue()
76

@@ -51,10 +50,6 @@ def main(domain, n_threads, subdomains):
5150
wordlist=args.wordlist
5251
num_threads=args.num_threads
5352

54-
# t = Thread(target=print_n_threads)
55-
# t.daemon = True
56-
# t.start()
57-
5853
main(domain=domain, n_threads=num_threads, subdomains=open(wordlist).read().splitlines())
5954
q.join()
6055

0 commit comments

Comments
(0)