From 6dec5d8e8a523c09ced1b28ad338a8b3aef86b01 Mon Sep 17 00:00:00 2001 From: ek0ms savi0r <4+ek0mssavi0r@noreply.git.churchofmalware.org> Date: Thu, 16 Jul 2026 17:04:14 +0000 Subject: [PATCH] Update i2p_scanner.py --- i2p_scanner.py | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/i2p_scanner.py b/i2p_scanner.py index e0c8c97..1439237 100644 --- a/i2p_scanner.py +++ b/i2p_scanner.py @@ -11,6 +11,26 @@ import random # Colorama for nice terminal colors init(autoreset=True) +# -------- COOL BANNER -------- +BANNER = f""" +{Fore.RED}░██ ░██████ + ░██ ░██ +░██ ░██ ░████████ ░███████ ░███████ ░██████ ░████████ ░████████ ░███████ ░██░████ +░██ ░█████ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░███ +░██ ░██ ░██ ░██ ░███████ ░██ ░███████ ░██ ░██ ░██ ░██ ░█████████ ░██ +░██░██ ░███ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ ░██ +░██░████████ ░██░█████ ░██████████ ░███████ ░███████ ░█████░██ ░██ ░██ ░██ ░██ ░███████ ░██ + ░██ + ░██ + +{Fore.CYAN}╔═══════════════════════════════════════════════════════════════╗ +{Fore.CYAN} {Fore.WHITE}I2P RED-TEAM WEB SCANNER v1.5{Fore.CYAN} +{Fore.CYAN} {Fore.YELLOW}by: Church of Malware : ek0ms{Fore.CYAN} +{Fore.CYAN} {Fore.RED}we see all xo{Fore.CYAN} +{Fore.CYAN}╚═══════════════════════════════════════════════════════════════╝ +""" +# -------- END OF BANNER -------- + # -------- CONFIGURATION -------- PROXY = { 'http': 'http://127.0.0.1:4444', @@ -523,10 +543,9 @@ def run_scan(user_input): # -------- INTERACTIVE LOOP -------- if __name__ == "__main__": - print(f"{Fore.CYAN}{'='*60}") - print(f"{Fore.CYAN} I2P RED-TEAM WEB SCANNER v1.5") - print(f"{Fore.CYAN} by: Church of Malware : ek0ms") - print(f"{Fore.CYAN}{'='*60}") + # Print the banner + print(BANNER) + print(f"{Fore.CYAN}Ensure I2P is running on 127.0.0.1:4444\n") print(f"{Fore.YELLOW}[!] WARNING: Only scan sites you own or have permission to test.") print(f"{Fore.YELLOW}[!] Configure CALLBACK_SERVER in the script for anonymity tests\n") @@ -534,7 +553,7 @@ if __name__ == "__main__": while True: user_input = input(f"{Fore.GREEN}Enter I2P site (or 'quit'): {Style.RESET_ALL}") if user_input.lower() in ['quit', 'exit']: - print(f"{Fore.CYAN}Goodbye! Stay ethical.") + print(f"{Fore.CYAN}Goodbye. Stay ethical.") break if not user_input: continue