-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
64 lines (56 loc) · 2.59 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import subprocess
import sys
import os
import time
import platform
from colorama import init, Fore, Style
def install_colorama():
print("colorama is not installed. Installing...")
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'colorama'])
try:
import colorama
except ImportError:
install_colorama()
import colorama
# Initialize Colorama
init(autoreset=True)
# Function to clear the screen
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
# Define colors and styles
colors = [
Fore.RED, Fore.GREEN, Fore.YELLOW, Fore.BLUE,
Fore.MAGENTA, Fore.CYAN, Fore.WHITE
]
# Function to display blinking message
def display_blinking_message():
banner = """
████████╗██╗░░██╗░█████╗░░██████╗░██████╗░███████╗███████╗
╚══██╔══╝██║░░██║██╔══██╗██╔════╝░██╔══██╗██╔════╝██╔════╝
░░░██║░░░███████║██║░░██║██║░░██╗░██████╔╝█████╗░░█████╗░░
░░░██║░░░██╔══██║██║░░██║██║░░╚██╗██╔═══╝░██╔══╝░░██╔══╝░░
░░░██║░░░██║░░██║╚█████╔╝╚██████╔╝██║░░░░░███████╗███████╗
░░░╚═╝░░░╚═╝░░╚═╝░╚════╝░░╚═════╝░╚═╝░░░░░╚══════╝╚══════╝
"""
try:
while True:
for color in colors:
clear_screen()
print(color + Style.BRIGHT + banner + Style.RESET_ALL)
print(color + Style.BRIGHT + "Coming Soon" + Style.RESET_ALL)
time.sleep(0.5)
except KeyboardInterrupt:
clear_screen()
print(Fore.GREEN + "Message display terminated." + Style.RESET_ALL)
# Function to simulate a fake loading screen
def fake_loading_screen():
loading_message = "Initializing hack tool..."
clear_screen()
print(Fore.GREEN + Style.BRIGHT + loading_message + Style.RESET_ALL)
for i in range(5):
print(Fore.GREEN + Style.BRIGHT + "." * (i + 1) + Style.RESET_ALL, end='\r')
time.sleep(1)
clear_screen()
if __name__ == "__main__":
fake_loading_screen()
display_blinking_message()