-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathprotonvpn-cli.sh
executable file
·769 lines (660 loc) · 25.6 KB
/
protonvpn-cli.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
#!/usr/bin/env bash
######################################################
# ProtonVPN CLI
# ProtonVPN Command-Line Tool
#
# Made with <3 for Linux + macOS.
###
#Author: Mazin Ahmed <Mazin AT ProtonMail DOT ch>
######################################################
if [[ ("$UID" != 0) && ("$1" != "ip") && ("$1" != "-ip") && \
("$1" != "--ip") && !( -z "$1") && ("$1" != "-h") && \
("$1" != "--help") && ("$1" != "--h") && ("$1" != "-help") && \
("$1" != "help") ]]; then
echo "[!] Error: The program requires root access."
exit 1
fi
function check_requirements() {
if [[ $(which openvpn) == "" ]]; then
echo "[!] Error: openvpn is not installed. Install \`openvpn\` package to continue."
exit 1
fi
if [[ $(which python) == "" ]]; then
echo "[!] Error: python is not installed. Install \`python\` package to continue."
exit 1
fi
if [[ $(which dialog) == "" ]]; then
echo "[!] Error: dialog is not installed. Install \`dialog\` package to continue."
exit 1
fi
if [[ $(which wget) == "" ]]; then
echo "[!] Error: wget is not installed. Install \`wget\` package to continue."
exit 1
fi
if [[ $(which sysctl) == "" ]]; then
echo "[!] Error: sysctl is not installed. Install \`sysctl\` package to continue."
exit 1
fi
if [[ $(which sha512sum) == "" ]]; then
echo "[!] Error: sha512sum is not installed. Install \`sha512sum\` package to continue."
echo "Also check: https://github.com/ProtonVPN/protonvpn-cli/issues/45 for reference."
exit 1
fi
if [[ ! -x "/etc/openvpn/update-resolv-conf" ]]; then
echo "[!] Error: openvpn-resolv-conf is not installed."
read -p "Would you like protonvpn-cli to install openvpn-resolv-conf? (y/n): " "user_confirm"
if [[ "$user_confirm" == "y" ]]; then
install_openvpn_update_resolv_conf
else
exit 1
fi
fi
}
function get_home() {
if [[ -z "$SUDO_USER" ]]; then
CURRENT_USER="$(whoami)"
else
CURRENT_USER="$SUDO_USER"
fi
USER_HOME=$(getent passwd "$CURRENT_USER" 2> /dev/null | cut -d: -f6)
if [[ -z "$USER_HOME" ]]; then
USER_HOME="$HOME"
fi
echo "$USER_HOME"
}
function get_protonvpn_cli_home() {
echo "$(get_home)/.protonvpn-cli"
}
function install_openvpn_update_resolv_conf() {
if [[ ("$UID" != 0) ]]; then
echo "[!] Error: installation requires root access."
exit 1
fi
echo "[*] Installing openvpn-update-resolv-conf"
mkdir -p "/etc/openvpn/"
file_sha512sum="81cf5ed20ec2a2f47f970bb0185fffb3e719181240f2ca3187dbee1f4d102ce63ab048ffee9daa6b68c96ac59d1d86ad4de2b1cfaf77f1b1f1918d143e96a588"
wget "https://raw.githubusercontent.com/ProtonVPN/scripts/master/update-resolv-conf.sh" -O "/etc/openvpn/update-resolv-conf"
if [[ ($? == 0) && ($(sha512sum "/etc/openvpn/update-resolv-conf" | cut -d " " -f1) == "$file_sha512sum") ]]; then
chmod +x "/etc/openvpn/update-resolv-conf"
echo "[*] Done."
else
echo "[!] Error installing openvpn-update-resolv-conf"
exit 1
fi
}
function check_ip() {
counter=0
ip=""
while [[ "$ip" == "" ]]; do
if [[ $counter -gt 0 ]]; then
sleep 2
fi
if [[ $counter -lt 3 ]]; then
ip=$(wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 6 -q -O /dev/stdout 'https://api.protonmail.ch/vpn/location' \
| awk -F'"' '$2 == "IP" { print $4 }')
counter=$((counter+1))
else
ip="Error."
fi
done
echo "$ip"
}
function cli_debug() {
if [[ "$PROTONVPN_CLI_DEBUG" == "true" ]]; then
if [[ "$1" == "stdout" ]]; then
echo "$2" > "/dev/stdout"
elif [[ "$1" == "stderr" ]]; then
echo "$2" > "/dev/stderr"
fi
fi
}
function init_cli() {
if [[ -f "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials" ]]; then
echo -n "[!] user profile for protonvpn-cli has already been initialized. Would you like to start over with a fresh configuration? [Y/N]: "
read "reset_profile"
fi
if [[ ("$reset_profile" == "n" || "$reset_profile" == "N") ]]; then
echo "[*] Profile initialization canceled."
exit 0
fi
rm -rf "$(get_protonvpn_cli_home)/" # Previous profile will be removed/overwritten, if any.
mkdir -p "$(get_protonvpn_cli_home)/"
read -p "Enter OpenVPN username: " "openvpn_username"
read -s -p "Enter OpenVPN password: " "openvpn_password"
echo -e "$openvpn_username\n$openvpn_password" > "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials"
chown "$USER:$(id -gn $USER)" "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials"
chmod 0400 "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials"
echo -e "\n[.] ProtonVPN Plans:\n1) Free\n2) Basic\n3) Plus\n4) Visionary"
protonvpn_tier=""
available_plans=(1 2 3 4)
while [[ $protonvpn_tier == "" ]]; do
read -p "Enter Your ProtonVPN plan ID: " "protonvpn_plan"
case "${available_plans[@]}" in *"$protonvpn_plan"*)
protonvpn_tier=$((protonvpn_plan-1))
;;
4)
protonvpn_tier=$((protonvpn_tier-1)) # Visionary gives access to the same VPNs as Plus.
;;
*)
echo "Invalid input."
;; esac
done
echo -e "$protonvpn_tier" > "$(get_protonvpn_cli_home)/protonvpn_tier"
chown "$USER:$(id -gn $USER)" "$(get_protonvpn_cli_home)/protonvpn_tier"
chmod 0400 "$(get_protonvpn_cli_home)/protonvpn_tier"
chown -R "$USER:$(id -gn $USER)" "$(get_protonvpn_cli_home)/"
chmod -R 0400 "$(get_protonvpn_cli_home)/"
echo "[*] Done."
}
function detect_machine_type() {
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) machine=Linux;;
Darwin*) machine=Mac;;
CYGWIN*) machine=Cygwin;;
MINGW*) machine=MinGw;;
*) machine="UNKNOWN"
esac
echo "$machine"
}
function manage_ipv6() {
# ProtonVPN support for IPv6 coming soon.
errors_counter=0
if [[ ("$1" == "disable") && ( $(detect_machine_type) != "Mac" ) ]]; then
if [ ! -z "$(ip -6 a 2> /dev/null)" ]; then
# Save linklocal address and disable IPv6.
ip -6 a | awk '/^[0-9]/ {DEV=$2}/inet6 fe80/ {print substr(DEV,1,length(DEV)-1) " " $2}' > "$(get_protonvpn_cli_home)/.ipv6_address"
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
sysctl -w net.ipv6.conf.all.disable_ipv6=1 &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
sysctl -w net.ipv6.conf.default.disable_ipv6=1 &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
fi
fi
# Disable IPv6 in macOS.
if [[ ("$1" == "disable") && ( $(detect_machine_type) == "Mac" ) ]]; then
# Get list of services and remove the first line which contains a heading.
ipv6_services="$( networksetup -listallnetworkservices | sed -e '1,1d')"
# Go through the list disabling IPv6 for enabled services, and outputting lines with the names of the services.
echo %s "$ipv6_services" | \
while read ipv6_service ; do
# If first character of a line is an asterisk, the service is disabled, so we skip it.
if [[ "${ipv6_service:0:1}" != "*" ]] ; then
ipv6_status="$( networksetup -getinfo "$ipv6_service" | grep 'IPv6: ' | sed -e 's/IPv6: //')"
if [[ "$ipv6_status" = "Automatic" ]] ; then
networksetup -setv6off "$ipv6_service"
echo "$ipv6_service" >> "$(get_protonvpn_cli_home)/.ipv6_services"
fi
fi
done
fi
if [[ ("$1" == "enable") && ( ! -f "$(get_protonvpn_cli_home)/.ipv6_address" ) && ( $(detect_machine_type) != "Mac" ) ]]; then
echo "[!] This is an error in enabling ipv6 on the machine. Please enable it manually."
fi
if [[ ("$1" == "enable") && ( -f "$(get_protonvpn_cli_home)/.ipv6_address" ) && ( $(detect_machine_type) != "Mac" ) ]]; then
sysctl -w net.ipv6.conf.all.disable_ipv6=0 &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
sysctl -w net.ipv6.conf.default.disable_ipv6=0 &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
# Restore linklocal on default interface.
while read -r DEV ADDR; do
ip addr add "$ADDR" dev "$DEV" &> /dev/null
if [[ ($? != 0) && ($? != 2) ]]; then errors_counter=$((errors_counter+1)) ; fi
done < "$(get_protonvpn_cli_home)/.ipv6_address"
rm -f "$(get_protonvpn_cli_home)/.ipv6_address"
fi
if [[ ("$1" == "enable") && ( ! -f "$(get_protonvpn_cli_home)/.ipv6_services" ) && ( $(detect_machine_type) == "Mac" ) ]]; then
echo "[!] This is an error in enabling IPv6 on the machine. Please enable it manually."
fi
# Restore IPv6 in macOS.
if [[ ("$1" == "enable") && ( -f "$(get_protonvpn_cli_home)/.ipv6_services" ) && ( $(detect_machine_type) == "Mac" ) ]]; then
if [[ $(cat "$(get_protonvpn_cli_home)/.ipv6_services") == "" ]] ; then
return
fi
ipv6_service=$(cat "$(get_protonvpn_cli_home)/.ipv6_services")
while read ipv6_service ; do
networksetup -setv6automatic "$ipv6_service"
done < "$(get_protonvpn_cli_home)/.ipv6_services"
rm -f "$(get_protonvpn_cli_home)/.ipv6_services"
fi
if [[ $errors_counter != 0 ]]; then
echo "[!] There are issues in managing IPv6 in the system. Please test the system for the root cause."
echo "Not being able to manage IPv6 by protonvpn-cli might cause issues in leaking the system's IPv6 address."
fi
}
function modify_dns_resolvconf() {
if [[ ("$1" == "backup_resolvconf") && ( $(detect_machine_type) != "Mac" ) ]]; then
cp "/etc/resolv.conf" "/etc/resolv.conf.protonvpn_backup" # backing-up current resolv.conf
fi
#if [[ ("$1" == "backup_resolvconf") && ( $(detect_machine_type) == "Mac" ) ]]; then
# ToDo: Support for macOS
#fi
if [[ ("$1" == "to_protonvpn_dns") && ( $(detect_machine_type) != "Mac") ]]; then
if [[ $(cat "$(get_protonvpn_cli_home)/protonvpn_tier") == "0" ]]; then
dns_server="10.8.0.1" # free tier dns
else
dns_server="10.8.8.1" # paid tier dns
fi
echo -e "# ProtonVPN DNS - protonvpn-cli\nnameserver $dns_server" > "/etc/resolv.conf"
fi
#if [[ ("$1" == "to_protonvpn_dns") && ( $(detect_machine_type) == "Mac" ) ]]; then
# ToDo: Support for macOS
#fi
if [[ "$1" == "revert_to_backup" && ( $(detect_machine_type) != "Mac" ) ]]; then
cp "/etc/resolv.conf.protonvpn_backup" "/etc/resolv.conf"
fi
#if [[ ("$1" == "revert_to_backup") && ( $(detect_machine_type) == "Mac" ) ]]; then
# ToDo: Support for macOS
#fi
}
function is_openvpn_currently_running() {
if [[ $(pgrep openvpn) == "" ]]; then
echo false
else
echo true
fi
}
function openvpn_disconnect() {
max_checks=3
counter=0
if [[ "$1" != "quiet" ]]; then
echo "Disconnecting..."
fi
while [[ $counter -lt $max_checks ]]; do
pkill -f openvpn
sleep 0.50
if [[ $(is_openvpn_currently_running) == false ]]; then
modify_dns_resolvconf revert_to_backup # Reverting to original resolv.conf
manage_ipv6 enable # Enabling IPv6 on machine.
if [[ "$1" != "quiet" ]]; then
echo "[#] Disconnected."
echo "[#] Current IP: $(check_ip)"
fi
if [[ "$2" != "dont_exit" ]]; then
exit 0
fi
fi
counter=$((counter+1))
done
if [[ "$1" != "quiet" ]]; then
echo "[!] Error disconnecting OpenVPN."
if [[ "$2" != "dont_exit" ]]; then
exit 1
fi
fi
}
function openvpn_connect() {
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] Error: OpenVPN is already running on this machine."
exit 1
fi
modify_dns_resolvconf backup_resolvconf # backuping-up current resolv.conf
manage_ipv6 disable # Disabling IPv6 on machine.
config_id=$1
selected_protocol=$2
if [[ $selected_protocol == "" ]]; then
selected_protocol="udp" # Default protocol
fi
current_ip="$(check_ip)"
if [[ "$PROTONVPN_CLI_LOG" == "true" ]]; then # PROTONVPN_CLI_LOG is retrieved from env.
tempfile=$(mktemp -t protonvpn-cli-logs-XXXXXXXX)
if [[ $? != 0 ]]; then echo "[!] Error creating logging file."; exit 1; fi
echo "[*] CLI logging mode enabled."
echo -e "[*] Saving logs to: $tempfile"
wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 10 -q -O /dev/stdout "https://api.protonmail.ch/vpn/config?Platform=linux&ServerID=$config_id&Protocol=$selected_protocol" \
| openvpn --daemon --config "/dev/stdin" --auth-user-pass "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials" --auth-nocache --auth-retry nointeract --verb 4 --log-append "$tempfile" &> "$tempfile"
else
wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 10 -q -O /dev/stdout "https://api.protonmail.ch/vpn/config?Platform=linux&ServerID=$config_id&Protocol=$selected_protocol" \
| openvpn --daemon --config "/dev/stdin" --auth-user-pass "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials" --auth-nocache --auth-retry nointeract
fi
echo "Connecting..."
max_checks=3
counter=0
while [[ $counter -lt $max_checks ]]; do
sleep 5
new_ip="$(check_ip)"
if [[ ("$current_ip" != "$new_ip") && ("$new_ip" != "Error.") ]]; then
modify_dns_resolvconf to_protonvpn_dns # Use protonvpn DNS server
echo "[$] Connected!"
echo "[#] New IP: $new_ip"
exit 0
fi
counter=$((counter+1))
done
echo "[!] Error connecting to VPN."
openvpn_disconnect quiet
exit 1
}
function update_cli() {
if [[ "$(check_ip)" == "Error." ]]; then
echo "[!] Error: There is an internet connection issue."
exit 1
fi
cli_path="/usr/local/bin/protonvpn-cli"
if [[ ! -f "$cli_path" ]]; then
echo "[!] Error: protonvpn-cli does not seem to be installed."
exit 1
fi
echo "[#] Checking for update."
current_local_hashsum=$(sha512sum "$cli_path" | cut -d " " -f1)
remote_=$(wget --timeout 6 -q -O /dev/stdout 'https://raw.githubusercontent.com/ProtonVPN/protonvpn-cli/master/protonvpn-cli.sh')
if [[ $? != 0 ]]; then
echo "[!] Error: There is an error updating protonvpn-cli."
exit 1
fi
remote_hashsum=$( echo "$remote_" | sha512sum | cut -d ' ' -f1)
if [[ "$current_local_hashsum" == "$remote_hashsum" ]]; then
echo "[*] protonvpn-cli is up-to-date!"
exit 0
else
echo "[#] A new update is available."
echo "[#] Updating..."
wget -q --timeout 20 -O "$cli_path" 'https://raw.githubusercontent.com/ProtonVPN/protonvpn-cli/master/protonvpn-cli.sh'
if [[ $? == 0 ]]; then
echo "[#] protonvpn-cli has been updated successfully."
exit 0
else
echo "[!] Error: There is an error updating protonvpn-cli."
exit 1
fi
fi
}
function install_cli() {
mkdir -p "/usr/bin/" "/usr/local/bin/"
cli="$( cd "$(dirname "$0")" ; pwd -P )/$0"
errors_counter=0
cp "$cli" "/usr/local/bin/protonvpn-cli" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
ln -s -f "/usr/local/bin/protonvpn-cli" "/usr/local/bin/pvpn" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
ln -s -f "/usr/local/bin/protonvpn-cli" "/usr/bin/protonvpn-cli" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
ln -s -f "/usr/local/bin/protonvpn-cli" "/usr/bin/pvpn" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
chown "$USER:$(id -gn $USER)" "/usr/local/bin/protonvpn-cli" "/usr/local/bin/pvpn" "/usr/bin/protonvpn-cli" "/usr/bin/pvpn" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
chmod 0755 "/usr/local/bin/protonvpn-cli" "/usr/local/bin/pvpn" "/usr/bin/protonvpn-cli" "/usr/bin/pvpn" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
if [[ ($errors_counter == 0) || ( $(which protonvpn-cli) != "" ) ]]; then
echo "[*] Done."
else
echo "[!] Error: There was an error in installing protonvpn-cli."
fi
}
function uninstall_cli() {
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] OpenVPN is currently running."
echo "[!] Session will be disconnected."
openvpn_disconnect quiet dont_exit
if [[ $(is_openvpn_currently_running) == true ]]; then # checking if it OpenVPN is still active.
echo "[!] Error disconnecting OpenVPN."
echo "[!] Please disconnect manually and try uninstallation again."
exit 1
else
echo "[#] Disconnected."
fi
fi
errors_counter=0
rm -f "/usr/local/bin/protonvpn-cli" "/usr/local/bin/pvpn" "/usr/bin/protonvpn-cli" "/usr/bin/pvpn" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
rm -rf "$(get_protonvpn_cli_home)/" &> /dev/null
if [[ $? != 0 ]]; then errors_counter=$((errors_counter+1)); fi
if [[ ($errors_counter == 0) || ( $(which protonvpn-cli) == "" ) ]]; then
echo "[*] Done."
else
echo "[!] Error: There was an error in uninstalling protonvpn-cli."
fi
}
function check_if_profile_initialized() {
_=$(cat "$(get_protonvpn_cli_home)/protonvpn_openvpn_credentials" "$(get_protonvpn_cli_home)/protonvpn_tier" &> /dev/null)
if [[ $? != 0 ]]; then
echo "[!] Profile is not initialized."
echo -e "Initialize your profile using: \n $(basename $0) --init"
exit 1
fi
}
function connect_to_fastest_vpn() {
check_if_profile_initialized
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] Error: OpenVPN is already running on this machine."
exit 1
fi
if [[ "$(check_ip)" == "Error." ]]; then
echo "[!] Error: There is an internet connection issue."
exit 1
fi
echo "Fetching ProtonVPN Servers..."
config_id=$(get_fastest_vpn_connection_id)
selected_protocol="udp"
openvpn_connect "$config_id" "$selected_protocol"
}
function connect_to_random_vpn() {
check_if_profile_initialized
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] Error: OpenVPN is already running on this machine."
exit 1
fi
if [[ "$(check_ip)" == "Error." ]]; then
echo "[!] Error: There is an internet connection issue."
exit 1
fi
echo "Fetching ProtonVPN Servers..."
config_id=$(get_random_vpn_connection_id)
available_protocols=("tcp" "udp")
selected_protocol=${available_protocols[$RANDOM % ${#available_protocols[@]}]}
openvpn_connect "$config_id" "$selected_protocol"
}
function connect_to_specific_server() {
check_if_profile_initialized
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] Error: OpenVPN is already running on this machine."
exit 1
fi
if [[ "$(check_ip)" == "Error." ]]; then
echo "[!] Error: There is an internet connection issue."
exit 1
fi
echo "Fetching ProtonVPN Servers..."
server_list=$(get_vpn_config_details | tr ' ' '@')
if [[ "$(echo "$2" | tr '[:upper:]' '[:lower:]')" == "tcp" ]]; then
protocol="tcp"
else
protocol="udp"
fi
for i in $server_list; do
id=$(echo "$i" | cut -d"@" -f1)
name=$(echo "$i" | cut -d"@" -f2)
if [[ "$(echo "$1" | tr '[:upper:]' '[:lower:]')" == "$(echo "$name" | tr '[:upper:]' '[:lower:]')" ]]; then
openvpn_connect "$id" "$protocol"
fi
done
# If not found in $server_list.
echo "[!] Error: Invalid server name, or server not accessible with your plan."
exit 1
}
function connection_to_vpn_via_dialog_menu() {
check_if_profile_initialized
if [[ $(is_openvpn_currently_running) == true ]]; then
echo "[!] Error: OpenVPN is already running on this machine."
exit 1
fi
if [[ "$(check_ip)" == "Error." ]]; then
echo "[!] Error: There is an internet connection issue."
exit 1
fi
available_protocols=("udp" " " "tcp" " ")
IFS=$'\n'
ARRAY=()
echo "Fetching ProtonVPN Servers..."
c2=$(get_vpn_config_details)
counter=0
for i in $c2; do
ID=$(echo "$i" | cut -d " " -f1)
data=$(echo "$i" | tr '@' ' ' | awk '{$1=""; print $0}' | tr ' ' '@')
counter=$((counter+1))
ARRAY+=($counter)
ARRAY+=($data)
done
config_id=$(dialog --clear --ascii-lines --output-fd 1 --title "ProtonVPN-CLI" --column-separator "@" \
--menu "ID - Name - Country - Load - EntryIP - ExitIP - Features" 35 300 "$((${#ARRAY[@]}))" "${ARRAY[@]}" )
clear
if [[ $config_id == "" ]]; then
exit 2
fi
c=1
for i in $c2; do
ID=$(echo "$i" | cut -d " " -f1)
if [[ $c -eq $config_id ]]; then
ID=$(echo "$i" | cut -d " " -f1)
config_id=$ID
break
fi
c=$((c+1))
done
selected_protocol=$(dialog --clear --ascii-lines --output-fd 1 --title "ProtonVPN-CLI" \
--menu "Select Network Protocol" 35 80 2 "${available_protocols[@]}")
clear
if [[ $selected_protocol == "" ]]; then
exit 2
fi
openvpn_connect "$config_id" "$selected_protocol"
}
function get_fastest_vpn_connection_id() {
response_output=$(wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 20 -q -O /dev/stdout "https://api.protonmail.ch/vpn/logicals")
tier=$(cat "$(get_protonvpn_cli_home)/protonvpn_tier")
output=`python <<END
import json, math, random
json_parsed_response = json.loads("""$response_output""")
all_features = {"SECURE_CORE": 1, "TOR": 2, "P2P": 4, "XOR": 8, "IPV6": 16}
excluded_features_on_fastest_connect = ["TOR"]
candidates_1 = []
for _ in json_parsed_response["LogicalServers"]:
server_features_index = int(_["Features"])
server_features = []
for f in all_features.keys():
if (server_features_index & all_features[f]) > 0:
server_features.append(f)
is_excluded = False
for excluded_feature in excluded_features_on_fastest_connect:
if excluded_feature in server_features:
is_excluded = True
if is_excluded is True:
continue
if (_["Tier"] <= int("""$tier""")):
candidates_1.append(_)
candidates_2_size = float(len(candidates_1)) / 100.00 * 5.00
candidates_2 = sorted(candidates_1, key=lambda l: l["Score"])[:int(math.ceil(candidates_2_size))]
random_candidate = random.choice(candidates_2)
vpn_connection_id = random.choice(random_candidate["Servers"])["ID"]
print(vpn_connection_id)
END`
echo "$output"
}
function get_random_vpn_connection_id() {
response_output=$(wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 20 -q -O /dev/stdout "https://api.protonmail.ch/vpn/logicals")
tier=$(cat "$(get_protonvpn_cli_home)/protonvpn_tier")
output=`python <<END
import json, random
json_parsed_response = json.loads("""$response_output""")
output = []
for _ in json_parsed_response["LogicalServers"]:
if (_["Tier"] <= int("""$tier""")):
output.append(_)
print(random.choice(output)["Servers"][0]["ID"])
END`
echo "$output"
}
function get_vpn_config_details() {
response_output=$(wget --header 'x-pm-appversion: Other' --header 'x-pm-apiversion: 3' \
--header 'Accept: application/vnd.protonmail.v1+json' \
--timeout 20 -q -O /dev/stdout "https://api.protonmail.ch/vpn/logicals")
tier=$(cat "$(get_protonvpn_cli_home)/protonvpn_tier")
output=`python <<END
import json, random
json_parsed_response = json.loads("""$response_output""")
output = []
for _ in json_parsed_response["LogicalServers"]:
if (_["Tier"] <= int("""$tier""")):
output.append(_)
all_features = {"SECURE_CORE": 1, "TOR": 2, "P2P": 4, "XOR": 8, "IPV6": 16}
for _ in output:
server_features_index = int(_["Features"])
server_features = []
server_features_output = ""
for f in all_features.keys():
if (server_features_index & all_features[f]) > 0:
server_features.append(f)
if len(server_features) == 0:
server_features_output = "None"
else:
server_features_output = ",".join(server_features)
o = "{} {}@{}@{}@{}@{}@{}".format(_["Servers"][0]["ID"], _["Name"], \
_["EntryCountry"], _["Load"], _["Servers"][0]["EntryIP"], _["Servers"][0]["ExitIP"], \
str(server_features_output))
print(o)
END`
echo "$output"
}
function help_message() {
echo
echo -e "ProtonVPN Command-Line Tool\n"
echo -e "Usage: $(basename $0) [option]\n"
echo "Options:"
echo " --init Initialize ProtonVPN profile on the machine."
echo " -c, --connect Select and connect to a ProtonVPN server."
echo " -c [server-name] [protocol] Connect to a ProtonVPN server by name."
echo " -r, --random-connect Connect to a random ProtonVPN server."
echo " -f, --fastest-connect Connect to the fastest available ProtonVPN server."
echo " -d, --disconnect Disconnect the current session."
echo " --ip Print the current public IP address."
echo " --update Update protonvpn-cli."
echo " --install Install protonvpn-cli."
echo " --uninstall Uninstall protonvpn-cli."
echo " -h, --help Show this help message."
echo
exit 0
}
check_requirements
user_input="$1"
case $user_input in
""|"-h"|"--help"|"--h"|"-help"|"help") help_message
;;
"-d"|"--d"|"-disconnect"|"--disconnect") openvpn_disconnect
;;
"-r"|"--r"|"-random"|"--random"|"-random-connect"|"--random-connect") connect_to_random_vpn
;;
"-f"|"--f"|"-fastest"|"--fastest"|"-fastest-connect"|"--fastest-connect") connect_to_fastest_vpn
;;
"-c"|"-connect"|"--c"|"--connect")
if [[ $# == 1 ]]; then
connection_to_vpn_via_dialog_menu
elif [[ $# > 1 ]]; then
connect_to_specific_server "$2" "$3"
fi
;;
"ip"|"-ip"|"--ip") check_ip
;;
"update"|"-update"|"--update") update_cli
;;
"-init"|"--init") init_cli
;;
"-install"|"--install") install_cli
;;
"-uninstall"|"--uninstall") uninstall_cli
;;
*)
echo "[!] Invalid input: $user_input"
help_message
;;
esac
exit 0