mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.7 KiB
94 lines
2.7 KiB
#!/usr/bin/python
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from ProxyFilter import baseFunc
|
|
from ProxyFilter import Xray
|
|
|
|
vlessMethodList = ['none']
|
|
|
|
vlessFilterRules = {
|
|
'rootObject': {
|
|
'remark': {
|
|
'optional': False,
|
|
'default': '',
|
|
'type': str,
|
|
'format': baseFunc.toStr
|
|
},
|
|
'server': {
|
|
'optional': True,
|
|
'type': str,
|
|
'format': baseFunc.toStrTidy,
|
|
'filter': baseFunc.isHost,
|
|
'errMsg': 'Illegal server address'
|
|
},
|
|
'port': {
|
|
'optional': True,
|
|
'type': int,
|
|
'format': baseFunc.toInt,
|
|
'filter': baseFunc.isPort,
|
|
'errMsg': 'Illegal port number'
|
|
},
|
|
'method': {
|
|
'optional': False,
|
|
'default': 'none',
|
|
'type': str,
|
|
'format': baseFunc.toStrTidy,
|
|
'filter': lambda method: method in vlessMethodList,
|
|
'errMsg': 'Unknown VLESS method'
|
|
},
|
|
'id': {
|
|
'optional': True,
|
|
'type': str,
|
|
'format': baseFunc.toStr
|
|
},
|
|
'stream': {
|
|
'optional': False,
|
|
'default': {
|
|
'type': 'tcp'
|
|
},
|
|
'type': [
|
|
'tcpObject',
|
|
'kcpObject',
|
|
'wsObject',
|
|
'h2Object',
|
|
'quicObject',
|
|
'grpcObject',
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
def vlessFilter(rawInfo: dict, isExtra: bool) -> tuple[bool, str or dict]:
|
|
"""
|
|
VLESS节点合法性检查
|
|
|
|
不合法:
|
|
return False, {reason}
|
|
|
|
合法:
|
|
return True, {
|
|
'type': 'vless',
|
|
...
|
|
}
|
|
"""
|
|
try:
|
|
if not isExtra: # 去除非必要参数
|
|
vlessFilterRules['rootObject'].pop('remark')
|
|
for key, obj in Xray.xrayStreamRules.items(): # xray.stream -> vless
|
|
vlessFilterRules[key] = obj
|
|
status, result = baseFunc.ruleFilter(rawInfo, vlessFilterRules, {
|
|
'type': 'vless'
|
|
})
|
|
if not status: # 节点格式错误
|
|
return False, result
|
|
stream = result['stream']
|
|
if stream['secure'] is not None and stream['secure']['sni'] == '': # 未指定SNI
|
|
if stream['type'] == 'tcp' and stream['obfs'] is not None:
|
|
stream['secure']['sni'] = stream['obfs']['host'].split(',')[0]
|
|
elif stream['type'] == 'ws':
|
|
stream['secure']['sni'] = stream['host']
|
|
elif stream['type'] == 'h2':
|
|
stream['secure']['sni'] = stream['host'].split(',')[0]
|
|
return True, result
|
|
except:
|
|
return False, 'Unknown error'
|
|
|