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.
80 lines
1.7 KiB
80 lines
1.7 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import time
|
|
from Builder import Builder
|
|
from Basis.Logger import logging
|
|
|
|
proxySS = {
|
|
'server': '127.0.0.1',
|
|
'port': 12345,
|
|
'passwd': 'dnomd343',
|
|
'method': 'aes-128-ctr',
|
|
'plugin': None
|
|
}
|
|
|
|
proxySSR = {
|
|
'server': '127.0.0.1',
|
|
'port': 12345,
|
|
'passwd': 'dnomd343',
|
|
'method': 'aes-128-ctr',
|
|
'protocol': 'origin',
|
|
'protocolParam': '',
|
|
'obfs': 'plain',
|
|
'obfsParam': '',
|
|
}
|
|
|
|
proxyVMess = {
|
|
'server': '127.0.0.1',
|
|
'port': 12345,
|
|
'method': 'auto',
|
|
'id': '614d3a56-8a04-4c65-88a2-45896f0bd13c',
|
|
'aid': 0,
|
|
'stream': {
|
|
'type': 'tcp',
|
|
'obfs': None,
|
|
'secure': {
|
|
'sni': '343.re',
|
|
'alpn': None,
|
|
'verify': True,
|
|
},
|
|
}
|
|
}
|
|
|
|
proxyVLESS = {
|
|
'server': '127.0.0.1',
|
|
'port': 12345,
|
|
'method': 'none',
|
|
'id': '614d3a56-8a04-4c65-88a2-45896f0bd13c',
|
|
'aid': 0,
|
|
'stream': {
|
|
'type': 'tcp',
|
|
'obfs': None,
|
|
'secure': {
|
|
'type': 'xtls',
|
|
'sni': '343.re',
|
|
'alpn': None,
|
|
'verify': True,
|
|
'flow': 'xtls-direct',
|
|
'udp443': False
|
|
},
|
|
}
|
|
}
|
|
|
|
# client = Builder('ss', proxySS)
|
|
# client = Builder('ssr', proxySSR)
|
|
# client = Builder('vmess', proxyVMess)
|
|
client = Builder('vless', proxyVLESS)
|
|
|
|
logging.critical(client.id)
|
|
logging.critical(client.proxyType)
|
|
logging.critical(client.proxyInfo)
|
|
logging.critical(client.socksAddr)
|
|
logging.critical(client.socksPort)
|
|
|
|
time.sleep(15)
|
|
logging.critical(client.status())
|
|
|
|
client.destroy()
|
|
logging.critical(client.status())
|
|
logging.critical('Client output:\n' + str(client.output))
|
|
|