-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathSel.sh
308 lines (281 loc) · 14 KB
/
Sel.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#!/bin/bash
clear
# Define color codes
red='\e[1;31m'
green='\e[1;32m'
yellow='\e[1;33m'
purple='\e[1;34m'
cyan='\e[1;36m'
white='\e[1;37m'
reset='\e[0m'
clear
if command -v figlet &>/dev/null; then
figlet -f slant "KOLAND"
fi
echo -e "${cyan}*****************************************${reset}"
echo -e "${cyan}*${reset} ${red}Y${green}O${yellow}U${purple}T${cyan}U${green}B${white}E${reset} : ${purple}KOLANDONE${reset} ${cyan}"
echo -e "${cyan}*${reset} ${red}T${green}E${yellow}L${purple}E${cyan}G${green}R${white}A${red}M${reset} : ${purple}KOLANDJS${reset} ${cyan}"
echo -e "${cyan}*${reset} ${red}G${green}I${yellow}T${purple}H${cyan}U${green}B${reset} : ${purple}https://github.com/Kolandone${reset} ${cyan}"
echo -e "${cyan}*****************************************${reset}"
echo -e "${cyan}* ${green}Date:${reset} $(date '+%Y-%m-%d %H:%M:%S') ${cyan}*${reset}"
echo ""
echo -e "${cyan}+----+---------------------------------------------+${reset}"
echo -e "${green}| No | Option |${reset}"
echo -e "${cyan}+----+---------------------------------------------+${reset}"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "1" "IPv4 scan"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "2" "IPv6 scan"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "3" "V2ray and MahsaNG wireguard config"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "4" "Hiddify config for 1.4.0 - 1.9.0 versions"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "5" "Warp License Cloner"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "6" "Hiddify config for 2.0 version or higher"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "7" "Install Worker Creator"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "8" "Run Worker Creator (install it first)"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "9" "Free subscription link (Soroush Mirzaei)"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "10" "Wireguard config for Hiddify and v2ray"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "11" "CLEAN IP scanner"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "12" "Fastly CLEAN IP scanner"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "13" "Gcore CLEAN IP scanner"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "14" "Telegram Proxy"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "15" "SingBox installer (only for serv00)"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "16" "Usque installer"
printf "${cyan}| ${yellow}%-2s ${cyan}| ${yellow}%-43s ${cyan}|\n" "99" "Install Selector"
echo -e "${cyan}+----+---------------------------------------------+${reset}"
echo -en "${green}Enter your choice: ${reset}"
read -r user_input
measure_latency() {
local ip_port=$1
local ip=$(echo $ip_port | cut -d: -f1)
local latency=$(ping -c 1 -W 1 $ip | grep 'time=' | awk -F'time=' '{ print $2 }' | cut -d' ' -f1)
if [ -z "$latency" ]; then
latency="N/A"
fi
printf "| %-21s | %-10s |\n" "$ip_port" "$latency"
}
measure_latency6() {
local ip_port=$1
local ip=$(echo $ip_port | cut -d'[' -f2 | cut -d']' -f1)
local latency=$(ping6 -c 1 -W 1 $ip | grep 'time=' | awk -F'time=' '{ print $2 }' | cut -d' ' -f1)
if [ -z "$latency" ]; then
latency="N/A"
fi
printf "| %-45s | %-10s |\n" "$ip_port" "$latency"
}
display_table_ipv4() {
printf "+-----------------------+------------+\n"
printf "| IP:Port | Latency(ms) |\n"
printf "+-----------------------+------------+\n"
echo "$1" | head -n 10 | while read -r ip_port; do measure_latency "$ip_port"; done
printf "+-----------------------+------------+\n"
}
display_table_ipv6() {
printf "+---------------------------------------------+------------+\n"
printf "| IP:Port | Latency(ms) |\n"
printf "+---------------------------------------------+------------+\n"
echo "$1" | head -n 10 | while read -r ip_port; do measure_latency6 "$ip_port"; done
printf "+---------------------------------------------+------------+\n"
}
cloner() {
if ! command -v wg &>/dev/null; then
if [ -d "$PREFIX" ] && [ "$(uname -o)" = "Android" ]; then
echo "Installing wireguard-tools"
pkg install wireguard-tools -y
pkg install jq -y
elif [ -x "$(command -v apt)" ]; then
echo "Installing wireguard-tools on Debian/Ubuntu"
sudo apt update -y && sudo apt install wireguard-tools -y
elif [ -x "$(command -v yum)" ]; then
echo "Installing wireguard-tools on CentOS/RHEL"
sudo yum install epel-release -y && sudo yum install kmod-wireguard wireguard-tools -y
elif [ -x "$(command -v dnf)" ]; then
echo "Installing wireguard-tools on Fedora"
sudo dnf install wireguard-tools -y
elif [ -x "$(command -v zypper)" ]; then
echo "Installing wireguard-tools on openSUSE"
sudo zypper install wireguard-tools -y
fi
fi
licenses=(
"0L156IFo-Xlou7509-cL0kj975"
"1E987bRY-KI8167Rp-2cO3I5a0"
"450sxY1P-0927yEPv-538cGDa0"
"82gHq31I-785W3PSO-1rW35X9v"
"BQ91v37L-s296aVH3-5p34vXS6"
"8NP103zQ-u2T68YS3-b3Cy25H9"
"6M10oEq7-HA0h5y92-F42KMv61"
"Pi0n45K6-24ON7A1C-7Q18My2n"
"q36pSa91-240vtF1s-F25r10gZ"
"H9y510oc-PR53o01f-cW176f0y"
"Y4v03C5u-Ad81i3z5-PQ30z45f"
"8V2hX14D-D0SR78w3-2ule45m3"
"7V9p34gb-9hlI5Y64-C35dO6l2"
"MAa9251S-M19y53Hb-05cJ2hS4"
"R7k0j3p4-5B14RK6p-C8F6vw72"
"X16yb7g2-1P3fH56y-x8L7e1D0"
"5hc0L42Z-f15su76j-r0N8ia43"
"8wnc27d1-C5F3d2y9-45eKs3F9"
"05skL7r1-d683ZSB0-7RrT964j"
"iTP2I901-821KdD5h-2840MpQv"
"14b68TNu-v801R2Mi-690t7vYu"
"QPIE0458-1VDX92W5-70e2iNA3"
"53RN8G7d-24J59kYR-08b4v9RU"
"G438E2Ve-uH4sE653-Kn53fJ76"
"21Ig0LE8-47emp59P-N190Vf5z"
)
echo -e "${cyan}######################${reset}"
echo -en "${green}Enter a license (${yellow}Press Enter to use a random license, may not work${green}): ${reset}"
read -r input_license
if [ -z "$input_license" ]; then
license=$(shuf -n 1 -e "${licenses[@]}")
else
license="$input_license"
fi
echo -e "${cyan}######################${reset}"
echo -e "${purple}🔑 Warp License cloner 🔑${reset}"
echo -e "${green}Starting...${reset}"
echo -e "${purple}-------------------------------------${reset}"
while true; do
if command -v wg &>/dev/null; then
private_key=$(wg genkey)
public_key=$(wg pubkey <<<"$private_key")
else
wg_api=$(curl -m5 -sSL https://wg-key.forvps.gq/)
private_key=$(awk 'NR==2 {print $2}' <<<"$wg_api")
public_key=$(awk 'NR==1 {print $2}' <<<"$wg_api")
fi
install_id=$(tr -dc 'A-Za-z0-9' </dev/urandom | head -c 22)
fcm_token="${install_id}:APA91b$(tr -dc 'A-Za-z0-9' </dev/urandom | head -c 134)"
rand=$(tr -dc '0-9' </dev/urandom | head -c 3)
response=$(curl --request POST "https://api.cloudflareclient.com/v0a${rand}/reg" \
--silent \
--location \
--tlsv1.3 \
--header 'User-Agent: okhttp/3.12.1' \
--header "CF-Client-Version: a-6.33-${rand}" \
--header 'Content-Type: application/json' \
--data '{
"key": "'"${public_key}"'",
"install_id": "'"${install_id}"'",
"fcm_token": "'"${fcm_token}"'",
"tos": "'"$(date +"%Y-%m-%dT%H:%M:%S.000Z")"'",
"model": "PC",
"serial_number": "'"${install_id}"'",
"locale": "en_US"
}')
echo "$response" | jq . >warp-config.json
id=$(jq -r '.id' <warp-config.json)
token=$(jq -r '.token' <warp-config.json)
response=$(curl --request PUT "https://api.cloudflareclient.com/v0a${rand}/reg/${id}/account" \
--silent \
--location \
--header 'User-Agent: okhttp/3.12.1' \
--header "CF-Client-Version: a-6.33-${rand}" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${token}" \
--data '{
"license": "'"$license"'"
}')
patch_one_response=$(curl -X PATCH "https://api.cloudflareclient.com/v0a${rand}/reg/${id}/account" \
--silent \
--location \
--header 'User-Agent: okhttp/3.12.1' \
--header "CF-Client-Version: a-6.33-${rand}" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${token}" \
--data '{"active": true}')
get_response=$(curl -X GET "https://api.cloudflareclient.com/v0a${rand}/reg/${id}" \
--silent \
--header "Authorization: Bearer ${token}" \
--header "Accept: application/json" \
--header "Accept-Encoding: gzip" \
--header "Cf-Client-Version: a-6.3-${rand}" \
--header "User-Agent: okhttp/3.12.1" \
--output - | gunzip -c | jq .)
id=$(echo "$get_response" | jq -r '.id')
balance=$(echo "$get_response" | jq -r '.account.quota')
quota=$((balance / 1000000000))
license=$(jq -r '.account.license' <warp-config.json)
response=$(curl --request PUT "https://api.cloudflareclient.com/v0a${rand}/reg/${id}/account" \
--silent \
--location \
--header 'User-Agent: okhttp/3.12.1' \
--header "CF-Client-Version: a-6.33-${rand}" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${token}" \
--data '{
"license": "'"$license"'"
}')
patch_two_response=$(curl -X PATCH "https://api.cloudflareclient.com/v0a${rand}/reg/${id}/account" \
--silent \
--location \
--header 'User-Agent: okhttp/3.12.1' \
--header "CF-Client-Version: a-6.33-${rand}" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${token}" \
--data '{"active": true}' | jq . >/dev/null 2>&1)
if [ "$(echo "$patch_two_response" | jq '.result')" != "null" ]; then
license=$(jq -r '.account.license' <warp-config.json)
echo -e "${green}$license ${reset}| ${cyan}$quota${reset}"
echo -e "${purple}-------------------------------------${reset}"
echo "$license | $quota" >>output.txt
fi
response=$(curl -s -o /dev/null -w "%{http_code}" -X DELETE "https://api.cloudflareclient.com/v0a${rand}/reg/${id}" \
--header "Authorization: Bearer ${token}" \
--header "Accept: application/json" \
--header "Accept-Encoding: gzip" \
--header "Cf-Client-Version: a-6.3-${rand}" \
--header "User-Agent: okhttp/3.12.1")
if [ "$response" -ne 204 ]; then
echo "Error: HTTP status code $response"
fi
rm warp-config.json >/dev/null 2>&1
sleep 2
done
}
if [ "$user_input" -eq 1 ]; then
echo "Fetching IPv4 addresses from install.sh..."
ip_list=$(echo "1" | bash <(curl -fsSL https://raw.githubusercontent.com/Ptechgithub/warp/main/endip/install.sh) | grep -oP '(\d{1,3}\.){3}\d{1,3}:\d+')
clear
echo "Top 10 IPv4 addresses with their latencies:"
display_table_ipv4 "$ip_list"
elif [ "$user_input" -eq 2 ]; then
echo "Fetching IPv6 addresses from install.sh..."
ip_list=$(echo "2" | bash <(curl -fsSL https://raw.githubusercontent.com/Ptechgithub/warp/main/endip/install.sh) | grep -oP '(\[?[a-fA-F\d:]+\]?\:\d+)')
clear
echo "Top 10 IPv6 addresses with their latencies:"
display_table_ipv6 "$ip_list"
elif [ "$user_input" -eq 3 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/V2/main/koland.sh)
elif [ "$user_input" -eq 4 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/Hidify/main/install.sh)
KOLAND
elif [ "$user_input" -eq 5 ]; then
cloner
elif [ "$user_input" -eq 6 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/Hidify/main/inst.sh)
KOL
elif [ "$user_input" -eq 7 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/workercreator/main/install.sh)
elif [ "$user_input" -eq 8 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/workercreator/main/run.sh)
elif [ "$user_input" -eq 9 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/quick-sub/main/run.sh)
elif [ "$user_input" -eq 10 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/wireguard-v2hiddify/main/install.sh)
elif [ "$user_input" -eq 11 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/cfipscanner/main/ipscan.sh)
elif [ "$user_input" -eq 12 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/fastlyipscan/refs/heads/main/ipscan.sh)
elif [ "$user_input" -eq 13 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/gcorescanner/refs/heads/main/gcore.sh)
elif [ "$user_input" -eq 14 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/quick-sub/refs/heads/main/proxy.sh)
elif [ "$user_input" -eq 15 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/serv00/main/koland-serv00.sh)
elif [ "$user_input" -eq 16 ]; then
source <(curl -fsSL https://raw.githubusercontent.com/Kolandone/Usque-Installer/refs/heads/main/usque.sh)
elif [ "$user_input" -eq 99 ]; then
bash <(curl -fsSL https://raw.githubusercontent.com/Kolandone/Selector/main/install.sh)
echo -e "${green}After this, you can run the Selector with ${cyan}kl ${green}command${reset}"
else
echo "Invalid input. Please enter between 1 and 16 or 99"
fi