import sys import os import time from termcolor import colored, cprint from colorama import init from art import tprint from tqdm import tqdm from pyfiglet import Figlet #init() inicializace colorama pro windows (barvy v cmd) init() os.system("cls") f=Figlet(font="slant") cprint("HACKER SYSTEM","green",attrs=["bold"]) print(colored(f.renderText("Hacking"),"green")) tprint("SECURITY") print(colored("Vítej v zabezpúečeném systému firmy","cyan")) print(colored("-"*40,"yellow")) input(colored("Stihněte ENTER pro zahájení prolamování hesla...", "white",attrs=["blink"])) print("\n") items = ["Navazuji spojení","Bypass firewall ochrany", "Hledám databázi","Stahování dat","Cleaning","Finish"] pbar = tqdm(items, colour="green") for item in pbar: pbar.set_description(f"Hackování: {item}") time.sleep(2) cprint("PŘISTUP POVOLEN!!!","red", "on_green",attrs=["bold"]) print(colored("Data byla úspěšně \ stažena a odeslána pro Echo","magenta"))