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.
58 lines
1.5 KiB
58 lines
1.5 KiB
import cloudscraper
|
|
from client.subdomain.oneforall.common.query import Query
|
|
from client.subdomain.oneforall.config import logger
|
|
|
|
|
|
class BufferOver(Query):
|
|
def __init__(self, domain):
|
|
Query.__init__(self)
|
|
self.domain = self.register(domain)
|
|
self.module = 'Dataset'
|
|
self.source = 'BufferOverQuery'
|
|
self.addr = 'https://dns.bufferover.run/dns?q='
|
|
|
|
def query(self):
|
|
"""
|
|
向接口查询子域并做子域匹配
|
|
"""
|
|
# 绕过cloudFlare验证
|
|
scraper = cloudscraper.create_scraper()
|
|
scraper.interpreter = 'js2py'
|
|
scraper.proxies = self.get_proxy(self.source)
|
|
url = self.addr + self.domain
|
|
try:
|
|
resp = scraper.get(url, timeout=self.timeout)
|
|
except Exception as e:
|
|
logger.log('ERROR', e.args)
|
|
return
|
|
if resp.status_code != 200:
|
|
return
|
|
subdomains = self.match(self.domain, str(resp.json()))
|
|
# 合并搜索子域名搜索结果
|
|
self.subdomains = self.subdomains.union(subdomains)
|
|
|
|
def run(self):
|
|
"""
|
|
类执行入口
|
|
"""
|
|
self.begin()
|
|
self.query()
|
|
self.finish()
|
|
self.save_json()
|
|
self.gen_result()
|
|
self.save_db()
|
|
|
|
|
|
def do(domain): # 统一入口名字 方便多线程调用
|
|
"""
|
|
类统一调用入口
|
|
|
|
:param str domain: 域名
|
|
"""
|
|
query = BufferOver(domain)
|
|
query.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
do('example.com')
|