Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pdlist/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import argparse
import pdlist.source.crtsh as cr
import pdlist.source.urlscan as us
import pdlist.source.threatcrowd as tc
import pdlist.source.dnsdumpster as dd
import pdlist.source.certspotter as cs
import pdlist.source.hackertarget as ht
Expand Down Expand Up @@ -79,7 +78,7 @@ def main():
' '.join(domains))

found_subdomains = []
sources = [tc, ht, us, dd, cr, cs]
sources = [ht, us, dd, cr, cs]
for source in sources:
name = re.sub(r' parser$', '', source.__doc__.strip().split('\n')[0])
print('\033[32m[+] \033[0m Searching on {}...'.format(name))
Expand Down