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.
39 lines
1.1 KiB
39 lines
1.1 KiB
# pip install termcolor colorama art tqdm pyfiglet
|
|
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 (aby fungovali barvy)
|
|
init()
|
|
|
|
os.system("cls")
|
|
|
|
f=Figlet(font="slant")
|
|
|
|
cprint("HACKER SYSTEM", "green",attrs=["bold"])
|
|
print(colored(f.renderText("CRACKING"),"green"))
|
|
tprint("SECURITY")
|
|
|
|
print(colored("Vítejte v zabezečeném systému firmy","cyan"))
|
|
print(colored("-"*40,"yellow"))
|
|
|
|
input(colored("Stiskněte ENTER pro zahájení prolamování hesla...",
|
|
"white",attrs=["blink"]))
|
|
print("\n")
|
|
|
|
items = ["Navazuji spojení","Bypassing firewall orchrany",
|
|
"Hledání databáze","Stahování dat","Čistění stop","Dokončování"]
|
|
|
|
pbar = tqdm(items, colour="green")
|
|
for item in pbar:
|
|
pbar.set_description(f"Hackování: {item}")
|
|
time.sleep(1)
|
|
print("\n")
|
|
|
|
cprint("PŘÍSTUP POVOLEN!","red","on_green",attrs=["bold"])
|
|
print(colored("Data byla úspěšně stažena a odeslána pro Echo","magenta"))
|