新增Webanalyzer模块

This commit is contained in:
JrD
2020-07-29 00:02:06 +08:00
parent 07f436929e
commit e9cffc9e7b
5009 changed files with 81504 additions and 3 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class Finder(Module):
self.start = time.time() # 模块开始执行时间
def run(self, domain, data, port):
logger.log('INFOR', f'Start finder module')
logger.log('INFOR', f'Start Finder module')
existing_subdomains = set(map(lambda x: x.get('subdomain'), data)) # 已有的子域
found_subdomains = find_subdomains(domain, data)
new_subdomains = found_subdomains - existing_subdomains