-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathwarp_reg.sh
More file actions
118 lines (107 loc) · 4.73 KB
/
warp_reg.sh
File metadata and controls
118 lines (107 loc) · 4.73 KB
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
#!/usr/bin/bash
ERROR="\e[1;31m"
WARN="\e[93m"
END="\e[0m"
package_manager() {
if [[ "$(type -P apt)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='apt -y --no-install-recommends install'
PACKAGE_MANAGEMENT_REMOVE='apt purge'
package_provide_tput='ncurses-bin'
elif [[ "$(type -P dnf)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='dnf -y install'
PACKAGE_MANAGEMENT_REMOVE='dnf remove'
package_provide_tput='ncurses'
elif [[ "$(type -P yum)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='yum -y install'
PACKAGE_MANAGEMENT_REMOVE='yum remove'
package_provide_tput='ncurses'
elif [[ "$(type -P zypper)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='zypper install -y --no-recommends'
PACKAGE_MANAGEMENT_REMOVE='zypper remove'
package_provide_tput='ncurses-utils'
elif [[ "$(type -P pacman)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='pacman -Syu --noconfirm'
PACKAGE_MANAGEMENT_REMOVE='pacman -Rsn'
package_provide_tput='ncurses'
elif [[ "$(type -P emerge)" ]]; then
PACKAGE_MANAGEMENT_INSTALL='emerge -qv'
PACKAGE_MANAGEMENT_REMOVE='emerge -Cv'
package_provide_tput='ncurses'
else
echo -e "${ERROR}ERROR:${END} The script does not support the package manager in this operating system."
exit 1
fi
}
install_software() {
package_name="$1"
file_to_detect="$2"
type -P "$file_to_detect" > /dev/null 2>&1 && return || echo -e "${WARN}WARN:${END} $package_name not installed, installing." && sleep 1
if ${PACKAGE_MANAGEMENT_INSTALL} "$package_name"; then
echo "INFO: $package_name is installed."
else
echo -e "${ERROR}ERROR:${END} Installation of $package_name failed, please check your network."
exit 1
fi
}
reg() {
set -e
keypair=$(openssl genpkey -algorithm X25519|openssl pkey -text -noout)
private_key=$(echo "$keypair" | awk '/priv:/{flag=1; next} /pub:/{flag=0} flag' | tr -d '[:space:]' | xxd -r -p | base64)
public_key=$(echo "$keypair" | awk '/pub:/{flag=1} flag' | tr -d '[:space:]' | xxd -r -p | base64)
curl -X POST 'https://api.cloudflareclient.com/v0a2158/reg' -sL --tlsv1.3 \
-H 'CF-Client-Version: a-7.21-0721' -H 'Content-Type: application/json' \
-d \
'{
"key":"'${public_key}'",
"tos":"'$(date +"%Y-%m-%dT%H:%M:%S.000Z")'"
}' \
| python3 -m json.tool | sed "/\"account_type\"/i\ \"private_key\": \"$private_key\","
}
reserved() {
set -e
reserved_str=$(echo "$warp_info" | grep 'client_id' | cut -d\" -f4)
reserved_hex=$(echo "$reserved_str" | base64 -d | xxd -p)
reserved_dec=$(echo "$reserved_hex" | fold -w2 | while read HEX; do printf '%d ' "0x${HEX}"; done | awk '{print "["$1", "$2", "$3"]"}')
echo -e "{\n \"reserved_dec\": $reserved_dec,"
echo -e " \"reserved_hex\": \"0x$reserved_hex\","
echo -e " \"reserved_str\": \"$reserved_str\"\n}"
}
format() {
local config="{"
config+=$'\n "endpoint":{'
config+="$(echo "$warp_info" | grep -P "(v4|v6)" | grep -vP "(\"v4\": \"172.16.0.2\"|\"v6\": \"2)" | sed "s/ //g" | sed 's/:"/: "/g' | sed 's/^"/ "/g' | sed 's/:0",$/",/g')"
config+=$'\n },'
config+="$(echo "$warp_reserved" | grep -P "reserved" | sed "s/ //g" | sed 's/:"/: "/g' | sed 's/:\[/: \[/g' | sed 's/\([0-9]\+\),\([0-9]\+\),\([0-9]\+\)/\1, \2, \3/' | sed 's/^"/ "/g' | sed 's/"$/",/g')"
config+="$(echo "$warp_info" | grep -P "(private_key|public_key|\"v4\": \"172.16.0.2\"|\"v6\": \"2)" | sed "s/ //g" | sed 's/:"/: "/g' | sed 's/^"/ "/g')"
config+=$'\n}'
# 输出完整配置echo "$config"
# 提取并设置环境变量
export WARP_IPV4=$(echo "$config" | grep -oP '"v4": "\K[0-9.]+(?=")' | head -1)
export WARP_IPV6=$(echo "$config" | grep -oP '"v6": "\K[0-9a-f:]+(?=")' | tail -1)
export WARP_Reserved=$(echo "$config" | grep -oP '"reserved_dec": \K\[[0-9, ]+\]' | tr -d '[]')
export WARP_private=$(echo "$config" | grep -oP '"private_key": "\K[^"]+')
# 输出环境变量设置信息
echo "WARP_IPV4=$WARP_IPV4"
echo "WARP_IPV6=$WARP_IPV6"
echo "WARP_Reserved=$WARP_Reserved"
echo "WARP_private=$WARP_private"
}
main() {
package_manager
install_software "xxd" "xxd"
install_software "python3" "python3"
warp_info=$(reg) ; exit_code=$?
if [[ $exit_code != 0 ]];then
echo "$warp_info"
echo -e "${ERROR}ERROR:${END} \"reg\" function returned with $exit_code, exiting."
exit $exit_code
fi
warp_reserved=$(reserved) ; exit_code=$?
if [[ $exit_code != 0 ]];then
echo "$warp_reserved"
echo -e "${ERROR}ERROR:${END} \"reserved\" function returned with $exit_code, exiting."
exit $exit_code
fi
format
}
main "$@"