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.
29 lines
613 B
29 lines
613 B
import ProxyDecoder as Decoder
|
|
import ProxyFilter as Filter
|
|
import Check as Checker
|
|
|
|
info = {
|
|
'type': 'trojan-go',
|
|
'server': '127.0.0.1',
|
|
'port': '12345',
|
|
'passwd': 'dnomd343',
|
|
'sni': 'local.343.re',
|
|
'alpn': 'h2',
|
|
'verify': False,
|
|
'ws': {
|
|
'host': 'local.343.re',
|
|
'path': '/test'
|
|
},
|
|
'ss': {
|
|
'method': 'chacha20-ietf-poly1305',
|
|
'passwd': 'dnomd343'
|
|
},
|
|
'plugin': {
|
|
'type': 'obfs-local',
|
|
'param': 'obfs=http'
|
|
}
|
|
}
|
|
|
|
status, ret = Filter.filte(info, isExtra = True)
|
|
print(status)
|
|
print(ret)
|
|
|