├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── LICENSE ├── README.md ├── luci-app-zapret ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── zapret │ │ ├── dmnlog.js │ │ ├── service.js │ │ ├── settings.js │ │ └── tools.js └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-zapret.json │ └── rpcd │ └── acl.d │ └── luci-app-zapret.json ├── zapret-ip2net └── Makefile ├── zapret-mdig └── Makefile ├── zapret-tpws └── Makefile └── zapret ├── Makefile ├── comfunc.sh ├── config.default ├── def-cfg.sh ├── init.d.sh ├── ipset ├── zapret-hosts-google.txt ├── zapret-hosts-user-exclude.txt ├── zapret-hosts-user.txt └── zapret-ip-exclude.txt ├── patches └── 0001-Add-support-log-file-for-each-daemons.patch ├── renew-cfg.sh ├── restore-def-cfg.sh ├── sync_config.sh └── uci-def-cfg.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /luci-app-zapret/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/Makefile -------------------------------------------------------------------------------- /luci-app-zapret/htdocs/luci-static/resources/view/zapret/dmnlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/htdocs/luci-static/resources/view/zapret/dmnlog.js -------------------------------------------------------------------------------- /luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js -------------------------------------------------------------------------------- /luci-app-zapret/htdocs/luci-static/resources/view/zapret/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/htdocs/luci-static/resources/view/zapret/settings.js -------------------------------------------------------------------------------- /luci-app-zapret/htdocs/luci-static/resources/view/zapret/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/htdocs/luci-static/resources/view/zapret/tools.js -------------------------------------------------------------------------------- /luci-app-zapret/root/usr/share/luci/menu.d/luci-app-zapret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/root/usr/share/luci/menu.d/luci-app-zapret.json -------------------------------------------------------------------------------- /luci-app-zapret/root/usr/share/rpcd/acl.d/luci-app-zapret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/luci-app-zapret/root/usr/share/rpcd/acl.d/luci-app-zapret.json -------------------------------------------------------------------------------- /zapret-ip2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret-ip2net/Makefile -------------------------------------------------------------------------------- /zapret-mdig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret-mdig/Makefile -------------------------------------------------------------------------------- /zapret-tpws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret-tpws/Makefile -------------------------------------------------------------------------------- /zapret/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/Makefile -------------------------------------------------------------------------------- /zapret/comfunc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/comfunc.sh -------------------------------------------------------------------------------- /zapret/config.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/config.default -------------------------------------------------------------------------------- /zapret/def-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/def-cfg.sh -------------------------------------------------------------------------------- /zapret/init.d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/init.d.sh -------------------------------------------------------------------------------- /zapret/ipset/zapret-hosts-google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/ipset/zapret-hosts-google.txt -------------------------------------------------------------------------------- /zapret/ipset/zapret-hosts-user-exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/ipset/zapret-hosts-user-exclude.txt -------------------------------------------------------------------------------- /zapret/ipset/zapret-hosts-user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/ipset/zapret-hosts-user.txt -------------------------------------------------------------------------------- /zapret/ipset/zapret-ip-exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/ipset/zapret-ip-exclude.txt -------------------------------------------------------------------------------- /zapret/patches/0001-Add-support-log-file-for-each-daemons.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/patches/0001-Add-support-log-file-for-each-daemons.patch -------------------------------------------------------------------------------- /zapret/renew-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/renew-cfg.sh -------------------------------------------------------------------------------- /zapret/restore-def-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/restore-def-cfg.sh -------------------------------------------------------------------------------- /zapret/sync_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/sync_config.sh -------------------------------------------------------------------------------- /zapret/uci-def-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remittor/zapret-openwrt/HEAD/zapret/uci-def-cfg.sh --------------------------------------------------------------------------------