├── README.md ├── addons └── v2ray │ ├── activate.sql │ ├── class.php │ ├── config.php │ ├── converter.sql │ ├── data │ ├── activate.sql │ ├── converter.hailuo.sql │ ├── converter.sql │ ├── converter │ │ ├── LegendSock_1.x.sql │ │ ├── ShadowsocksForWHMCS_v0.2.sql │ │ └── ShenQiHaiLuo_1.0.8.sql │ └── init.sql │ ├── hooks.php │ ├── init.sql │ └── v2ray.php └── servers └── v2ray ├── hooks.php ├── languages ├── en_GB.php ├── zh_CN.php └── zh_TW.php ├── lib └── DB.php ├── templates └── LegendSock │ ├── client.tpl │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── javascripts │ ├── chart.js │ ├── clipboard.min.js │ ├── common.js │ ├── custom.js │ ├── layer │ │ ├── layer.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ └── layer.css │ └── qrcode.js │ ├── manager.tpl │ ├── setting.tpl │ ├── stylesheets │ ├── font-awesome.min.css │ └── style.css │ ├── tabfields.tpl │ └── tips │ ├── danger.tpl │ ├── success.tpl │ └── warning.tpl └── v2ray.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/README.md -------------------------------------------------------------------------------- /addons/v2ray/activate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/activate.sql -------------------------------------------------------------------------------- /addons/v2ray/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/class.php -------------------------------------------------------------------------------- /addons/v2ray/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/config.php -------------------------------------------------------------------------------- /addons/v2ray/converter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/converter.sql -------------------------------------------------------------------------------- /addons/v2ray/data/activate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/activate.sql -------------------------------------------------------------------------------- /addons/v2ray/data/converter.hailuo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/converter.hailuo.sql -------------------------------------------------------------------------------- /addons/v2ray/data/converter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/converter.sql -------------------------------------------------------------------------------- /addons/v2ray/data/converter/LegendSock_1.x.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/converter/LegendSock_1.x.sql -------------------------------------------------------------------------------- /addons/v2ray/data/converter/ShadowsocksForWHMCS_v0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/converter/ShadowsocksForWHMCS_v0.2.sql -------------------------------------------------------------------------------- /addons/v2ray/data/converter/ShenQiHaiLuo_1.0.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/converter/ShenQiHaiLuo_1.0.8.sql -------------------------------------------------------------------------------- /addons/v2ray/data/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/data/init.sql -------------------------------------------------------------------------------- /addons/v2ray/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/hooks.php -------------------------------------------------------------------------------- /addons/v2ray/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/init.sql -------------------------------------------------------------------------------- /addons/v2ray/v2ray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/addons/v2ray/v2ray.php -------------------------------------------------------------------------------- /servers/v2ray/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/hooks.php -------------------------------------------------------------------------------- /servers/v2ray/languages/en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/languages/en_GB.php -------------------------------------------------------------------------------- /servers/v2ray/languages/zh_CN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/languages/zh_CN.php -------------------------------------------------------------------------------- /servers/v2ray/languages/zh_TW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/languages/zh_TW.php -------------------------------------------------------------------------------- /servers/v2ray/lib/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/lib/DB.php -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/client.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/client.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/chart.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/clipboard.min.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/common.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/custom.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/layer.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/icon.png -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/layer/skin/layer.css -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/javascripts/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/javascripts/qrcode.js -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/manager.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/manager.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/setting.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/setting.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/stylesheets/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/stylesheets/font-awesome.min.css -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/stylesheets/style.css -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/tabfields.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/tabfields.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/tips/danger.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/tips/danger.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/tips/success.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/tips/success.tpl -------------------------------------------------------------------------------- /servers/v2ray/templates/LegendSock/tips/warning.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/templates/LegendSock/tips/warning.tpl -------------------------------------------------------------------------------- /servers/v2ray/v2ray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepbwork/v2ray-whmcs-plugin/HEAD/servers/v2ray/v2ray.php --------------------------------------------------------------------------------