├── LICENSE ├── README.md ├── board_detect ├── dogcom ├── Makefile ├── README └── dogcom.tar.gz ├── iii ├── LICENSE ├── README.md ├── luci-app-netkeeper-interception │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── netkeeper-interception.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── netkeeper-interception.lua │ │ └── view │ │ │ └── netkeeper-interception │ │ │ ├── netkeeper-interception_authreq.htm │ │ │ └── netkeeper-interception_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── netkeeper-interception.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── 40_luci-app-netkeeper-interception │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-netkeeper-interception.json ├── luci-proto-netkeeper │ ├── Makefile │ ├── luasrc │ │ └── model │ │ │ ├── cbi │ │ │ └── admin_network │ │ │ │ └── proto_netkeeper.lua │ │ │ └── network │ │ │ └── proto_netkeeper.lua │ └── po │ │ └── zh-cn │ │ └── netkeeper.po ├── netkeeper-interception │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── config │ │ │ │ └── netkeeper-interception │ │ │ └── netkeeper-interception │ │ │ │ └── pppoe-server-options │ │ ├── netkeeper-interception.init │ │ └── ppp_defs.h │ └── src │ │ ├── Makefile │ │ ├── netkeeper-interception-c.c │ │ └── netkeeper-interception-s.c └── netkeeper │ ├── Makefile │ ├── files │ ├── netkeeper.sh │ └── ppp_defs.h │ └── src │ ├── DaoNet │ └── DaoNet │ │ ├── Makefile │ │ ├── frame.c │ │ ├── frame.h │ │ ├── main.c │ │ ├── netkeeper.c │ │ ├── netkeeper.h │ │ ├── netutils.c │ │ └── netutils.h │ ├── Makefile │ ├── hainan_sxplugin.c │ ├── md5.h │ ├── sxplugin.c │ └── sxplugin4.c ├── luci-app-autoshell ├── Makefile ├── autoshell ├── cbi │ ├── autoshell.lua │ └── autoshell_log.lua ├── controller │ └── autoshell.lua ├── etc │ └── autoshells.sh └── init.d │ ├── autoreboot │ └── autoshell ├── luci-app-autoshell_1.2.3-1_mipsel_24kc.ipk ├── luci-app-chongyoung ├── Makefile ├── luasrc │ ├── controller │ │ └── chongyoung.lua │ └── model │ │ └── cbi │ │ ├── chongyoung.lua │ │ ├── chongyoung2.lua │ │ └── chongyoung_log.lua └── root │ ├── etc │ ├── config │ │ ├── chongyoung │ │ ├── edition │ │ └── userprofile │ └── init.d │ │ └── chongyoung │ └── usr │ └── bin │ └── chongyong ├── luci-app-chongyoung2.0 ├── Makefile ├── luasrc │ ├── controller │ │ └── chongyoung.lua │ └── model │ │ └── cbi │ │ ├── chongyoung.lua │ │ ├── chongyoung2.lua │ │ └── chongyoung_log.lua └── root │ ├── etc │ ├── config │ │ ├── chongyoung │ │ ├── edition │ │ └── userprofile │ └── init.d │ │ └── chongyoung │ └── usr │ └── bin │ ├── 31day │ └── chongyong ├── luci-app-dogcom ├── LICENSE ├── Makefile ├── README.md └── files │ ├── luci │ ├── controller │ │ └── dogcom.lua │ ├── i18n │ │ ├── dogcom_zh-cn.lmo │ │ └── dogcom_zh-cn.po │ ├── model │ │ └── cbi │ │ │ └── dogcom.lua │ └── view │ │ └── dogcom │ │ └── auto_configure.htm │ └── root │ └── etc │ ├── config │ └── dogcom │ ├── init.d │ └── dogcom │ └── uci-defaults │ └── 40_luci-dogcom ├── luci-app-mac ├── Makefile ├── luasrc │ ├── controller │ │ └── brukamen_mac.lua │ └── model │ │ └── cbi │ │ ├── Brukamen_WiFi.lua │ │ ├── autoreboot.lua │ │ ├── brukamen_mac.lua │ │ └── ua2f.lua └── root │ └── etc │ └── config │ ├── autoreboot │ └── brukamen_mac ├── luci-app-shanligong ├── Makefile ├── luasrc │ ├── controller │ │ └── shanligong.lua │ ├── model │ │ └── cbi │ │ │ ├── shanligong.lua │ │ │ └── shanligong_log.lua │ └── view │ │ └── shanligong │ │ ├── shanligong.htm │ │ └── shanligong_button.htm └── root │ ├── etc │ ├── config │ │ └── shanligong │ └── init.d │ │ └── shanligong │ └── usr │ └── bin │ └── shanligong ├── luci-app-suselogin ├── Makefile ├── README.md ├── files │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── suselogin │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 100-suselogin │ │ └── init.d │ │ │ └── suselogin │ │ └── usr │ │ └── lib │ │ └── lua │ │ └── luci │ │ ├── controller │ │ └── suselogin.lua │ │ └── model │ │ └── cbi │ │ ├── suselogin.lua │ │ └── suseloginlog.lua └── login.sh ├── mentohust ├── luci-app-mentohust │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── mentohust.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── mentohust.lua │ │ └── view │ │ │ └── mentohust │ │ │ └── mentohust_status.htm │ ├── po │ │ └── zh-cn │ │ │ └── mentohust.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── mentohust │ │ ├── init.d │ │ │ └── mentohust │ │ └── uci-defaults │ │ │ └── luci-mentohust │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-mentohust.json └── mentohust │ ├── Makefile │ └── src │ ├── Makefile │ ├── dlfunc.c │ ├── dlfunc.h │ ├── md5.c │ ├── md5.h │ ├── mentohust.c │ ├── mycheck.c │ ├── mycheck.h │ ├── myconfig.c │ ├── myconfig.h │ ├── myfunc.c │ ├── myfunc.h │ ├── myini.c │ ├── myini.h │ ├── mystate.c │ ├── mystate.h │ ├── strnormalize.c │ ├── strnormalize.h │ └── types.h ├── 全自动编译脚本 ├── 使用说明.txt └── 懒人自动搭建openwrt编译环境.sh └── 飞young31天加密计算.exe /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/README.md -------------------------------------------------------------------------------- /board_detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/board_detect -------------------------------------------------------------------------------- /dogcom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/dogcom/Makefile -------------------------------------------------------------------------------- /dogcom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/dogcom/README -------------------------------------------------------------------------------- /dogcom/dogcom.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/dogcom/dogcom.tar.gz -------------------------------------------------------------------------------- /iii/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/LICENSE -------------------------------------------------------------------------------- /iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/README.md -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/Makefile -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/luasrc/controller/netkeeper-interception.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/luasrc/controller/netkeeper-interception.lua -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/luasrc/model/cbi/netkeeper-interception.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/luasrc/model/cbi/netkeeper-interception.lua -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/luasrc/view/netkeeper-interception/netkeeper-interception_authreq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/luasrc/view/netkeeper-interception/netkeeper-interception_authreq.htm -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/luasrc/view/netkeeper-interception/netkeeper-interception_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/luasrc/view/netkeeper-interception/netkeeper-interception_status.htm -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/po/zh-cn/netkeeper-interception.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/po/zh-cn/netkeeper-interception.po -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/root/etc/uci-defaults/40_luci-app-netkeeper-interception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/root/etc/uci-defaults/40_luci-app-netkeeper-interception -------------------------------------------------------------------------------- /iii/luci-app-netkeeper-interception/root/usr/share/rpcd/acl.d/luci-app-netkeeper-interception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-app-netkeeper-interception/root/usr/share/rpcd/acl.d/luci-app-netkeeper-interception.json -------------------------------------------------------------------------------- /iii/luci-proto-netkeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-proto-netkeeper/Makefile -------------------------------------------------------------------------------- /iii/luci-proto-netkeeper/luasrc/model/cbi/admin_network/proto_netkeeper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-proto-netkeeper/luasrc/model/cbi/admin_network/proto_netkeeper.lua -------------------------------------------------------------------------------- /iii/luci-proto-netkeeper/luasrc/model/network/proto_netkeeper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-proto-netkeeper/luasrc/model/network/proto_netkeeper.lua -------------------------------------------------------------------------------- /iii/luci-proto-netkeeper/po/zh-cn/netkeeper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/luci-proto-netkeeper/po/zh-cn/netkeeper.po -------------------------------------------------------------------------------- /iii/netkeeper-interception/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/Makefile -------------------------------------------------------------------------------- /iii/netkeeper-interception/files/etc/config/netkeeper-interception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/files/etc/config/netkeeper-interception -------------------------------------------------------------------------------- /iii/netkeeper-interception/files/etc/netkeeper-interception/pppoe-server-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/files/etc/netkeeper-interception/pppoe-server-options -------------------------------------------------------------------------------- /iii/netkeeper-interception/files/netkeeper-interception.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/files/netkeeper-interception.init -------------------------------------------------------------------------------- /iii/netkeeper-interception/files/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/files/ppp_defs.h -------------------------------------------------------------------------------- /iii/netkeeper-interception/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/src/Makefile -------------------------------------------------------------------------------- /iii/netkeeper-interception/src/netkeeper-interception-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/src/netkeeper-interception-c.c -------------------------------------------------------------------------------- /iii/netkeeper-interception/src/netkeeper-interception-s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper-interception/src/netkeeper-interception-s.c -------------------------------------------------------------------------------- /iii/netkeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/Makefile -------------------------------------------------------------------------------- /iii/netkeeper/files/netkeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/files/netkeeper.sh -------------------------------------------------------------------------------- /iii/netkeeper/files/ppp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/files/ppp_defs.h -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/Makefile -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/frame.c -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/frame.h -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/main.c -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/netkeeper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/netkeeper.c -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/netkeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/netkeeper.h -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/netutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/netutils.c -------------------------------------------------------------------------------- /iii/netkeeper/src/DaoNet/DaoNet/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/DaoNet/DaoNet/netutils.h -------------------------------------------------------------------------------- /iii/netkeeper/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/Makefile -------------------------------------------------------------------------------- /iii/netkeeper/src/hainan_sxplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/hainan_sxplugin.c -------------------------------------------------------------------------------- /iii/netkeeper/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/md5.h -------------------------------------------------------------------------------- /iii/netkeeper/src/sxplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/sxplugin.c -------------------------------------------------------------------------------- /iii/netkeeper/src/sxplugin4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/iii/netkeeper/src/sxplugin4.c -------------------------------------------------------------------------------- /luci-app-autoshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/Makefile -------------------------------------------------------------------------------- /luci-app-autoshell/autoshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/autoshell -------------------------------------------------------------------------------- /luci-app-autoshell/cbi/autoshell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/cbi/autoshell.lua -------------------------------------------------------------------------------- /luci-app-autoshell/cbi/autoshell_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/cbi/autoshell_log.lua -------------------------------------------------------------------------------- /luci-app-autoshell/controller/autoshell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/controller/autoshell.lua -------------------------------------------------------------------------------- /luci-app-autoshell/etc/autoshells.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/etc/autoshells.sh -------------------------------------------------------------------------------- /luci-app-autoshell/init.d/autoreboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/init.d/autoreboot -------------------------------------------------------------------------------- /luci-app-autoshell/init.d/autoshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell/init.d/autoshell -------------------------------------------------------------------------------- /luci-app-autoshell_1.2.3-1_mipsel_24kc.ipk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-autoshell_1.2.3-1_mipsel_24kc.ipk -------------------------------------------------------------------------------- /luci-app-chongyoung/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/Makefile -------------------------------------------------------------------------------- /luci-app-chongyoung/luasrc/controller/chongyoung.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/luasrc/controller/chongyoung.lua -------------------------------------------------------------------------------- /luci-app-chongyoung/luasrc/model/cbi/chongyoung.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/luasrc/model/cbi/chongyoung.lua -------------------------------------------------------------------------------- /luci-app-chongyoung/luasrc/model/cbi/chongyoung2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/luasrc/model/cbi/chongyoung2.lua -------------------------------------------------------------------------------- /luci-app-chongyoung/luasrc/model/cbi/chongyoung_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/luasrc/model/cbi/chongyoung_log.lua -------------------------------------------------------------------------------- /luci-app-chongyoung/root/etc/config/chongyoung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/root/etc/config/chongyoung -------------------------------------------------------------------------------- /luci-app-chongyoung/root/etc/config/edition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/root/etc/config/edition -------------------------------------------------------------------------------- /luci-app-chongyoung/root/etc/config/userprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/root/etc/config/userprofile -------------------------------------------------------------------------------- /luci-app-chongyoung/root/etc/init.d/chongyoung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/root/etc/init.d/chongyoung -------------------------------------------------------------------------------- /luci-app-chongyoung/root/usr/bin/chongyong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung/root/usr/bin/chongyong -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/Makefile -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/luasrc/controller/chongyoung.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/luasrc/controller/chongyoung.lua -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung.lua -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung2.lua -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/luasrc/model/cbi/chongyoung_log.lua -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/etc/config/chongyoung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/etc/config/chongyoung -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/etc/config/edition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/etc/config/edition -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/etc/config/userprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/etc/config/userprofile -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/etc/init.d/chongyoung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/etc/init.d/chongyoung -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/usr/bin/31day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/usr/bin/31day -------------------------------------------------------------------------------- /luci-app-chongyoung2.0/root/usr/bin/chongyong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-chongyoung2.0/root/usr/bin/chongyong -------------------------------------------------------------------------------- /luci-app-dogcom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/LICENSE -------------------------------------------------------------------------------- /luci-app-dogcom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/Makefile -------------------------------------------------------------------------------- /luci-app-dogcom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/README.md -------------------------------------------------------------------------------- /luci-app-dogcom/files/luci/controller/dogcom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/luci/controller/dogcom.lua -------------------------------------------------------------------------------- /luci-app-dogcom/files/luci/i18n/dogcom_zh-cn.lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/luci/i18n/dogcom_zh-cn.lmo -------------------------------------------------------------------------------- /luci-app-dogcom/files/luci/i18n/dogcom_zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/luci/i18n/dogcom_zh-cn.po -------------------------------------------------------------------------------- /luci-app-dogcom/files/luci/model/cbi/dogcom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/luci/model/cbi/dogcom.lua -------------------------------------------------------------------------------- /luci-app-dogcom/files/luci/view/dogcom/auto_configure.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/luci/view/dogcom/auto_configure.htm -------------------------------------------------------------------------------- /luci-app-dogcom/files/root/etc/config/dogcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/root/etc/config/dogcom -------------------------------------------------------------------------------- /luci-app-dogcom/files/root/etc/init.d/dogcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/root/etc/init.d/dogcom -------------------------------------------------------------------------------- /luci-app-dogcom/files/root/etc/uci-defaults/40_luci-dogcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-dogcom/files/root/etc/uci-defaults/40_luci-dogcom -------------------------------------------------------------------------------- /luci-app-mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/Makefile -------------------------------------------------------------------------------- /luci-app-mac/luasrc/controller/brukamen_mac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/luasrc/controller/brukamen_mac.lua -------------------------------------------------------------------------------- /luci-app-mac/luasrc/model/cbi/Brukamen_WiFi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/luasrc/model/cbi/Brukamen_WiFi.lua -------------------------------------------------------------------------------- /luci-app-mac/luasrc/model/cbi/autoreboot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/luasrc/model/cbi/autoreboot.lua -------------------------------------------------------------------------------- /luci-app-mac/luasrc/model/cbi/brukamen_mac.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/luasrc/model/cbi/brukamen_mac.lua -------------------------------------------------------------------------------- /luci-app-mac/luasrc/model/cbi/ua2f.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/luasrc/model/cbi/ua2f.lua -------------------------------------------------------------------------------- /luci-app-mac/root/etc/config/autoreboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/root/etc/config/autoreboot -------------------------------------------------------------------------------- /luci-app-mac/root/etc/config/brukamen_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-mac/root/etc/config/brukamen_mac -------------------------------------------------------------------------------- /luci-app-shanligong/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/Makefile -------------------------------------------------------------------------------- /luci-app-shanligong/luasrc/controller/shanligong.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/luasrc/controller/shanligong.lua -------------------------------------------------------------------------------- /luci-app-shanligong/luasrc/model/cbi/shanligong.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/luasrc/model/cbi/shanligong.lua -------------------------------------------------------------------------------- /luci-app-shanligong/luasrc/model/cbi/shanligong_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/luasrc/model/cbi/shanligong_log.lua -------------------------------------------------------------------------------- /luci-app-shanligong/luasrc/view/shanligong/shanligong.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/luasrc/view/shanligong/shanligong.htm -------------------------------------------------------------------------------- /luci-app-shanligong/luasrc/view/shanligong/shanligong_button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/luasrc/view/shanligong/shanligong_button.htm -------------------------------------------------------------------------------- /luci-app-shanligong/root/etc/config/shanligong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/root/etc/config/shanligong -------------------------------------------------------------------------------- /luci-app-shanligong/root/etc/init.d/shanligong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/root/etc/init.d/shanligong -------------------------------------------------------------------------------- /luci-app-shanligong/root/usr/bin/shanligong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-shanligong/root/usr/bin/shanligong -------------------------------------------------------------------------------- /luci-app-suselogin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/Makefile -------------------------------------------------------------------------------- /luci-app-suselogin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/README.md -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/etc/config/suselogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/etc/config/suselogin -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/etc/hotplug.d/iface/100-suselogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/etc/hotplug.d/iface/100-suselogin -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/etc/init.d/suselogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/etc/init.d/suselogin -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/usr/lib/lua/luci/controller/suselogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/usr/lib/lua/luci/controller/suselogin.lua -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/usr/lib/lua/luci/model/cbi/suselogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/usr/lib/lua/luci/model/cbi/suselogin.lua -------------------------------------------------------------------------------- /luci-app-suselogin/files/root/usr/lib/lua/luci/model/cbi/suseloginlog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/files/root/usr/lib/lua/luci/model/cbi/suseloginlog.lua -------------------------------------------------------------------------------- /luci-app-suselogin/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/luci-app-suselogin/login.sh -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/Makefile -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/luasrc/controller/mentohust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/luasrc/controller/mentohust.lua -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/luasrc/model/cbi/mentohust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/luasrc/model/cbi/mentohust.lua -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/luasrc/view/mentohust/mentohust_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/luasrc/view/mentohust/mentohust_status.htm -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/po/zh-cn/mentohust.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/po/zh-cn/mentohust.po -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/root/etc/config/mentohust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/root/etc/config/mentohust -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/root/etc/init.d/mentohust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/root/etc/init.d/mentohust -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/root/etc/uci-defaults/luci-mentohust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/root/etc/uci-defaults/luci-mentohust -------------------------------------------------------------------------------- /mentohust/luci-app-mentohust/root/usr/share/rpcd/acl.d/luci-app-mentohust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/luci-app-mentohust/root/usr/share/rpcd/acl.d/luci-app-mentohust.json -------------------------------------------------------------------------------- /mentohust/mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/Makefile -------------------------------------------------------------------------------- /mentohust/mentohust/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/Makefile -------------------------------------------------------------------------------- /mentohust/mentohust/src/dlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/dlfunc.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/dlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/dlfunc.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/md5.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/md5.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/mentohust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/mentohust.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/mycheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/mycheck.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/mycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/mycheck.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/myconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myconfig.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/myconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myconfig.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/myfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myfunc.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/myfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myfunc.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/myini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myini.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/myini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/myini.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/mystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/mystate.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/mystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/mystate.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/strnormalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/strnormalize.c -------------------------------------------------------------------------------- /mentohust/mentohust/src/strnormalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/strnormalize.h -------------------------------------------------------------------------------- /mentohust/mentohust/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/mentohust/mentohust/src/types.h -------------------------------------------------------------------------------- /全自动编译脚本/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/全自动编译脚本/使用说明.txt -------------------------------------------------------------------------------- /全自动编译脚本/懒人自动搭建openwrt编译环境.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/全自动编译脚本/懒人自动搭建openwrt编译环境.sh -------------------------------------------------------------------------------- /飞young31天加密计算.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucikap/luci-app-brukamen/HEAD/飞young31天加密计算.exe --------------------------------------------------------------------------------