├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── Changelog.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_EN.md ├── docker ├── v2ray │ ├── Dockerfile │ └── run.sh └── xray │ ├── Dockerfile │ └── run.sh ├── go.sh ├── package.bat ├── setup.py ├── v2ray ├── v2ray.sh └── v2ray_util ├── __init__.py ├── config_modify ├── __init__.py ├── base.py ├── cdn.py ├── multiple.py ├── ss.py ├── stream.py └── tls.py ├── global_setting ├── __init__.py ├── ban_bt.py ├── calcul_traffic.sh ├── clean_iptables.sh ├── clean_traffic.sh ├── iptables_ctr.py ├── stats_ctr.py └── update_timer.py ├── json_template ├── dyn_port.json ├── http.json ├── http2.json ├── kcp.json ├── mtproto.json ├── quic.json ├── reality.json ├── server.json ├── socks.json ├── ss.json ├── stats_settings.json ├── tcp.json ├── vless.json └── ws.json ├── locale_i18n ├── en_US │ └── LC_MESSAGES │ │ ├── lang.mo │ │ ├── lang.po │ │ └── msgfmt.py └── zh_CH │ └── LC_MESSAGES │ ├── lang.mo │ ├── lang.po │ └── msgfmt.py ├── main.py └── util_core ├── __init__.py ├── config.py ├── group.py ├── loader.py ├── profile.py ├── selector.py ├── trans.py ├── util.cfg ├── utils.py ├── v2ray.py └── writer.py /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/README_EN.md -------------------------------------------------------------------------------- /docker/v2ray/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/docker/v2ray/Dockerfile -------------------------------------------------------------------------------- /docker/v2ray/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/docker/v2ray/run.sh -------------------------------------------------------------------------------- /docker/xray/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/docker/xray/Dockerfile -------------------------------------------------------------------------------- /docker/xray/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/docker/xray/run.sh -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/go.sh -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/package.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/setup.py -------------------------------------------------------------------------------- /v2ray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray -------------------------------------------------------------------------------- /v2ray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray.sh -------------------------------------------------------------------------------- /v2ray_util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/__init__.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/__init__.py: -------------------------------------------------------------------------------- 1 | from ..util_core.trans import _ -------------------------------------------------------------------------------- /v2ray_util/config_modify/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/base.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/cdn.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/multiple.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/ss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/ss.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/stream.py -------------------------------------------------------------------------------- /v2ray_util/config_modify/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/config_modify/tls.py -------------------------------------------------------------------------------- /v2ray_util/global_setting/__init__.py: -------------------------------------------------------------------------------- 1 | from ..util_core.trans import _ -------------------------------------------------------------------------------- /v2ray_util/global_setting/ban_bt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/ban_bt.py -------------------------------------------------------------------------------- /v2ray_util/global_setting/calcul_traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/calcul_traffic.sh -------------------------------------------------------------------------------- /v2ray_util/global_setting/clean_iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/clean_iptables.sh -------------------------------------------------------------------------------- /v2ray_util/global_setting/clean_traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/clean_traffic.sh -------------------------------------------------------------------------------- /v2ray_util/global_setting/iptables_ctr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/iptables_ctr.py -------------------------------------------------------------------------------- /v2ray_util/global_setting/stats_ctr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/stats_ctr.py -------------------------------------------------------------------------------- /v2ray_util/global_setting/update_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/global_setting/update_timer.py -------------------------------------------------------------------------------- /v2ray_util/json_template/dyn_port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/dyn_port.json -------------------------------------------------------------------------------- /v2ray_util/json_template/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/http.json -------------------------------------------------------------------------------- /v2ray_util/json_template/http2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/http2.json -------------------------------------------------------------------------------- /v2ray_util/json_template/kcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/kcp.json -------------------------------------------------------------------------------- /v2ray_util/json_template/mtproto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/mtproto.json -------------------------------------------------------------------------------- /v2ray_util/json_template/quic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/quic.json -------------------------------------------------------------------------------- /v2ray_util/json_template/reality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/reality.json -------------------------------------------------------------------------------- /v2ray_util/json_template/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/server.json -------------------------------------------------------------------------------- /v2ray_util/json_template/socks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/socks.json -------------------------------------------------------------------------------- /v2ray_util/json_template/ss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/ss.json -------------------------------------------------------------------------------- /v2ray_util/json_template/stats_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/stats_settings.json -------------------------------------------------------------------------------- /v2ray_util/json_template/tcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/tcp.json -------------------------------------------------------------------------------- /v2ray_util/json_template/vless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/vless.json -------------------------------------------------------------------------------- /v2ray_util/json_template/ws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/json_template/ws.json -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/en_US/LC_MESSAGES/lang.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/en_US/LC_MESSAGES/lang.mo -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/en_US/LC_MESSAGES/lang.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/en_US/LC_MESSAGES/lang.po -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/en_US/LC_MESSAGES/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/en_US/LC_MESSAGES/msgfmt.py -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/lang.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/lang.mo -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/lang.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/lang.po -------------------------------------------------------------------------------- /v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/locale_i18n/zh_CH/LC_MESSAGES/msgfmt.py -------------------------------------------------------------------------------- /v2ray_util/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/main.py -------------------------------------------------------------------------------- /v2ray_util/util_core/__init__.py: -------------------------------------------------------------------------------- 1 | from .trans import _ -------------------------------------------------------------------------------- /v2ray_util/util_core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/config.py -------------------------------------------------------------------------------- /v2ray_util/util_core/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/group.py -------------------------------------------------------------------------------- /v2ray_util/util_core/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/loader.py -------------------------------------------------------------------------------- /v2ray_util/util_core/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/profile.py -------------------------------------------------------------------------------- /v2ray_util/util_core/selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/selector.py -------------------------------------------------------------------------------- /v2ray_util/util_core/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/trans.py -------------------------------------------------------------------------------- /v2ray_util/util_core/util.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/util.cfg -------------------------------------------------------------------------------- /v2ray_util/util_core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/utils.py -------------------------------------------------------------------------------- /v2ray_util/util_core/v2ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/v2ray.py -------------------------------------------------------------------------------- /v2ray_util/util_core/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jrohy/multi-v2ray/HEAD/v2ray_util/util_core/writer.py --------------------------------------------------------------------------------