Fixed a minor parsing issue in the SSL Certs Module

This commit is contained in:
Ahmed Aboul-Ela 2016-12-23 05:34:13 +04:00
parent 7850789bb0
commit 1811520b60
1 changed files with 4 additions and 0 deletions

View File

@ -815,6 +815,10 @@ class CrtSearch(enumratorBaseThreaded):
subdomain = link.strip()
if not subdomain.endswith(self.domain) or '*' in subdomain:
continue
if '@' in subdomain:
subdomain = subdomain[subdomain.find('@')+1:]
if subdomain not in self.subdomains and subdomain != self.domain:
if self.verbose:
self.print_("%s%s: %s%s"%(R, self.engine_name, W, subdomain))