You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
import api
|
|
from client.subdomain.oneforall.common.query import Query
|
|
|
|
|
|
class ThreatBookAPI(Query):
|
|
def __init__(self, domain):
|
|
Query.__init__(self)
|
|
self.domain = self.register(domain)
|
|
self.module = 'Intelligence'
|
|
self.source = 'ThreatBookAPIQuery'
|
|
self.addr = 'https://x.threatbook.cn/api/v1/domain/query'
|
|
self.key = api.threatbook_api_key
|
|
|
|
def query(self):
|
|
"""
|
|
向接口查询子域并做子域匹配
|
|
"""
|
|
self.header = self.get_header()
|
|
self.proxy = self.get_proxy(self.source)
|
|
params = {'apikey': self.key,
|
|
'domain': self.domain,
|
|
'field': 'sub_domains'}
|
|
resp = self.post(self.addr, params)
|
|
if not resp:
|
|
return
|
|
subdomains = self.match(self.domain, str(resp.json()))
|
|
self.subdomains = self.subdomains.union(subdomains)
|
|
|
|
def run(self):
|
|
"""
|
|
类执行入口
|
|
"""
|
|
if not self.check(self.key):
|
|
return
|
|
self.begin()
|
|
self.query()
|
|
self.finish()
|
|
self.save_json()
|
|
self.gen_result()
|
|
self.save_db()
|
|
|
|
|
|
def do(domain): # 统一入口名字 方便多线程调用
|
|
"""
|
|
类统一调用入口
|
|
|
|
:param str domain: 域名
|
|
"""
|
|
query = ThreatBookAPI(domain)
|
|
query.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
do('example.com')
|