├── .codacy.yml ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── shellcheck.yml ├── .gitignore ├── .htmlhintrc ├── LICENSE ├── README.md ├── vpnmgr.sh ├── vpnmgr_www.asp ├── vpnmgr_www.css ├── vpnmgr_www.js ├── wevpn_tcp_standard.zip └── wevpn_udp_standard.zip /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.gitignore -------------------------------------------------------------------------------- /.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/.htmlhintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/README.md -------------------------------------------------------------------------------- /vpnmgr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/vpnmgr.sh -------------------------------------------------------------------------------- /vpnmgr_www.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/vpnmgr_www.asp -------------------------------------------------------------------------------- /vpnmgr_www.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/vpnmgr_www.css -------------------------------------------------------------------------------- /vpnmgr_www.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/vpnmgr_www.js -------------------------------------------------------------------------------- /wevpn_tcp_standard.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/wevpn_tcp_standard.zip -------------------------------------------------------------------------------- /wevpn_udp_standard.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackyaz/vpnmgr/HEAD/wevpn_udp_standard.zip --------------------------------------------------------------------------------