40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
from autorecon.plugins import ServiceScan
|
|
import requests
|
|
from urllib.parse import urlparse
|
|
import urllib3
|
|
|
|
urllib3.disable_warnings()
|
|
|
|
class RedirectHostnameDiscovery(ServiceScan):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.name = 'Redirect Hostname Discovery'
|
|
self.slug = 'redirect-host-discovery'
|
|
self.tags = ['default', 'http', 'quick']
|
|
|
|
def configure(self):
|
|
self.match_service_name('^http')
|
|
self.match_service_name('^nacn_http$', negative_match=True)
|
|
|
|
async def run(self, service):
|
|
try:
|
|
url = f"{'https' if service.secure else 'http'}://{service.target.address}:{service.port}/"
|
|
resp = requests.get(url, verify=False, allow_redirects=False)
|
|
|
|
if 'Location' in resp.headers:
|
|
location = resp.headers['Location']
|
|
parsed = urlparse(location)
|
|
redirect_host = parsed.hostname
|
|
|
|
if redirect_host:
|
|
service.info(f"[+] Redirect detected: {url} → {location}")
|
|
service.info(f"[+] Hostname found in redirect: {redirect_host}")
|
|
else:
|
|
service.info(f"[+] Redirect detected, but no hostname could be parsed: {location}")
|
|
else:
|
|
service.info(f"[-] No redirect detected at {url}")
|
|
|
|
except Exception as e:
|
|
service.error(f"[!] Error during redirect check on {service.target.address}:{service.port} — {e}")
|