├── .editorConfig ├── .env ├── .gitignore ├── app ├── amnezia.py ├── backup.php ├── bot.php ├── calc.php ├── checkwebhook.php ├── cron.php ├── debug.php ├── i18n.php ├── index.php ├── init.php ├── iplimit.php ├── qr │ └── .gitkeep ├── service.php ├── timezone.php ├── updatepac.php ├── webapp │ ├── donate.html │ ├── img │ │ └── jsoneditor-icons.svg │ ├── index.html │ ├── jquery-3.7.1.min.js │ ├── jsoneditor.min.css │ ├── jsoneditor.min.js │ └── toncoin.png └── zapretlists │ └── .gitkeep ├── certs └── .gitkeep ├── config ├── .profile ├── AdGuardHome.yaml ├── Caddyfile ├── Makefile ├── clash.json ├── clients.json ├── clients1.json ├── deny ├── hwid.json ├── include.conf ├── mtprotodomain ├── mtprotosecret ├── nginx.conf ├── nginx_default.conf ├── ocserv.conf ├── ocserv.passwd ├── pac.json ├── php.ini ├── sing.json ├── sshd_config ├── sslocal.json ├── ssserver.json ├── unit.json ├── upstream.conf ├── v2ray.json ├── wg0.conf ├── wg1.conf └── xray.json ├── docker-compose.yml ├── dockerfile ├── adguard.dockerfile ├── iodine.dockerfile ├── naive.dockerfile ├── nginx.dockerfile ├── ocserv.dockerfile ├── php.dockerfile ├── shadowsocks.dockerfile ├── telegram.dockerfile ├── warp.dockerfile ├── wireguard.dockerfile └── xray.dockerfile ├── logs └── .gitkeep ├── makefile ├── mirror └── start_socat.sh ├── readme.md ├── scripts ├── block_exchange.sh ├── block_torrent.sh ├── check_file.sh ├── init.sh ├── install_as_service.sh ├── reset_wg.sh ├── start_ad.sh ├── start_io.sh ├── start_ng.sh ├── start_np.sh ├── start_oc.sh ├── start_php.sh ├── start_proxy.sh ├── start_service.sh ├── start_ss.sh ├── start_tg.sh ├── start_upstream.sh ├── start_wg.sh ├── start_wp.sh ├── start_xray.sh └── vpnbot.service ├── singbox_windows ├── singbox.zip └── winsw3.xml ├── ssh └── .gitkeep ├── unit.rest ├── update └── update.sh └── version /.editorConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/.editorConfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/.gitignore -------------------------------------------------------------------------------- /app/amnezia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/amnezia.py -------------------------------------------------------------------------------- /app/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/backup.php -------------------------------------------------------------------------------- /app/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/bot.php -------------------------------------------------------------------------------- /app/calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/calc.php -------------------------------------------------------------------------------- /app/checkwebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/checkwebhook.php -------------------------------------------------------------------------------- /app/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/cron.php -------------------------------------------------------------------------------- /app/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/debug.php -------------------------------------------------------------------------------- /app/i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/i18n.php -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/index.php -------------------------------------------------------------------------------- /app/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/init.php -------------------------------------------------------------------------------- /app/iplimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/iplimit.php -------------------------------------------------------------------------------- /app/qr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercurykd/vpnbot/HEAD/app/service.php -------------------------------------------------------------------------------- /app/timezone.php: -------------------------------------------------------------------------------- 1 |