You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1015 B

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"))