105 lines
4.5 KiB
Python
105 lines
4.5 KiB
Python
from autorecon.plugins import ServiceScan
|
|
import asyncio
|
|
import requests
|
|
import urllib3
|
|
import os, random, string
|
|
|
|
urllib3.disable_warnings()
|
|
|
|
class VirtualHost(ServiceScan):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.name = 'Virtual Host Enumeration'
|
|
self.slug = 'vhost-enum'
|
|
self.tags = ['default', 'safe', 'http', 'long']
|
|
|
|
def configure(self):
|
|
self.add_option('hostname', help='The hostname to use as the base host (e.g. example.com) for virtual host enumeration. Default: %(default)s')
|
|
self.add_list_option('wordlist', default=['/usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt'], help='The wordlist(s) to use when enumerating virtual hosts. Separate multiple wordlists with spaces. Default: %(default)s')
|
|
self.add_option('threads', default=10, help='The number of threads to use when enumerating virtual hosts. Default: %(default)s')
|
|
self.match_service_name('^http')
|
|
self.match_service_name('^nacn_http$', negative_match=True)
|
|
|
|
async def run(self, service):
|
|
hostnames = []
|
|
if self.get_option('hostname'):
|
|
hostnames.append(self.get_option('hostname'))
|
|
if service.target.type == 'hostname' and service.target.address not in hostnames:
|
|
hostnames.append(service.target.address)
|
|
if self.get_global('domain') and self.get_global('domain') not in hostnames:
|
|
hostnames.append(self.get_global('domain'))
|
|
|
|
if not hostnames:
|
|
service.info('The target was not a hostname, nor was a hostname provided as an option. Skipping virtual host enumeration.')
|
|
return
|
|
|
|
scheme = 'https' if service.secure else 'http'
|
|
ip_url = f"{scheme}://{service.target.address}:{service.port}/"
|
|
scandir = os.path.join(service.target.scandir, f"{service.protocol}{service.port}")
|
|
protocol = service.protocol
|
|
port = service.port
|
|
|
|
for wordlist in self.get_option('wordlist'):
|
|
name = os.path.splitext(os.path.basename(wordlist))[0]
|
|
|
|
for hostname in hostnames:
|
|
# Wildcard probe — get baseline status and size
|
|
wildcard_status = None
|
|
wildcard_sizes = []
|
|
|
|
for i in range(3):
|
|
fuzz_host = ''.join(random.choice(string.ascii_letters) for _ in range(20)) + '.' + hostname
|
|
try:
|
|
resp = await asyncio.to_thread(
|
|
requests.get,
|
|
ip_url,
|
|
headers={'Host': fuzz_host, 'User-Agent': 'Vhost Finder'},
|
|
verify=False,
|
|
allow_redirects=False,
|
|
timeout=10,
|
|
)
|
|
wildcard_status = resp.status_code
|
|
wildcard_sizes.append(len(resp.content))
|
|
except requests.exceptions.RequestException:
|
|
pass
|
|
|
|
filter_sizes = list(set(wildcard_sizes))
|
|
filter_codes = [str(wildcard_status)] if wildcard_status else []
|
|
|
|
if not filter_codes and not filter_sizes:
|
|
service.info(f'Could not establish wildcard baseline for {hostname}. Skipping.')
|
|
continue
|
|
|
|
outfile = os.path.join(scandir, f"{protocol}_{port}_{scheme}_{hostname}_vhosts_{name}.txt")
|
|
|
|
cmd = [
|
|
'ffuf',
|
|
'-u', ip_url,
|
|
'-H', f'Host: FUZZ.{hostname}',
|
|
'-H', 'User-Agent: Vhost Finder',
|
|
'-w', wordlist,
|
|
'-t', str(self.get_option('threads')),
|
|
'-mc', 'all',
|
|
'-noninteractive',
|
|
'-s',
|
|
]
|
|
|
|
if filter_codes:
|
|
cmd += ['-fc', ','.join(filter_codes)]
|
|
if filter_sizes:
|
|
cmd += ['-fs', ','.join(str(s) for s in filter_sizes)]
|
|
|
|
proc = await asyncio.create_subprocess_exec(
|
|
*cmd,
|
|
stdout=asyncio.subprocess.PIPE,
|
|
stderr=asyncio.subprocess.DEVNULL,
|
|
)
|
|
|
|
with open(outfile, 'w') as f:
|
|
async for line in proc.stdout:
|
|
hit = line.decode(errors='replace').strip()
|
|
if hit and '#' not in hit:
|
|
f.write(hit + '\n')
|
|
f.flush()
|
|
|
|
await proc.wait() |