elapsed重命名为elapse

This commit is contained in:
Jing Ling
2020-02-29 20:38:41 +08:00
parent 98762cbfa2
commit f213a93a32
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -302,10 +302,10 @@ class AIOBrute(Module):
db.save_db(self.domain, results, self.source)
end = time.time()
self.elapsed = round(end - start, 1)
self.elapse = round(end - start, 1)
logger.log('INFOR', f'结束执行{self.source}模块爆破域名{self.domain}')
length = len(self.subdomains)
logger.log('INFOR', f'{self.source}模块耗时{self.elapsed}'
logger.log('INFOR', f'{self.source}模块耗时{self.elapse}'
f'发现{self.domain}的域名{length}')
logger.log('DEBUG', f'{self.source}模块发现{self.domain}的域名:\n'
f'{self.subdomains}')