mirror of https://github.com/dnomd343/ProxyC
Dnomd343
3 years ago
7 changed files with 475 additions and 241 deletions
@ -0,0 +1,234 @@ |
|||||
|
#!/usr/bin/python |
||||
|
# -*- coding:utf-8 -*- |
||||
|
|
||||
|
from ProxyFilter import baseFunc |
||||
|
|
||||
|
udpObfsList = [ |
||||
|
'none', |
||||
|
'srtp', |
||||
|
'utp', |
||||
|
'wechat-video', |
||||
|
'dtls', |
||||
|
'wireguard' |
||||
|
] |
||||
|
|
||||
|
quicMethodList = [ |
||||
|
'none', |
||||
|
'aes-128-gcm', |
||||
|
'chacha20-poly1305', |
||||
|
] |
||||
|
|
||||
|
v2rayStreamRules = { |
||||
|
'tcpObject': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'tcp', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'obfs': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'obfsObject' |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'kcpObject': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'kcp', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'seed': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'obfs': { |
||||
|
'optional': False, |
||||
|
'default': 'none', |
||||
|
'type': str, |
||||
|
'format': lambda s: baseFunc.toStrTidy(s).replace('_', '-'), |
||||
|
'filter': lambda obfs: obfs in udpObfsList, |
||||
|
'errMsg': 'Unknown mKCP obfs method' |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'wsObject': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'ws', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'host': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'path': { |
||||
|
'optional': False, |
||||
|
'default': '/', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'ed': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': int, |
||||
|
'format': baseFunc.toInt, |
||||
|
'filter': lambda ed: ed > 0, |
||||
|
'errMsg': 'Illegal Max-Early-Data length' |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'h2Object': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'h2', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'host': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'path': { |
||||
|
'optional': False, |
||||
|
'default': '/', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'quicObject': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'quic', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'method': { |
||||
|
'optional': False, |
||||
|
'default': 'none', |
||||
|
'type': str, |
||||
|
'format': lambda s: baseFunc.toStrTidy(s).replace('_', '-'), |
||||
|
'filter': lambda method: method in quicMethodList, |
||||
|
'errMsg': 'Unknown QUIC method' |
||||
|
}, |
||||
|
'passwd': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'obfs': { |
||||
|
'optional': False, |
||||
|
'default': 'none', |
||||
|
'type': str, |
||||
|
'format': lambda s: baseFunc.toStrTidy(s).replace('_', '-'), |
||||
|
'filter': lambda obfs: obfs in udpObfsList, |
||||
|
'errMsg': 'Unknown QUIC obfs method' |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': {}, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'grpcObject': { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda streamType: streamType == 'grpc', |
||||
|
'errMsg': 'Unexpected stream type' |
||||
|
}, |
||||
|
'service': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'secure': { |
||||
|
'optional': False, |
||||
|
'default': None, |
||||
|
'allowNone': True, |
||||
|
'type': 'secureObject' |
||||
|
} |
||||
|
}, |
||||
|
'obfsObject': { |
||||
|
'host': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'path': { |
||||
|
'optional': False, |
||||
|
'default': '/', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
} |
||||
|
}, |
||||
|
'secureObject': { |
||||
|
'sni': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'alpn': { |
||||
|
'optional': False, |
||||
|
'default': 'h2,http/1.1', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda alpn: alpn in ['h2', 'http/1.1', 'h2,http/1.1'], |
||||
|
'errMsg': 'Illegal alpn option' |
||||
|
}, |
||||
|
'verify': { |
||||
|
'optional': False, |
||||
|
'default': True, |
||||
|
'type': bool, |
||||
|
'format': baseFunc.toBool |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,94 @@ |
|||||
|
#!/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' |
@ -0,0 +1,100 @@ |
|||||
|
#!/usr/bin/python |
||||
|
# -*- coding:utf-8 -*- |
||||
|
|
||||
|
from ProxyFilter import baseFunc |
||||
|
from ProxyFilter import V2ray |
||||
|
|
||||
|
xrayFlowList = [ |
||||
|
'xtls-origin', |
||||
|
'xtls-direct', |
||||
|
'xtls-splice', |
||||
|
] |
||||
|
|
||||
|
def testFunc(raw): |
||||
|
print(raw) |
||||
|
return False |
||||
|
|
||||
|
xrayStreamRules = V2ray.v2rayStreamRules |
||||
|
xrayStreamRules.pop('secureObject') |
||||
|
xrayStreamRules['tcpObject']['secure']['type'] = ['tlsObject', 'xtlsObject'] |
||||
|
xrayStreamRules['kcpObject']['secure']['type'] = ['tlsObject', 'xtlsObject'] |
||||
|
xrayStreamRules['wsObject']['secure']['type'] = 'tlsObject' |
||||
|
xrayStreamRules['h2Object']['secure']['type'] = 'tlsObject' |
||||
|
xrayStreamRules['quicObject']['secure']['type'] = 'tlsObject' |
||||
|
xrayStreamRules['grpcObject']['secure']['type'] = 'tlsObject' |
||||
|
|
||||
|
xrayStreamRules['tlsObject'] = { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda secureType: secureType == 'tls', |
||||
|
'errMsg': 'Unexpected secure type' |
||||
|
}, |
||||
|
'sni': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'alpn': { |
||||
|
'optional': False, |
||||
|
'default': 'h2,http/1.1', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda alpn: alpn in ['h2', 'http/1.1', 'h2,http/1.1'], |
||||
|
'errMsg': 'Illegal alpn option' |
||||
|
}, |
||||
|
'verify': { |
||||
|
'optional': False, |
||||
|
'default': True, |
||||
|
'type': bool, |
||||
|
'format': baseFunc.toBool |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
xrayStreamRules['xtlsObject'] = { |
||||
|
'type': { |
||||
|
'optional': True, |
||||
|
'type': str, |
||||
|
'indexKey': True, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda secureType: secureType == 'xtls', |
||||
|
'errMsg': 'Unexpected secure type' |
||||
|
}, |
||||
|
'sni': { |
||||
|
'optional': False, |
||||
|
'default': '', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStr |
||||
|
}, |
||||
|
'alpn': { |
||||
|
'optional': False, |
||||
|
'default': 'h2,http/1.1', |
||||
|
'type': str, |
||||
|
'format': baseFunc.toStrTidy, |
||||
|
'filter': lambda alpn: alpn in ['h2', 'http/1.1', 'h2,http/1.1'], |
||||
|
'errMsg': 'Illegal alpn option' |
||||
|
}, |
||||
|
'verify': { |
||||
|
'optional': False, |
||||
|
'default': True, |
||||
|
'type': bool, |
||||
|
'format': baseFunc.toBool |
||||
|
}, |
||||
|
'flow': { |
||||
|
'optional': False, |
||||
|
'default': 'xtls-direct', |
||||
|
'type': str, |
||||
|
'format': lambda s: baseFunc.toStrTidy(s).replace('_', '-'), |
||||
|
'filter': lambda flow: flow in xrayFlowList, |
||||
|
'errMsg': 'Unknown XTLS flow method' |
||||
|
}, |
||||
|
'udp443': { |
||||
|
'optional': False, |
||||
|
'default': False, |
||||
|
'type': bool, |
||||
|
'format': baseFunc.toBool |
||||
|
} |
||||
|
} |
@ -0,0 +1,26 @@ |
|||||
|
#!/usr/bin/python |
||||
|
# -*- coding:utf-8 -*- |
||||
|
|
||||
|
import ProxyFilter as Filter |
||||
|
|
||||
|
info = { |
||||
|
'type': 'vless', |
||||
|
'server': '127.0.0.1', |
||||
|
'port': '12345', |
||||
|
'id': 'dnomd343', |
||||
|
'stream': { |
||||
|
'type': 'grpc', |
||||
|
'service': 'dnomd343', |
||||
|
'secure': { |
||||
|
'type': 'tls', |
||||
|
'sni': '', |
||||
|
'flow': 'xtls-origin', |
||||
|
'udp443': True |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
ret = Filter.filte(info) |
||||
|
|
||||
|
print(ret[0]) |
||||
|
print(ret[1]) |
Loading…
Reference in new issue