aboul3la / Sublist3r

Fast subdomains enumeration tool for penetration testers
GNU General Public License v2.0
9.73k stars 2.1k forks source link

CrtSearch output with <BR> #230

Closed victormatuk closed 4 years ago

victormatuk commented 4 years ago

When i run python sublist3r.py -d domain.com e ssl The output comes with
Example: autodiscover.domain.com<BR>mail-ldn.domain.com<BR>mobileld.domain.com<BR>mobileldn.domain.com Because some ssl certificates have more than one domain, so crt.sh output comes with

Replace: self.subdomains.append(subdomain.strip())

For: for sd in subdomain.strip().split("<BR>"): self.subdomains.append(sd)

aboul3la commented 4 years ago

Hi,

Apologies for this late reply.

The issue has been resolved in commit 61ebf366e096ffdc9fea6bb57f00683af5944bfc.

Please update to the latest version using "git pull" command.

Thank you!