├── Makefile ├── README.md ├── files ├── bin │ ├── arm │ ├── i386 │ ├── mips │ ├── mipsel │ └── x86_64 ├── etc │ ├── adblocklist │ │ ├── adblock │ │ ├── adblockip │ │ ├── adbypass │ │ └── adbypassip │ ├── config │ │ └── koolproxy │ ├── init.d │ │ └── koolproxy │ └── uci-defaults │ │ └── luci-koolproxy ├── lib │ └── upgrade │ │ └── keep.d │ │ └── koolproxy └── usr │ ├── lib │ └── lua │ │ └── luci │ │ ├── controller │ │ └── koolproxy.lua │ │ ├── i18n │ │ └── koolproxy.zh-cn.lmo │ │ ├── model │ │ └── cbi │ │ │ └── koolproxy │ │ │ ├── global.lua │ │ │ └── rss_rule.lua │ │ └── view │ │ └── koolproxy │ │ ├── cadvalue.htm │ │ ├── caupload.htm │ │ ├── dvalue.htm │ │ └── index.htm │ ├── sbin │ └── adblockplus │ └── share │ └── koolproxy │ ├── adblock.conf │ ├── camanagement │ ├── data │ ├── gen_ca.sh │ ├── openssl.cnf │ ├── rules │ │ ├── easylistchina.txt │ │ ├── fanboy.txt │ │ ├── kp.dat │ │ ├── user.txt │ │ └── yhosts.txt │ ├── source.list │ └── user.txt │ ├── dnsmasq.adblock │ ├── koolproxy_ipset.conf │ └── kpupdate ├── koolproxy.txt └── koolproxyupdate.sh /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/README.md -------------------------------------------------------------------------------- /files/bin/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/bin/arm -------------------------------------------------------------------------------- /files/bin/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/bin/i386 -------------------------------------------------------------------------------- /files/bin/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/bin/mips -------------------------------------------------------------------------------- /files/bin/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/bin/mipsel -------------------------------------------------------------------------------- /files/bin/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/bin/x86_64 -------------------------------------------------------------------------------- /files/etc/adblocklist/adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/etc/adblocklist/adblockip: -------------------------------------------------------------------------------- 1 | 61.160.200.252 -------------------------------------------------------------------------------- /files/etc/adblocklist/adbypass: -------------------------------------------------------------------------------- 1 | v2ex.com 2 | -------------------------------------------------------------------------------- /files/etc/adblocklist/adbypassip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/etc/config/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/etc/config/koolproxy -------------------------------------------------------------------------------- /files/etc/init.d/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/etc/init.d/koolproxy -------------------------------------------------------------------------------- /files/etc/uci-defaults/luci-koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/etc/uci-defaults/luci-koolproxy -------------------------------------------------------------------------------- /files/lib/upgrade/keep.d/koolproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/lib/upgrade/keep.d/koolproxy -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/controller/koolproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/controller/koolproxy.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/i18n/koolproxy.zh-cn.lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/i18n/koolproxy.zh-cn.lmo -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/model/cbi/koolproxy/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/model/cbi/koolproxy/global.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/model/cbi/koolproxy/rss_rule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/model/cbi/koolproxy/rss_rule.lua -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/view/koolproxy/cadvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/view/koolproxy/cadvalue.htm -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/view/koolproxy/caupload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/view/koolproxy/caupload.htm -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/view/koolproxy/dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/view/koolproxy/dvalue.htm -------------------------------------------------------------------------------- /files/usr/lib/lua/luci/view/koolproxy/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/lib/lua/luci/view/koolproxy/index.htm -------------------------------------------------------------------------------- /files/usr/sbin/adblockplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/sbin/adblockplus -------------------------------------------------------------------------------- /files/usr/share/koolproxy/adblock.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/usr/share/koolproxy/camanagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/camanagement -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/gen_ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/gen_ca.sh -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/openssl.cnf -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/rules/easylistchina.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/rules/easylistchina.txt -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/rules/fanboy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/rules/fanboy.txt -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/rules/kp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/rules/kp.dat -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/rules/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/rules/user.txt -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/rules/yhosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/rules/yhosts.txt -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/source.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/source.list -------------------------------------------------------------------------------- /files/usr/share/koolproxy/data/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/data/user.txt -------------------------------------------------------------------------------- /files/usr/share/koolproxy/dnsmasq.adblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/dnsmasq.adblock -------------------------------------------------------------------------------- /files/usr/share/koolproxy/koolproxy_ipset.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/koolproxy_ipset.conf -------------------------------------------------------------------------------- /files/usr/share/koolproxy/kpupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/files/usr/share/koolproxy/kpupdate -------------------------------------------------------------------------------- /koolproxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/koolproxy.txt -------------------------------------------------------------------------------- /koolproxyupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jefferymvp/luci-app-koolproxyR/HEAD/koolproxyupdate.sh --------------------------------------------------------------------------------