mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-26 04:47:48 +08:00
55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
"""
|
|
检查内容安全策略收集子域名收集子域名
|
|
"""
|
|
from common.module import Module
|
|
|
|
|
|
class CheckRobots(Module):
|
|
"""
|
|
检查robots.txt收集子域名
|
|
"""
|
|
def __init__(self, domain):
|
|
Module.__init__(self)
|
|
self.domain = domain
|
|
self.module = 'Check'
|
|
self.source = 'Robots'
|
|
|
|
def check(self):
|
|
"""
|
|
正则匹配域名的robots.txt文件中的子域
|
|
"""
|
|
urls = [f'http://{self.domain}/robots.txt',
|
|
f'https://{self.domain}/robots.txt',
|
|
f'http://www.{self.domain}/robots.txt',
|
|
f'https://www.{self.domain}/robots.txt']
|
|
for url in urls:
|
|
self.header = self.get_header()
|
|
self.proxy = self.get_proxy(self.source)
|
|
resp = self.get(url, check=False, allow_redirects=False)
|
|
self.subdomains = self.collect_subdomains(resp)
|
|
|
|
def run(self):
|
|
"""
|
|
类执行入口
|
|
"""
|
|
self.begin()
|
|
self.check()
|
|
self.finish()
|
|
self.save_json()
|
|
self.gen_result()
|
|
self.save_db()
|
|
|
|
|
|
def run(domain):
|
|
"""
|
|
类统一调用入口
|
|
|
|
:param str domain: 域名
|
|
"""
|
|
check = CheckRobots(domain)
|
|
check.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run('qq.com')
|