-
Notifications
You must be signed in to change notification settings - Fork 2
/
vmess.py
191 lines (162 loc) · 6.34 KB
/
vmess.py
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
#!/usr/bin/env python3
import sys
import re
import json
import base64
import argparse
import urllib.request
class UnknowProtocolException(Exception):
pass
def get_host_ip():
print("trying to get host ip address ...")
req = urllib.request.Request(url="https://www.cloudflare.com/cdn-cgi/trace")
with urllib.request.urlopen(req, timeout=5) as response:
body = response.read().decode()
for line in body.split("\n"):
if line.startswith("ip="):
_, _ip = line.split("=", maxsplit=2)
if _ip != "":
print("using host ipaddress: {}, if not intended, use --addr option to specify".format(_ip))
return _ip
return ""
def parse_inbounds(jsonobj):
vmesses = []
if "inbound" in jsonobj:
if jsonobj["inbound"]["protocol"] == "vmess":
try:
vmesses += inbound2vmess(jsonobj["inbound"])
except UnknowProtocolException:
pass
for v in vmesses:
link = "vmess://" + base64.b64encode(json.dumps(v, sort_keys=True).encode('utf-8')).decode()
if option.debug:
msg = lambda x: "{ps} / {net} / {add}:{port} / net:{net}/aid:{aid}/host:{host}/path:{path}/tls:{tls}/type:{type}".format(**x)
print(msg(v))
print(link)
print()
def inbound2vmess(inbound):
vmessobjs = []
_add = host_ip
_type = "none"
_host = ""
_path = ""
_tls = ""
_port = str(inbound["port"])
_net = ""
sset = {}
if "streamSettings" in inbound:
sset = inbound["streamSettings"]
if "network" in sset:
_net = sset["network"]
else:
_net = "tcp"
if option.filter is not None:
for filt in option.filter:
if filt.startswith("!"):
if _net == filt[1:]:
raise UnknowProtocolException()
else:
if _net != filt:
raise UnknowProtocolException()
if _net == "tcp":
if "tcpSettings" in sset and \
"header" in sset["tcpSettings"] and \
"type" in sset["tcpSettings"]["header"]:
_type = sset["tcpSettings"]["header"]["type"]
if "security" in sset:
_tls = sset["security"]
elif _net == "kcp":
if "kcpSettings" in sset and \
"header" in sset["kcpSettings"] and \
"type" in sset["kcpSettings"]["header"]:
_type = sset["kcpSettings"]["header"]["type"]
elif _net == "ws":
if "wsSettings" in sset and \
"headers" in sset["wsSettings"] and \
"Host" in sset["wsSettings"]["headers"]:
_host = sset["wsSettings"]["headers"]["Host"]
if "wsSettings" in sset and "path" in sset["wsSettings"]:
_path = sset["wsSettings"]["path"]
if "security" in sset:
_tls = sset["security"]
elif _net == "h2" or _net == "http":
if "httpSettings" in sset and \
"host" in sset["httpSettings"]:
_host = ",".join(sset["httpSettings"]["host"])
if "httpSettings" in sset and \
"path" in sset["httpSettings"]:
_path = sset["httpSettings"]["path"]
_tls = "tls"
elif _net == "quic":
if "quicSettings" in sset:
_host = sset["quicSettings"]["security"]
_path = sset["quicSettings"]["key"]
_type = sset["quicSettings"]["header"]["type"]
else:
raise UnknowProtocolException()
if "settings" in inbound and "clients" in inbound["settings"]:
for c in inbound["settings"]["clients"]:
vobj = dict(
id=c["id"], aid=str(c["alterId"]),
v="2", tls=_tls, add=_add, port=_port, type=_type, net=_net, path=_path, host=_host, ps="{}/{}".format(_add, _net))
# plain replace
for key, plain in plain_amends.items():
val = vobj.get(key, None)
if val is None:
continue
vobj[key] = plain
# sed-like cmd replace
for key, opt in sed_amends.items():
val = vobj.get(key, None)
if val is None:
continue
vobj[key] = re.sub(opt[0], opt[1], val, opt[2])
vmessobjs.append(vobj)
return vmessobjs
def parse_amendsed(val):
if not val.startswith("s"):
raise ValueError("not sed")
spliter = val[1:2]
_, pattern, repl, tags = sedcmd.split(spliter, maxsplit=4)
return pattern, repl, tags
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="json2vmess convert server side json into vmess links")
parser.add_argument('-a', '--addr',
action="store",
default="",
help="server address. If not specified, program will detect the current IP")
parser.add_argument('-f', '--filter',
action="append",
help="Protocol Filter, useful for inbounds with different protocols. "
"FILTER starts with ! means negative selection. Multiple filter is accepted.")
parser.add_argument('-m', '--amend',
action="append",
help="Amend to the output values, can be use multiple times. eg: -a port:80 -a ps:amended")
parser.add_argument('--debug',
action="store_true",
default=False,
help="debug mode, show vmess obj")
parser.add_argument('json',
type=argparse.FileType('r'),
default=sys.stdin,
help="parse the server side json")
option = parser.parse_args()
host_ip = option.addr
if host_ip == "":
host_ip = get_host_ip()
sed_amends = {}
plain_amends = {}
if option.amend:
for s in option.amend:
key, sedcmd = s.split(":", maxsplit=1)
try:
pattern, repl, tags = parse_amendsed(sedcmd)
except ValueError:
plain_amends[key] = sedcmd
continue
reflag = 0
if "i" in tags:
reflag |= re.IGNORECASE
sed_amends[key] = [pattern, repl, reflag]
jsonobj = json.load(option.json)
parse_inbounds(jsonobj)