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.
39 lines
798 B
39 lines
798 B
import ProxyBuilder as Builder
|
|
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)
|
|
|
|
# Builder.build(ret, '/tmp/ProxyC')
|
|
|
|
data = Checker.proxyTest({
|
|
'check': ['http'],
|
|
'info': ret
|
|
})
|
|
|
|
print(data)
|
|
|