优化代码结构 删除无用队列结果集参数

This commit is contained in:
shmilylty
2019-08-05 18:00:01 +08:00
parent 53213304e2
commit 11642edf6e
50 changed files with 332 additions and 502 deletions
+7 -16
View File
@@ -1,10 +1,8 @@
# coding=utf-8
import queue
import config
# from shodan import Shodan
from common.search import Search
from config import logger
class ShodanAPI(Search):
@@ -34,36 +32,29 @@ class ShodanAPI(Search):
self.subdomains = self.subdomains.union(subdomain_find)
page += 1
def run(self, rx_queue):
def run(self):
"""
类执行入口
"""
if not self.key:
logger.log('ERROR', f'{self.source}模块API配置错误')
logger.log('ALERT', f'不执行{self.source}模块')
if not self.check(self.key):
return
logger.log('DEBUG', f'开始执行{self.source}模块搜索{self.domain}的子域')
self.begin()
self.search()
self.save_json()
self.gen_result()
self.save_db()
rx_queue.put(self.results)
logger.log('DEBUG', f'结束执行{self.source}模块搜索{self.domain}的子域')
self.finish()
def do(domain, rx_queue): # 统一入口名字 方便多线程调用
def do(domain): # 统一入口名字 方便多线程调用
"""
类统一调用入口
:param str domain: 域名
:param rx_queue: 结果集队列
"""
search = ShodanAPI(domain)
search.run(rx_queue)
search.run()
if __name__ == '__main__':
results = queue.Queue()
do('qq.com', results)
do('example.com')