From 1811520b60d3050cec21d69e70aca48edf09c91d Mon Sep 17 00:00:00 2001 From: Ahmed Aboul-Ela Date: Fri, 23 Dec 2016 05:34:13 +0400 Subject: [PATCH] Fixed a minor parsing issue in the SSL Certs Module --- sublist3r.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sublist3r.py b/sublist3r.py index e2735d0..cbb42e4 100644 --- a/sublist3r.py +++ b/sublist3r.py @@ -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))