mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-25 20:37:48 +08:00
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
# coding=utf-8
|
|
import time
|
|
import queue
|
|
import config
|
|
from common.query import Query
|
|
from config import logger
|
|
|
|
|
|
class RiskIQ(Query):
|
|
def __init__(self, domain):
|
|
Query.__init__(self)
|
|
self.domain = self.register(domain)
|
|
self.module = 'Intelligence'
|
|
self.source = 'RiskIQQuery'
|
|
self.addr = 'https://api.passivetotal.org/v2/enrichment/subdomains'
|
|
self.username = config.riskiq_api_username
|
|
self.key = config.riskiq_api_key
|
|
|
|
def query(self):
|
|
"""
|
|
向接口查询子域并做子域匹配
|
|
"""
|
|
self.header = self.get_header()
|
|
self.proxy = self.get_proxy(self.source)
|
|
params = {'query': self.domain}
|
|
resp = self.get(url=self.addr, params=params, auth=(self.username, self.key))
|
|
if not resp:
|
|
return
|
|
resp_json = resp.json()
|
|
subdomains_find = resp_json.get('subdomains')
|
|
if subdomains_find:
|
|
self.subdomains = set(map(lambda x: x + '.' + self.domain, subdomains_find))
|
|
|
|
def run(self, rx_queue):
|
|
"""
|
|
类执行入口
|
|
"""
|
|
logger.log('DEBUG', f'开始执行{self.source}模块查询{self.domain}的子域')
|
|
start = time.time()
|
|
self.query()
|
|
end = time.time()
|
|
self.elapsed = round(end - start, 1)
|
|
self.save_json()
|
|
self.gen_result()
|
|
self.save_db()
|
|
rx_queue.put(self.results)
|
|
logger.log('DEBUG', f'结束执行{self.source}模块查询{self.domain}的子域')
|
|
|
|
|
|
def do(domain, rx_queue): # 统一入口名字 方便多线程调用
|
|
"""
|
|
类统一调用入口
|
|
|
|
:param str domain: 域名
|
|
:param rx_queue: 结果集队列
|
|
"""
|
|
return
|
|
query = RiskIQ(domain)
|
|
query.run(rx_queue)
|
|
logger.log('INFOR', f'{query.source}模块耗时{query.elapsed}秒发现{query.domain}的子域{len(query.subdomains)}个')
|
|
logger.log('DEBUG', f'{query.source}模块发现{query.domain}的子域 {query.subdomains}')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
result_queue = queue.Queue()
|
|
do('owasp.org', result_queue)
|