-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwp.sh
102 lines (90 loc) · 5.55 KB
/
wp.sh
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
clear
echo -e '\e[92m
██████╗ ███████╗██╗ ██╗ █████╗ ████████╗███████╗ █████╗ ██████╗ ██████╗ \e[94m
██╔══██╗██╔══██╗██║ ██║██╔══██╗╚══██╔══╝██╔════╝██╔══██╗██╔══██╗██╔══██╗\e[94m
██████╔╝███████║███████║███████║ ██║ ███████╗███████║██████╔╝██████╔╝\e[94m
██╔═══╝ ██╔══██║██╔══██║██╔══██║ ██║ ╚════██║██╔══██║██╔═══╝ ██╔═══╝ \e[94m
██║ ██║ ██║██║ ██║██║ ██║ ██║ ███████║██║ ██║██║ ██║ \e[94m
V.1.01 \e[92m
██╗ ██╗ █████╗ ██████╗██╗ ██╗██╗███╗ ██╗ ██████╗ \e[92m
██║ ██║██╔══██╗██╔════╝██║ ██╔╝██║████╗ ██║██╔════╝ \e[92m
███████║███████║██║ █████╔╝ ██║██╔██╗ ██║██║ ███╗ \e[92m
██╔══██║██╔══██║██║ ██╔═██╗ ██║██║╚██╗██║██║ ██║ \e[92m
██║ ██║██║ ██║╚██████╗██║ ██╗██║██║ ╚████║╚██████╔╝ \e[92m
WARNING: This is a fake repo. It does not work as expected. \e[91m
Enjoy the show, but proceed with caution! \e[91m
\e[92mJoin my youtube channel: https://youtube.com/@termux2\e[0m
'
# Adding a professional-looking footer
footer() {
echo -e "\n\e[1;93m█████████████████████████████████████████████████████████████████████\e[0m"
echo -e "\e[1;96m Script by: MR. Lokesh Kumar - Always improving with your support! \e[0m"
echo -e "\e[1;96m Subscribe to the channel: https://youtube.com/@termux2 \e[0m"
echo -e "\e[1;93m█████████████████████████████████████████████████████████████████████\e[0m"
}
footer # Display footer
# Main Menu
menu1(){
echo -e "\n\e[1;92m[01] \e[1;33mBypass OTP \e[0m"
echo -e "\e[1;92m[02] \e[1;33mHack with IP Address \e[0m"
echo -e "\e[1;92m[03] \e[1;33mHack with Link \e[0m"
echo -e "\e[1;92m[04] \e[1;33mHack with Web \e[0m"
echo -e "\e[1;92m[05] \e[1;33mHack with QR Code \e[0m"
echo -e "\e[1;92m[06] \e[1;33mUpdate Tool \e[0m"
echo -e "\e[1;92m[07] \e[1;33mSubscribe to my Channel \e[0m"
echo -e "\e[1;92m[08] \e[1;33mChat with Me \e[0m"
echo -e "\e[1;92m[09] \e[1;33mExit \e[0m"
}
menu1 # Display menu
# Function for user input
read -p $'\n\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Choose an option: \e[0m' option
# Processing User Input
if [[ $option == 1 || $option == 01 ]]; then
echo "Bypassing OTP... [This is a fake feature!]"
sleep 2
bash wp.sh
elif [[ $option == 2 || $option == 02 ]]; then
echo "Hacking with IP... [This is a fake feature!]"
sleep 2
bash wp.sh
elif [[ $option == 3 || $option == 03 ]]; then
echo "Hacking with Link... [This is a fake feature!]"
sleep 2
bash wp.sh
elif [[ $option == 4 || $option == 04 ]]; then
echo "Hacking with Web... [This is a fake feature!]"
sleep 2
bash wp.sh
elif [[ $option == 5 || $option == 05 ]]; then
echo "Hacking with QR Code... [This is a fake feature!]"
sleep 2
bash wp.sh
elif [[ $option == 6 || $option == 06 ]]; then
bash update.sh
elif [[ $option == 7 || $option == 07 ]]; then
xdg-open https://youtube.com/@termux2
elif [[ $option == 8 || $option == 08 ]]; then
xdg-open https://chat.whatsapp.com/DvP0dQe8kA8KrdpruPXlfw
elif [[ $option == 9 || $option == 09 ]]; then
exit
else
echo -e "\n\e[1;91m[ERROR] Invalid selection. Please try again.\e[0m"
sleep 2
bash script.sh # Rerun the script
fi
# Additional amazing features
quote_of_the_day() {
echo -e "\n\e[1;93m\"The only way to do great work is to love what you do.\"\e[0m"
echo -e "\e[1;96m - Steve Jobs\e[0m"
}
quote_of_the_day # Display motivational quote
# Final professional footer with a dynamic date
footer() {
current_date=$(date '+%Y-%m-%d %H:%M:%S')
echo -e "\n\e[1;93m█████████████████████████████████████████████████████████████████████\e[0m"
echo -e "\e[1;96m Script by: MR. Lokesh Kumar | Date: $current_date \e[0m"
echo -e "\e[1;96m Subscribe to the channel: https://youtube.com/@termux2 \e[0m"
echo -e "\e[1;93m█████████████████████████████████████████████████████████████████████\e[0m"
}
footer # Display the footer again
exit