import json import asyncio import socket from aiohttp import ClientSession from concurrent.futures import ThreadPoolExecutor def reverse_dns_lookup_sync(ip): """ Perform a reverse DNS lookup (synchronous, for multithreading). """ try: print(f"Performing synchronous DNS lookup for IP: {ip}") hostname = socket.gethostbyaddr(ip)[0] print(f"DNS lookup successful for IP {ip}: {hostname}") return hostname except socket.herror: print(f"DNS lookup failed for IP: {ip}") return None async def reverse_dns_lookup(ip, executor): """ Perform a reverse DNS lookup using a thread pool. """ print(f"Starting DNS lookup for IP: {ip}") loop = asyncio.get_event_loop() hostname = await loop.run_in_executor(executor, reverse_dns_lookup_sync, ip) return hostname async def fetch_website_info(session, ip, hostname): """ Fetch website title and description from the IP. """ print(f"Fetching website info for IP: {ip} (Hostname: {hostname or 'Unknown'})") endpoints = [f"http://{ip}", f"http://{hostname}" if hostname else None] for url in filter(None, endpoints): try: print(f"Trying URL: {url}") async with session.get(url, timeout=10) as response: if response.status == 200: print(f"Successfully fetched data from {url}") html = await response.text() title = ( html.split("")[1].split("")[0] if "" in html and "" in html else "No Title" ) description = "No Description" if '= batch_size: # Save progress to file after every batch of 10 results with open("output.json", "w") as file: json.dump({"results": results, "last_scanned_ip": result["ip"]}, file, indent=4) print(f"Progress saved to 'output.json'. Last scanned IP: {result['ip']}") batch_count = 0 # Reset the batch count # Final progress save with open("output.json", "w") as file: json.dump({"results": results, "last_scanned_ip": results[-1]["ip"]}, file, indent=4) print("Final progress saved to 'output.json'.") except KeyboardInterrupt: print("\nProcess interrupted. Saving current progress...") with open("output.json", "w") as file: json.dump({"results": results, "last_scanned_ip": ips[start_index - 1]}, file, indent=4) print("Progress saved successfully. Exiting gracefully.") return print("Analysis complete. Final results saved to 'output.json'.") if __name__ == "__main__": asyncio.run(main())