diff --git a/meerkat.py b/meerkat.py index 4c5cc40..f1e93f7 100644 --- a/meerkat.py +++ b/meerkat.py @@ -9,22 +9,21 @@ 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"Performing DNS lookup for IP: {ip}") + 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) - if hostname: - print(f"DNS lookup successful for IP {ip}: {hostname}") - else: - print(f"DNS lookup failed for IP: {ip}") return hostname async def fetch_website_info(session, ip, hostname): @@ -48,43 +47,92 @@ async def fetch_website_info(session, ip, hostname): 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()) \ No newline at end of file + asyncio.run(main())