├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── post-release.yml ├── .gitignore ├── 100-ipset.sh ├── 100-redirect.sh ├── 100-unblock-vpn-v4.sh ├── 100-unblock-vpn.sh ├── CHANGELOG.md ├── LICENSE ├── README.md ├── S99unblock ├── add100redirect.sh ├── add_unblock_dnsmasq.sh ├── add_unblock_ipset.sh ├── bot.py ├── bot_config.py ├── bypass_keenetic.jpg ├── crontab ├── dnsmasq.conf ├── info.md ├── keys.md ├── script.sh ├── shadowsocks.json ├── socialnet.txt ├── torrc ├── trojanconfig.json ├── unblock.dnsmasq ├── unblock_ipset.sh ├── unblock_update.sh ├── unblocksh.txt ├── unblocktor.txt ├── version.md └── vmessconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/.github/workflows/post-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/.gitignore -------------------------------------------------------------------------------- /100-ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/100-ipset.sh -------------------------------------------------------------------------------- /100-redirect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/100-redirect.sh -------------------------------------------------------------------------------- /100-unblock-vpn-v4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/100-unblock-vpn-v4.sh -------------------------------------------------------------------------------- /100-unblock-vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/100-unblock-vpn.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/README.md -------------------------------------------------------------------------------- /S99unblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/S99unblock -------------------------------------------------------------------------------- /add100redirect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/add100redirect.sh -------------------------------------------------------------------------------- /add_unblock_dnsmasq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/add_unblock_dnsmasq.sh -------------------------------------------------------------------------------- /add_unblock_ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/add_unblock_ipset.sh -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/bot.py -------------------------------------------------------------------------------- /bot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/bot_config.py -------------------------------------------------------------------------------- /bypass_keenetic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/bypass_keenetic.jpg -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/crontab -------------------------------------------------------------------------------- /dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/dnsmasq.conf -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/info.md -------------------------------------------------------------------------------- /keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/keys.md -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/script.sh -------------------------------------------------------------------------------- /shadowsocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/shadowsocks.json -------------------------------------------------------------------------------- /socialnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/socialnet.txt -------------------------------------------------------------------------------- /torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/torrc -------------------------------------------------------------------------------- /trojanconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/trojanconfig.json -------------------------------------------------------------------------------- /unblock.dnsmasq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/unblock.dnsmasq -------------------------------------------------------------------------------- /unblock_ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/unblock_ipset.sh -------------------------------------------------------------------------------- /unblock_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/unblock_update.sh -------------------------------------------------------------------------------- /unblocksh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/unblocksh.txt -------------------------------------------------------------------------------- /unblocktor.txt: -------------------------------------------------------------------------------- 1 | myip.ru 2 | check.torproject.org 3 | onion 4 | -------------------------------------------------------------------------------- /version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/version.md -------------------------------------------------------------------------------- /vmessconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenetic-dev/bypass_keenetic-fork/HEAD/vmessconfig.json --------------------------------------------------------------------------------