-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjbHack.py
More file actions
36 lines (30 loc) · 797 Bytes
/
Copy pathjbHack.py
File metadata and controls
36 lines (30 loc) · 797 Bytes
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
import time
import random
import sys
from colorama import Fore, init
# Initialize colorama
init(autoreset=True)
# Fake system commands (short & long)
commands = [
"Rooting...",
"Injecting...",
"Exploiting...",
"Decrypting...",
"Bypassing...",
"Unlocking...",
"Accessing system core...",
"Overwriting partitions...",
"Injecting superuser privileges...",
"Disabling security protocols...",
"Executing deep system scan...",
"Modifying kernel parameters...",
"Scanning encrypted bootloader...",
]
# Infinite loop for fast scrolling effect
while True:
command = random.choice(commands)
# Print fake command in white
sys.stdout.write(f"{Fore.WHITE}{command}\n")
sys.stdout.flush()
# Faster speed
time.sleep(0.02)