5 changed files with 70 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||
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")) |
|||
|
After Width: | Height: | Size: 870 B |
|
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,9 @@ |
|||
|
|||
*otevřít cmd* |
|||
mkdir novypython |
|||
cd novypython |
|||
python -m venv .venv |
|||
.venv\Scripts\activate |
|||
pip install termcolor colorama art tqdm pyfiglet |
|||
pip install qrcode[pil] |
|||
code . |
|||
@ -0,0 +1,23 @@ |
|||
#pip install qrcode[pil] |
|||
import qrcode |
|||
|
|||
def vytvor_qr(text,nazev_souboru): |
|||
#vyvoření instance QR kódu |
|||
qr = qrcode.QRCode(version=1, |
|||
box_size=15,border=5) |
|||
qr.add_data(text) |
|||
qr.make(fit=True) |
|||
img = qr.make_image(fill_color="red", |
|||
back_color="black") |
|||
img.save(nazev_souboru) |
|||
print(f"QR kod byl vytvoen a uložen jako \ |
|||
{nazev_souboru}") |
|||
|
|||
print("--- GENERATOR QR KODU ---") |
|||
print("Zadej text nebo webovou adresu (např.https://www.odbornaskola.cz)") |
|||
data = input("Tvůj text/odkaz:") |
|||
soubor = "muj_qr_kod.png" |
|||
if data: |
|||
vytvor_qr(data,soubor) |
|||
else: |
|||
print("Nezadal jsi data!") |
|||
Loading…
Reference in new issue