-
Notifications
You must be signed in to change notification settings - Fork 126
/
vmessviewer.py
executable file
·141 lines (111 loc) · 3.87 KB
/
vmessviewer.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
#!/usr/bin/env python3
import os
import sys
import re
import json
import base64
import argparse
import binascii
import urllib.parse
vmscheme = "vmess://"
vlessscheme = "vless://"
ssscheme = "ss://"
def parseLink(link):
if link.startswith(ssscheme):
return parseSs(link)
elif link.startswith(vmscheme):
return parseVmess(link)
elif link.startswith(vlessscheme):
return parseVless(link)
else:
print("ERROR: unsupported line: "+link)
return None
def parseVless(link):
if link.startswith(vlessscheme):
linkobj = urllib.parse.urlparse(link)
qs = urllib.parse.parse_qs(linkobj.query)
return dict(net="vless", link=link, port=linkobj.port,
host=qs["host"][0], add=linkobj.hostname,
ps=urllib.parse.unquote(linkobj.fragment))
def parseSs(sslink):
if sslink.startswith(ssscheme):
ps = ""
info = sslink[len(ssscheme):]
if info.rfind("#") > 0:
info, ps = info.split("#", 2)
ps = urllib.parse.unquote(ps)
if info.find("@") < 0:
# old style link
# paddings
blen = len(info)
if blen % 4 > 0:
info += "=" * (4 - blen % 4)
info = base64.b64decode(info).decode()
atidx = info.rfind("@")
method, password = info[:atidx].split(":", 2)
addr, port = info[atidx+1:].split(":", 2)
else:
atidx = info.rfind("@")
addr, port = info[atidx+1:].split(":", 2)
info = info[:atidx]
blen = len(info)
if blen % 4 > 0:
info += "=" * (4 - blen % 4)
info = base64.b64decode(info).decode()
method, password = info.split(":", 2)
return dict(net="shadowsocks", add=addr, port=port, method=method, password=password, ps=ps)
def parseVmess(vmesslink):
if vmesslink.startswith(vmscheme):
bs = vmesslink[len(vmscheme):]
# paddings
blen = len(bs)
if blen % 4 > 0:
bs += "=" * (4 - blen % 4)
vms = base64.b64decode(bs).decode()
return json.loads(vms)
else:
raise Exception("vmess link invalid")
def view_loop(lines):
def msg(x):
if x.get("net", "") == "vless":
return "{ps} / {net} / {add}:{port}".format(**x)
elif x.get("net", "") == "shadowsocks":
return "{ps} / {method} / {add}:{port}".format(**x)
return "{ps} / {net} / {add}:{port} / net:{net}/aid:{aid}/host:{host}/path:{path}/tls:{tls}/type:{type}".format(**x)
cnt = 0
for _, _v in enumerate(lines):
if _v.strip() == "":
continue
_vinfo = parseLink(_v)
if _vinfo is None:
continue
ml = msg(_vinfo)
cnt += 1
print("#[{}] {}".format(cnt, ml))
if not option.hide:
print(_v+"\n")
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="vmess subscribe file editor.")
parser.add_argument('--hide', action='store_true',
help="hide origin vmess, just show info")
parser.add_argument('subs',
nargs='?',
type=argparse.FileType('r'),
default=sys.stdin,
help="a subscribe text file, base64 encoded or not, or a single vmess:// ss:// link")
option = parser.parse_args()
indata = option.subs.read().strip()
try:
if indata.find("vmess") < 0:
b64dec = indata[:]
blen = len(b64dec)
if blen % 4 > 0:
b64dec += "=" * (4 - blen % 4)
lines = base64.b64decode(b64dec).decode().splitlines()
else:
raise binascii.Error
except (binascii.Error, UnicodeDecodeError):
lines = indata.splitlines()
finally:
view_loop(lines)