├── .github └── workflows │ └── build-packages.yml ├── README.md ├── chinadns-ng └── Makefile ├── daed ├── Makefile ├── files │ ├── daed.config │ └── daed.init └── patches_arm │ ├── 0002-feat-Add-vmlinux-arm.h.patch │ └── 0003-drop-kprobe-skb-5.patch ├── dns2socks-rust └── Makefile ├── dns2socks └── Makefile ├── dns2tcp └── Makefile ├── geoview └── Makefile ├── hysteria └── Makefile ├── ipt2socks └── Makefile ├── lua-neturl ├── Makefile └── patches │ └── 010-userinfo-regex.patch ├── luci-app-daed ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── daed │ │ ├── config.js │ │ └── log.js ├── po │ ├── templates │ │ └── daed.pot │ └── zh_Hans │ │ └── daed.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-daed.json │ └── rpcd │ └── acl.d │ └── luci-app-daed.json ├── luci-app-homeproxy ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── homeproxy.js │ │ └── view │ │ └── homeproxy │ │ ├── client.js │ │ ├── node.js │ │ ├── server.js │ │ └── status.js ├── po │ ├── templates │ │ └── homeproxy.pot │ └── zh_Hans │ │ └── homeproxy.po └── root │ ├── etc │ ├── capabilities │ │ └── homeproxy.json │ ├── config │ │ └── homeproxy │ ├── homeproxy │ │ ├── resources │ │ │ ├── china_ip4.txt │ │ │ ├── china_ip4.ver │ │ │ ├── china_ip6.txt │ │ │ ├── china_ip6.ver │ │ │ ├── china_list.txt │ │ │ ├── china_list.ver │ │ │ ├── gfw_list.txt │ │ │ └── gfw_list.ver │ │ └── scripts │ │ │ ├── clean_log.sh │ │ │ ├── firewall_post.ut │ │ │ ├── firewall_pre.uc │ │ │ ├── generate_client.uc │ │ │ ├── generate_server.uc │ │ │ ├── homeproxy.uc │ │ │ ├── migrate_config.uc │ │ │ ├── update_crond.sh │ │ │ ├── update_resources.sh │ │ │ └── update_subscriptions.uc │ ├── init.d │ │ └── homeproxy │ └── uci-defaults │ │ ├── luci-homeproxy │ │ └── luci-homeproxy-migration │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-homeproxy.json │ └── rpcd │ ├── acl.d │ └── luci-app-homeproxy.json │ └── ucode │ └── luci.homeproxy ├── luci-app-nikki ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ ├── tools │ │ └── nikki.js │ │ └── view │ │ └── nikki │ │ ├── app.js │ │ ├── editor.js │ │ ├── log.js │ │ ├── mixin.js │ │ ├── profile.js │ │ └── proxy.js ├── po │ ├── templates │ │ └── nikki.pot │ ├── zh_Hans │ │ └── nikki.po │ └── zh_Hant │ │ └── nikki.po └── root │ └── usr │ └── share │ ├── luci │ └── menu.d │ │ └── luci-app-nikki.json │ └── rpcd │ ├── acl.d │ └── luci-app-nikki.json │ └── ucode │ └── luci.nikki ├── luci-app-openclash ├── Makefile ├── luasrc │ ├── controller │ │ └── openclash.lua │ ├── model │ │ └── cbi │ │ │ └── openclash │ │ │ ├── client.lua │ │ │ ├── config-overwrite.lua │ │ │ ├── config-subscribe-edit.lua │ │ │ ├── config-subscribe.lua │ │ │ ├── config.lua │ │ │ ├── custom-dns-edit.lua │ │ │ ├── game-rules-file-manage.lua │ │ │ ├── game-rules-manage.lua │ │ │ ├── groups-config.lua │ │ │ ├── log.lua │ │ │ ├── other-file-edit.lua │ │ │ ├── other-rules-edit.lua │ │ │ ├── proxy-provider-config.lua │ │ │ ├── proxy-provider-file-manage.lua │ │ │ ├── rule-providers-config.lua │ │ │ ├── rule-providers-file-manage.lua │ │ │ ├── rule-providers-manage.lua │ │ │ ├── rule-providers-settings.lua │ │ │ ├── servers-config.lua │ │ │ ├── servers.lua │ │ │ └── settings.lua │ ├── openclash.lua │ └── view │ │ └── openclash │ │ ├── cfg_check.htm │ │ ├── config_edit.htm │ │ ├── config_editor.htm │ │ ├── config_upload.htm │ │ ├── debug.htm │ │ ├── developer.htm │ │ ├── dler_login.htm │ │ ├── dlercloud.htm │ │ ├── download_rule.htm │ │ ├── dvalue.htm │ │ ├── flush_dns_cache.htm │ │ ├── flush_smart_cache.htm │ │ ├── input_file_name.htm │ │ ├── input_rename.htm │ │ ├── log.htm │ │ ├── myip.htm │ │ ├── other_button.htm │ │ ├── other_stream_option.htm │ │ ├── select_git_cdn.htm │ │ ├── server_url.htm │ │ ├── status.htm │ │ ├── sub_info_show.htm │ │ ├── switch_dashboard.htm │ │ ├── switch_mode.htm │ │ ├── tblsection.htm │ │ ├── tblsection_dns.htm │ │ ├── toolbar_show.htm │ │ ├── update.htm │ │ ├── update_config.htm │ │ └── upload.htm ├── po │ └── zh-cn │ │ └── openclash.zh-cn.po ├── root │ ├── etc │ │ ├── config │ │ │ └── openclash │ │ ├── init.d │ │ │ └── openclash │ │ ├── openclash │ │ │ ├── Country.mmdb │ │ │ ├── GeoSite.dat │ │ │ ├── china_ip6_route.ipset │ │ │ ├── china_ip_route.ipset │ │ │ ├── custom │ │ │ │ ├── openclash_custom_chnroute6_pass.list │ │ │ │ ├── openclash_custom_chnroute_pass.list │ │ │ │ ├── openclash_custom_domain_dns.list │ │ │ │ ├── openclash_custom_domain_dns_policy.list │ │ │ │ ├── openclash_custom_fake_filter.list │ │ │ │ ├── openclash_custom_fallback_filter.yaml │ │ │ │ ├── openclash_custom_firewall_rules.sh │ │ │ │ ├── openclash_custom_hosts.list │ │ │ │ ├── openclash_custom_localnetwork_ipv4.list │ │ │ │ ├── openclash_custom_localnetwork_ipv6.list │ │ │ │ ├── openclash_custom_overwrite.sh │ │ │ │ ├── openclash_custom_rules.list │ │ │ │ ├── openclash_custom_rules_2.list │ │ │ │ └── openclash_custom_sniffer.yaml │ │ │ ├── game_rules │ │ │ │ ├── CS-GO.rules │ │ │ │ ├── Monster-Hunter-World.rules │ │ │ │ └── Steam.rules │ │ │ ├── overwrite │ │ │ │ └── default │ │ │ └── rule_provider │ │ │ │ ├── ABC │ │ │ │ ├── AI Suite │ │ │ │ ├── Abema_TV │ │ │ │ ├── Amazon │ │ │ │ ├── Apple │ │ │ │ ├── Apple_Music │ │ │ │ ├── Apple_News │ │ │ │ ├── Apple_TV │ │ │ │ ├── BBC_iPlayer │ │ │ │ ├── Bahamut │ │ │ │ ├── Bilibili │ │ │ │ ├── Crypto │ │ │ │ ├── DAZN │ │ │ │ ├── Discord │ │ │ │ ├── Discovery_Plus │ │ │ │ ├── Disney_Plus │ │ │ │ ├── Domestic │ │ │ │ ├── Domestic_IPs │ │ │ │ ├── F1_TV │ │ │ │ ├── FCM │ │ │ │ ├── Fox+ │ │ │ │ ├── Fox_Now │ │ │ │ ├── Google FCM │ │ │ │ ├── HBO │ │ │ │ ├── HBO_Go │ │ │ │ ├── HBO_Max │ │ │ │ ├── Hulu │ │ │ │ ├── Hulu_Japan │ │ │ │ ├── IQI │ │ │ │ ├── IQYI │ │ │ │ ├── JOOX │ │ │ │ ├── Japonx │ │ │ │ ├── KKBOX │ │ │ │ ├── KKTV │ │ │ │ ├── LAN │ │ │ │ ├── Letv │ │ │ │ ├── Line_TV │ │ │ │ ├── Microsoft │ │ │ │ ├── Netease_Music │ │ │ │ ├── Netflix │ │ │ │ ├── Niconico │ │ │ │ ├── PBS │ │ │ │ ├── Pandora │ │ │ │ ├── PayPal │ │ │ │ ├── Pornhub │ │ │ │ ├── Proxy │ │ │ │ ├── Reject │ │ │ │ ├── Scholar │ │ │ │ ├── Soundcloud │ │ │ │ ├── Special │ │ │ │ ├── Speedtest │ │ │ │ ├── Spotify │ │ │ │ ├── Steam │ │ │ │ ├── Telegram │ │ │ │ ├── Tencent_Video │ │ │ │ ├── ViuTV │ │ │ │ ├── WeTV │ │ │ │ ├── YouTube │ │ │ │ ├── Youku │ │ │ │ ├── encoreTVB │ │ │ │ ├── iQiyi │ │ │ │ ├── miHoYo │ │ │ │ └── myTV_SUPER │ │ └── uci-defaults │ │ │ └── luci-openclash │ ├── usr │ │ └── share │ │ │ ├── openclash │ │ │ ├── YAML.rb │ │ │ ├── cfg_unused_servers_del.sh │ │ │ ├── clash_version.sh │ │ │ ├── log.sh │ │ │ ├── openclash.sh │ │ │ ├── openclash_chnroute.sh │ │ │ ├── openclash_core.sh │ │ │ ├── openclash_curl.sh │ │ │ ├── openclash_custom_domain_dns.sh │ │ │ ├── openclash_debug.sh │ │ │ ├── openclash_debug_dns.lua │ │ │ ├── openclash_debug_getcon.lua │ │ │ ├── openclash_dler_checkin.lua │ │ │ ├── openclash_download_dashboard.sh │ │ │ ├── openclash_download_rule_list.sh │ │ │ ├── openclash_geoasn.sh │ │ │ ├── openclash_geoip.sh │ │ │ ├── openclash_geosite.sh │ │ │ ├── openclash_get_network.lua │ │ │ ├── openclash_history_get.sh │ │ │ ├── openclash_ipdb.sh │ │ │ ├── openclash_lgbm.sh │ │ │ ├── openclash_ps.sh │ │ │ ├── openclash_rule.sh │ │ │ ├── openclash_streaming_unlock.lua │ │ │ ├── openclash_sub_parser.lua │ │ │ ├── openclash_update.sh │ │ │ ├── openclash_urlencode.lua │ │ │ ├── openclash_version.sh │ │ │ ├── openclash_watchdog.sh │ │ │ ├── res │ │ │ │ ├── default.yaml │ │ │ │ ├── game_rules.list │ │ │ │ ├── lhie1.yaml │ │ │ │ ├── rule_providers.list │ │ │ │ └── sub_ini.list │ │ │ ├── ruby.sh │ │ │ ├── uci.sh │ │ │ ├── ui │ │ │ │ ├── dashboard │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── index-41a41303.css │ │ │ │ │ │ ├── index-abc6db04.js │ │ │ │ │ │ ├── logo-b453e72f.png │ │ │ │ │ │ └── vendor-0c169955.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-4de3aa5f.js │ │ │ │ ├── metacubexd │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── Config-9NNS9COU.js │ │ │ │ │ │ ├── Config-OnPrERLZ.js │ │ │ │ │ │ ├── Connections-CgFIezGO.js │ │ │ │ │ │ ├── Connections-N_Z6THP_.js │ │ │ │ │ │ ├── DocumentTitle-DG90V81t.js │ │ │ │ │ │ ├── FiraSans-Regular-BN6hITtY.ttf │ │ │ │ │ │ ├── IconChevronRight-Dm97ewab.js │ │ │ │ │ │ ├── IconReload--QlVe2wP.js │ │ │ │ │ │ ├── IconReload-BSlLPZuq.js │ │ │ │ │ │ ├── Logs-DcK4Yp9Y.js │ │ │ │ │ │ ├── Logs-uIQcQmXC.js │ │ │ │ │ │ ├── Overview-B99qGorf.js │ │ │ │ │ │ ├── Overview-BP3yBMkt.js │ │ │ │ │ │ ├── Proxies-BRo6NEi-.js │ │ │ │ │ │ ├── Proxies-Lk5uJ4LX.js │ │ │ │ │ │ ├── Rules-B-8TizmP.js │ │ │ │ │ │ ├── Rules-C4_l0aqo.js │ │ │ │ │ │ ├── Setup-10EXNRX9.js │ │ │ │ │ │ ├── Setup-CdphtcBj.js │ │ │ │ │ │ ├── TwemojiMozilla-flags-B12sb_Bp.woff2 │ │ │ │ │ │ ├── apexcharts.esm-D-nlnKto.js │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-CKu2TFQr.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-400-normal-D9eUeF-O.woff │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-Cycyekte.woff2 │ │ │ │ │ │ ├── fira-sans-cyrillic-ext-400-normal-Dd5dApAy.woff │ │ │ │ │ │ ├── fira-sans-greek-400-normal-BFCFncbp.woff2 │ │ │ │ │ │ ├── fira-sans-greek-400-normal-DQ8sF22y.woff │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-ByG7UNQ2.woff2 │ │ │ │ │ │ ├── fira-sans-greek-ext-400-normal-ClCfNE6D.woff │ │ │ │ │ │ ├── fira-sans-latin-400-normal-66xCkunx.woff │ │ │ │ │ │ ├── fira-sans-latin-400-normal-a0AnQzuD.woff2 │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-BCUwhuGB.woff │ │ │ │ │ │ ├── fira-sans-latin-ext-400-normal-BLG_mAEf.woff2 │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal-DUVG35gE.woff │ │ │ │ │ │ ├── fira-sans-vietnamese-400-normal-ljDTQFsx.woff2 │ │ │ │ │ │ ├── index-BaCG7ya-.css │ │ │ │ │ │ ├── index-CBBLUqwt.js │ │ │ │ │ │ ├── index-Csmv4Fkv.js │ │ │ │ │ │ ├── index-DIwJcTz_.js │ │ │ │ │ │ ├── index-M06kPDrB.css │ │ │ │ │ │ ├── lib-BxRDUvxo.js │ │ │ │ │ │ └── time-CHbJgbks.js │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── maskable-icon-512x512.png │ │ │ │ │ ├── pwa-192x192.png │ │ │ │ │ ├── pwa-512x512.png │ │ │ │ │ ├── pwa-64x64.png │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-3e8df8c8.js │ │ │ │ ├── yacd │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── Twemoji_Mozilla.ttf │ │ │ │ │ ├── _headers │ │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── BaseModal-67b45035.js │ │ │ │ │ │ ├── BaseModal-e9f180d4.css │ │ │ │ │ │ ├── Config-0e27f0a7.js │ │ │ │ │ │ ├── Config-7eb3f1bb.css │ │ │ │ │ │ ├── Connections-3a8982cd.js │ │ │ │ │ │ ├── Connections-796224c1.css │ │ │ │ │ │ ├── Fab-0b65516b.css │ │ │ │ │ │ ├── Fab-4ddb6e62.js │ │ │ │ │ │ ├── Input-6b5b5d17.js │ │ │ │ │ │ ├── Logs-093af7e2.js │ │ │ │ │ │ ├── Logs-beb8fc98.css │ │ │ │ │ │ ├── Proxies-706c7895.css │ │ │ │ │ │ ├── Proxies-7e5eba91.js │ │ │ │ │ │ ├── Rules-162ef666.css │ │ │ │ │ │ ├── Rules-821697d1.js │ │ │ │ │ │ ├── Select-07e025ab.css │ │ │ │ │ │ ├── Select-08cce14a.js │ │ │ │ │ │ ├── TextFitler-2126f69f.js │ │ │ │ │ │ ├── TextFitler-cbc3b0fe.css │ │ │ │ │ │ ├── Twemoji_Mozilla-6d90152e.ttf │ │ │ │ │ │ ├── chart-lib-9fcc76b8.js │ │ │ │ │ │ ├── debounce-c1ba2006.js │ │ │ │ │ │ ├── en-c97381af.js │ │ │ │ │ │ ├── index-3ec9e4ba.js │ │ │ │ │ │ ├── index-84fa0cb3.js │ │ │ │ │ │ ├── index-9f9232b9.css │ │ │ │ │ │ ├── index-e5a176ea.js │ │ │ │ │ │ ├── inter-latin-400-normal-0364d368.woff2 │ │ │ │ │ │ ├── inter-latin-400-normal-3ea830d4.woff │ │ │ │ │ │ ├── inter-latin-800-normal-a51ac27d.woff2 │ │ │ │ │ │ ├── inter-latin-800-normal-d08d7178.woff │ │ │ │ │ │ ├── logs-21b21b6b.js │ │ │ │ │ │ ├── memoize-one.esm-efa1e849.js │ │ │ │ │ │ ├── play-01245470.js │ │ │ │ │ │ ├── roboto-mono-latin-400-normal-7295944e.woff2 │ │ │ │ │ │ ├── roboto-mono-latin-400-normal-dffdffa7.woff │ │ │ │ │ │ ├── rotate-cw-a9fb12e9.js │ │ │ │ │ │ ├── useRemainingViewPortHeight-09d9f892.js │ │ │ │ │ │ ├── vi-3adf53dd.js │ │ │ │ │ │ ├── zh-cn-f6b462dd.js │ │ │ │ │ │ └── zh-tw-3f4136b7.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── yacd.ico │ │ │ │ │ └── yacd.png │ │ │ │ └── zashboard │ │ │ │ │ ├── CNAME │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── assets │ │ │ │ │ ├── NotoColorEmoji-flagsonly-CWWDk9km.ttf │ │ │ │ │ ├── TwemojiMozilla-flags-B12sb_Bp.woff2 │ │ │ │ │ ├── index-B-U6Un3o.css │ │ │ │ │ ├── index-CcFj958A.js │ │ │ │ │ ├── index-DnsHUhFc.js │ │ │ │ │ ├── index-DrFVUP5k.css │ │ │ │ │ └── metacubex-BlQkOUXT.jpg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.svg │ │ │ │ │ ├── icon.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manifest.webmanifest │ │ │ │ │ ├── pwa-192x192.png │ │ │ │ │ ├── pwa-512x512.png │ │ │ │ │ ├── pwa-maskable-192x192.png │ │ │ │ │ ├── pwa-maskable-512x512.png │ │ │ │ │ ├── registerSW.js │ │ │ │ │ ├── sw.js │ │ │ │ │ └── workbox-3e8df8c8.js │ │ │ ├── yml_change.sh │ │ │ ├── yml_groups_get.sh │ │ │ ├── yml_groups_name_ch.sh │ │ │ ├── yml_groups_name_get.sh │ │ │ ├── yml_groups_set.sh │ │ │ ├── yml_proxys_get.sh │ │ │ ├── yml_proxys_set.sh │ │ │ └── yml_rules_change.sh │ │ │ ├── rpcd │ │ │ └── acl.d │ │ │ │ └── luci-app-openclash.json │ │ │ └── ucitrack │ │ │ └── luci-app-openclash.json │ └── www │ │ └── luci-static │ │ └── resources │ │ └── openclash │ │ ├── addon │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ └── dialog.js │ │ ├── display │ │ │ ├── autorefresh.js │ │ │ ├── fullscreen.css │ │ │ └── fullscreen.js │ │ ├── edit │ │ │ └── matchbrackets.js │ │ ├── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ │ ├── lint │ │ │ ├── js-yaml.min.js │ │ │ ├── lint.css │ │ │ ├── lint.js │ │ │ └── yaml-lint.js │ │ ├── merge │ │ │ ├── diff_match_patch.js │ │ │ ├── merge.css │ │ │ └── merge.js │ │ ├── scroll │ │ │ └── annotatescrollbar.js │ │ ├── search │ │ │ ├── jump-to-line.js │ │ │ ├── match-highlighter.js │ │ │ ├── matchesonscrollbar.css │ │ │ ├── matchesonscrollbar.js │ │ │ ├── search.js │ │ │ └── searchcursor.js │ │ └── selection │ │ │ └── active-line.js │ │ ├── img │ │ ├── arrow-clockwise-light.svg │ │ ├── logo.png │ │ └── wrench-light.svg │ │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ │ ├── mode │ │ ├── lua │ │ │ └── lua.js │ │ ├── properties │ │ │ └── properties.js │ │ ├── shell │ │ │ └── shell.js │ │ └── yaml │ │ │ └── yaml.js │ │ └── theme │ │ ├── idea.css │ │ ├── material-log.css │ │ └── material.css └── tools │ └── po2lmo │ ├── Makefile │ └── src │ ├── po2lmo │ ├── po2lmo.c │ ├── template_lmo.c │ └── template_lmo.h ├── luci-app-passwall ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── passwall │ │ ├── Sortable.min.js │ │ └── qrcode.min.js ├── luasrc │ ├── controller │ │ └── passwall.lua │ ├── model │ │ └── cbi │ │ │ └── passwall │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── global.lua │ │ │ ├── haproxy.lua │ │ │ ├── log.lua │ │ │ ├── node_config.lua │ │ │ ├── node_list.lua │ │ │ ├── node_subscribe.lua │ │ │ ├── node_subscribe_config.lua │ │ │ ├── other.lua │ │ │ ├── rule.lua │ │ │ ├── rule_list.lua │ │ │ ├── shunt_rules.lua │ │ │ ├── socks_config.lua │ │ │ └── type │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ ├── trojan-plus.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── hysteria2.lua │ │ │ ├── ray.lua │ │ │ ├── sing-box.lua │ │ │ ├── socks.lua │ │ │ ├── ss-rust.lua │ │ │ ├── ss.lua │ │ │ ├── ssr.lua │ │ │ └── trojan-plus.lua │ │ │ └── user.lua │ ├── passwall │ │ ├── api.lua │ │ ├── com.lua │ │ ├── server_app.lua │ │ ├── util_hysteria2.lua │ │ ├── util_naiveproxy.lua │ │ ├── util_shadowsocks.lua │ │ ├── util_sing-box.lua │ │ ├── util_trojan.lua │ │ ├── util_tuic.lua │ │ └── util_xray.lua │ └── view │ │ └── passwall │ │ ├── acl │ │ └── view_chinadns_log.htm │ │ ├── app_update │ │ └── app_version.htm │ │ ├── cbi │ │ └── hidevalue.htm │ │ ├── global │ │ ├── backup.htm │ │ ├── faq.htm │ │ ├── footer.htm │ │ ├── proxy.htm │ │ └── status.htm │ │ ├── haproxy │ │ ├── js.htm │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── node_subscribe │ │ └── js.htm │ │ ├── rule │ │ └── rule_version.htm │ │ ├── rule_list │ │ ├── geoview.htm │ │ └── js.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── btn.htm ├── po │ ├── zh-cn │ │ └── passwall.po │ └── zh_Hans └── root │ ├── etc │ ├── config │ │ └── passwall_server │ ├── hotplug.d │ │ └── iface │ │ │ └── 98-passwall │ ├── init.d │ │ ├── passwall │ │ └── passwall_server │ └── uci-defaults │ │ └── luci-passwall │ └── usr │ └── share │ ├── passwall │ ├── 0_default_config │ ├── app.sh │ ├── haproxy.lua │ ├── haproxy_check.sh │ ├── helper_chinadns_add.lua │ ├── helper_dnsmasq.lua │ ├── helper_smartdns.sh │ ├── helper_smartdns_add.lua │ ├── iptables.sh │ ├── lease2hosts.sh │ ├── monitor.sh │ ├── nftables.sh │ ├── rule_update.lua │ ├── rules │ │ ├── block_host │ │ ├── block_ip │ │ ├── chnlist │ │ ├── chnroute │ │ ├── chnroute6 │ │ ├── direct_host │ │ ├── direct_ip │ │ ├── domains_excluded │ │ ├── gfwlist │ │ ├── lanlist_ipv4 │ │ ├── lanlist_ipv6 │ │ ├── proxy_host │ │ └── proxy_ip │ ├── socks_auto_switch.sh │ ├── subscribe.lua │ ├── tasks.sh │ └── test.sh │ ├── rpcd │ └── acl.d │ │ └── luci-app-passwall.json │ └── ucitrack │ ├── luci-app-passwall-server.json │ └── luci-app-passwall.json ├── luci-app-passwall2 ├── Makefile ├── htdocs │ └── luci-static │ │ └── resources │ │ └── view │ │ └── passwall2 │ │ ├── Sortable.min.js │ │ └── qrcode.min.js ├── luasrc │ ├── controller │ │ └── passwall2.lua │ ├── model │ │ └── cbi │ │ │ └── passwall2 │ │ │ ├── client │ │ │ ├── acl.lua │ │ │ ├── acl_config.lua │ │ │ ├── app_update.lua │ │ │ ├── geoview.lua │ │ │ ├── global.lua │ │ │ ├── haproxy.lua │ │ │ ├── log.lua │ │ │ ├── node_config.lua │ │ │ ├── node_list.lua │ │ │ ├── node_subscribe.lua │ │ │ ├── node_subscribe_config.lua │ │ │ ├── other.lua │ │ │ ├── rule.lua │ │ │ ├── shunt_rules.lua │ │ │ ├── socks_config.lua │ │ │ └── type │ │ │ │ ├── hysteria2.lua │ │ │ │ ├── naive.lua │ │ │ │ ├── ray.lua │ │ │ │ ├── sing-box.lua │ │ │ │ ├── ss-rust.lua │ │ │ │ ├── ss.lua │ │ │ │ ├── ssr.lua │ │ │ │ └── tuic.lua │ │ │ └── server │ │ │ ├── index.lua │ │ │ ├── type │ │ │ ├── hysteria2.lua │ │ │ ├── ray.lua │ │ │ ├── sing-box.lua │ │ │ ├── ss-rust.lua │ │ │ ├── ss.lua │ │ │ └── ssr.lua │ │ │ └── user.lua │ ├── passwall2 │ │ ├── api.lua │ │ ├── com.lua │ │ ├── server_app.lua │ │ ├── util_hysteria2.lua │ │ ├── util_naiveproxy.lua │ │ ├── util_shadowsocks.lua │ │ ├── util_sing-box.lua │ │ ├── util_tuic.lua │ │ └── util_xray.lua │ └── view │ │ └── passwall2 │ │ ├── app_update │ │ └── app_version.htm │ │ ├── cbi │ │ └── hidevalue.htm │ │ ├── global │ │ ├── backup.htm │ │ ├── faq.htm │ │ ├── footer.htm │ │ └── status.htm │ │ ├── haproxy │ │ └── status.htm │ │ ├── log │ │ └── log.htm │ │ ├── node_list │ │ ├── link_add_node.htm │ │ ├── link_share_man.htm │ │ └── node_list.htm │ │ ├── node_subscribe │ │ └── js.htm │ │ ├── rule │ │ ├── geoview.htm │ │ └── rule_version.htm │ │ ├── server │ │ ├── log.htm │ │ └── users_list_status.htm │ │ └── socks_auto_switch │ │ └── btn.htm ├── po │ ├── zh-cn │ │ └── passwall2.po │ ├── zh-tw │ │ └── passwall2.po │ ├── zh_Hans │ └── zh_Hant └── root │ ├── etc │ ├── config │ │ └── passwall2_server │ ├── hotplug.d │ │ └── iface │ │ │ └── 98-passwall2 │ ├── init.d │ │ ├── passwall2 │ │ └── passwall2_server │ └── uci-defaults │ │ └── luci-passwall2 │ └── usr │ └── share │ ├── passwall2 │ ├── 0_default_config │ ├── app.sh │ ├── domains_excluded │ ├── haproxy.lua │ ├── haproxy_check.sh │ ├── helper_dnsmasq.lua │ ├── i18n.lua │ ├── iptables.sh │ ├── lease2hosts.sh │ ├── monitor.sh │ ├── nftables.sh │ ├── rule_update.lua │ ├── socks_auto_switch.sh │ ├── subscribe.lua │ ├── tasks.sh │ └── test.sh │ ├── rpcd │ └── acl.d │ │ └── luci-app-passwall2.json │ └── ucitrack │ ├── luci-app-passwall2-server.json │ └── luci-app-passwall2.json ├── luci-app-ssr-plus ├── Makefile ├── luasrc │ ├── controller │ │ └── shadowsocksr.lua │ ├── model │ │ └── cbi │ │ │ └── shadowsocksr │ │ │ ├── advanced.lua │ │ │ ├── client-config.lua │ │ │ ├── client.lua │ │ │ ├── control.lua │ │ │ ├── log.lua │ │ │ ├── server-config.lua │ │ │ ├── server.lua │ │ │ ├── servers.lua │ │ │ └── status.lua │ └── view │ │ └── shadowsocksr │ │ ├── backup_restore.htm │ │ ├── certupload.htm │ │ ├── check.htm │ │ ├── checkport.htm │ │ ├── log.htm │ │ ├── ping.htm │ │ ├── refresh.htm │ │ ├── reset.htm │ │ ├── server_list.htm │ │ ├── socket.htm │ │ ├── ssrurl.htm │ │ ├── status.htm │ │ └── subscribe.htm ├── po │ ├── templates │ │ └── ssr-plus.pot │ ├── zh-cn │ └── zh_Hans │ │ └── ssr-plus.po └── root │ ├── etc │ ├── config │ │ └── shadowsocksr │ ├── init.d │ │ └── shadowsocksr │ ├── ssrplus │ │ ├── ad.conf │ │ ├── applechina.conf │ │ ├── black.list │ │ ├── china_ssr.txt │ │ ├── deny.list │ │ ├── dnsproxy_dns.list │ │ ├── gfw_base.conf │ │ ├── gfw_list.conf │ │ ├── mosdns-config.yaml │ │ ├── netflix.list │ │ ├── netflixip.list │ │ ├── oversea_list.conf │ │ └── white.list │ └── uci-defaults │ │ └── luci-ssr-plus │ └── usr │ ├── bin │ ├── ssr-monitor │ ├── ssr-rules │ └── ssr-switch │ └── share │ ├── rpcd │ └── acl.d │ │ └── luci-app-ssr-plus.json │ ├── shadowsocksr │ ├── chinaipset.sh │ ├── gen_config.lua │ ├── genred2config.sh │ ├── gfw2ipset.sh │ ├── shadowsocksr.config │ ├── ssrplusupdate.sh │ ├── subscribe.lua │ └── update.lua │ └── ucitrack │ └── luci-app-ssr-plus.json ├── microsocks └── Makefile ├── naiveproxy ├── Makefile └── files │ ├── naiveproxy.config │ └── naiveproxy.init ├── nikki ├── Makefile └── files │ ├── mixin.yaml │ ├── nftables │ ├── geoip6_cn.nft │ └── geoip_cn.nft │ ├── nikki.conf │ ├── nikki.init │ ├── nikki.upgrade │ ├── scripts │ ├── debug.sh │ ├── firewall_include.sh │ └── include.sh │ ├── uci-defaults │ ├── firewall.sh │ ├── init.sh │ └── migrate.sh │ └── ucode │ ├── hijack.ut │ ├── include.uc │ └── mixin.uc ├── patch-luci-app-passwall.patch ├── patch-luci-app-ssr-plus.patch ├── pdnsd ├── Makefile ├── files │ └── pdnsd.init └── patches │ ├── 010-no-doc-and-test.patch │ └── 020-headers.patch ├── redsocks2 ├── Makefile └── files │ └── redsocks2.template ├── shadow-tls └── Makefile ├── shadowsocks-libev ├── Makefile ├── README.md ├── files │ ├── shadowsocks-libev.config │ ├── shadowsocks-libev.init │ └── ss-rules │ │ ├── chain.uc │ │ ├── set.uc │ │ └── ss-rules.uc └── patches │ ├── 100-Upgrade-PCRE-to-PCRE2.patch │ └── 101-fix-mbedtls3.6-build.patch ├── shadowsocks-rust └── Makefile ├── shadowsocksr-libev ├── Makefile ├── patches │ ├── 0001-Add-ss-server-and-ss-check.patch │ ├── 0002-Revert-verify_simple-and-auth_simple.patch │ ├── 0003-Refine-Usage.patch │ ├── 100-fix-gcc-10.patch │ ├── 101-Fix-Werror-sizeof-pointer-memaccess.patch │ ├── 102-Read-listening-mode-from-config.patch │ ├── 103-Add-TPROXY-support-for-TCP-ssr-redir.patch │ └── 105-Upgrade-PCRE-to-PCRE2.patch └── src │ └── server │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── acl.c │ ├── acl.h │ ├── auth.c │ ├── auth.h │ ├── base64.c │ ├── base64.h │ ├── cache.c │ ├── cache.h │ ├── check.c │ ├── common.h │ ├── crc32.c │ ├── encrypt.c │ ├── encrypt.h │ ├── http.c │ ├── http.h │ ├── http_simple.c │ ├── http_simple.h │ ├── jconf.c │ ├── jconf.h │ ├── json.c │ ├── json.h │ ├── list.c │ ├── list.h │ ├── netutils.c │ ├── netutils.h │ ├── obfs.c │ ├── obfs.h │ ├── obfsutil.c │ ├── protocol.h │ ├── resolv.c │ ├── resolv.h │ ├── rule.c │ ├── rule.h │ ├── server.c │ ├── server.h │ ├── tls.c │ ├── tls.h │ ├── tls1.2_ticket.c │ ├── tls1.2_ticket.h │ ├── udprelay.c │ ├── udprelay.h │ ├── uthash.h │ ├── utils.c │ ├── utils.h │ ├── verify.c │ └── verify.h ├── simple-obfs └── Makefile ├── sing-box ├── Makefile └── files │ ├── sing-box.conf │ └── sing-box.init ├── tcping ├── Makefile └── patches │ └── 0001-tcping-add-IPv6-support.patch ├── trojan-plus └── Makefile ├── trojan └── Makefile ├── tuic-client └── Makefile ├── v2ray-core └── Makefile ├── v2ray-geodata └── Makefile ├── v2ray-plugin └── Makefile ├── xray-core └── Makefile └── xray-plugin └── Makefile /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/README.md -------------------------------------------------------------------------------- /chinadns-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/chinadns-ng/Makefile -------------------------------------------------------------------------------- /daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/daed/Makefile -------------------------------------------------------------------------------- /daed/files/daed.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/daed/files/daed.config -------------------------------------------------------------------------------- /daed/files/daed.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/daed/files/daed.init -------------------------------------------------------------------------------- /daed/patches_arm/0002-feat-Add-vmlinux-arm.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/daed/patches_arm/0002-feat-Add-vmlinux-arm.h.patch -------------------------------------------------------------------------------- /daed/patches_arm/0003-drop-kprobe-skb-5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/daed/patches_arm/0003-drop-kprobe-skb-5.patch -------------------------------------------------------------------------------- /dns2socks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/dns2socks-rust/Makefile -------------------------------------------------------------------------------- /dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/dns2socks/Makefile -------------------------------------------------------------------------------- /dns2tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/dns2tcp/Makefile -------------------------------------------------------------------------------- /geoview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/geoview/Makefile -------------------------------------------------------------------------------- /hysteria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/hysteria/Makefile -------------------------------------------------------------------------------- /ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/ipt2socks/Makefile -------------------------------------------------------------------------------- /lua-neturl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/lua-neturl/Makefile -------------------------------------------------------------------------------- /lua-neturl/patches/010-userinfo-regex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/lua-neturl/patches/010-userinfo-regex.patch -------------------------------------------------------------------------------- /luci-app-daed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/Makefile -------------------------------------------------------------------------------- /luci-app-daed/htdocs/luci-static/resources/view/daed/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/htdocs/luci-static/resources/view/daed/config.js -------------------------------------------------------------------------------- /luci-app-daed/htdocs/luci-static/resources/view/daed/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/htdocs/luci-static/resources/view/daed/log.js -------------------------------------------------------------------------------- /luci-app-daed/po/templates/daed.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/po/templates/daed.pot -------------------------------------------------------------------------------- /luci-app-daed/po/zh_Hans/daed.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/po/zh_Hans/daed.po -------------------------------------------------------------------------------- /luci-app-daed/root/usr/share/luci/menu.d/luci-app-daed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/root/usr/share/luci/menu.d/luci-app-daed.json -------------------------------------------------------------------------------- /luci-app-daed/root/usr/share/rpcd/acl.d/luci-app-daed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-daed/root/usr/share/rpcd/acl.d/luci-app-daed.json -------------------------------------------------------------------------------- /luci-app-homeproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/Makefile -------------------------------------------------------------------------------- /luci-app-homeproxy/htdocs/luci-static/resources/homeproxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/htdocs/luci-static/resources/homeproxy.js -------------------------------------------------------------------------------- /luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/client.js -------------------------------------------------------------------------------- /luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/node.js -------------------------------------------------------------------------------- /luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/server.js -------------------------------------------------------------------------------- /luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/htdocs/luci-static/resources/view/homeproxy/status.js -------------------------------------------------------------------------------- /luci-app-homeproxy/po/templates/homeproxy.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/po/templates/homeproxy.pot -------------------------------------------------------------------------------- /luci-app-homeproxy/po/zh_Hans/homeproxy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/po/zh_Hans/homeproxy.po -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/capabilities/homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/capabilities/homeproxy.json -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/config/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/config/homeproxy -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.txt -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip4.ver: -------------------------------------------------------------------------------- 1 | 20251109033819 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.txt -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_ip6.ver: -------------------------------------------------------------------------------- 1 | 20251109033819 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/resources/china_list.txt -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/china_list.ver: -------------------------------------------------------------------------------- 1 | 202511082212 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/gfw_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/resources/gfw_list.txt -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/resources/gfw_list.ver: -------------------------------------------------------------------------------- 1 | 202511082212 2 | -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/clean_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/clean_log.sh -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/firewall_post.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/firewall_post.ut -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/firewall_pre.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/firewall_pre.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/generate_client.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/generate_client.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/generate_server.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/generate_server.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/homeproxy.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/homeproxy.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/migrate_config.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/migrate_config.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/update_crond.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/update_crond.sh -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/update_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/update_resources.sh -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/homeproxy/scripts/update_subscriptions.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/homeproxy/scripts/update_subscriptions.uc -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/init.d/homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/init.d/homeproxy -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/uci-defaults/luci-homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/uci-defaults/luci-homeproxy -------------------------------------------------------------------------------- /luci-app-homeproxy/root/etc/uci-defaults/luci-homeproxy-migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/etc/uci-defaults/luci-homeproxy-migration -------------------------------------------------------------------------------- /luci-app-homeproxy/root/usr/share/luci/menu.d/luci-app-homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/usr/share/luci/menu.d/luci-app-homeproxy.json -------------------------------------------------------------------------------- /luci-app-homeproxy/root/usr/share/rpcd/acl.d/luci-app-homeproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/usr/share/rpcd/acl.d/luci-app-homeproxy.json -------------------------------------------------------------------------------- /luci-app-homeproxy/root/usr/share/rpcd/ucode/luci.homeproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-homeproxy/root/usr/share/rpcd/ucode/luci.homeproxy -------------------------------------------------------------------------------- /luci-app-nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/Makefile -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/tools/nikki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/tools/nikki.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/app.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/editor.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/log.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/mixin.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/profile.js -------------------------------------------------------------------------------- /luci-app-nikki/htdocs/luci-static/resources/view/nikki/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/htdocs/luci-static/resources/view/nikki/proxy.js -------------------------------------------------------------------------------- /luci-app-nikki/po/templates/nikki.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/po/templates/nikki.pot -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hans/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/po/zh_Hans/nikki.po -------------------------------------------------------------------------------- /luci-app-nikki/po/zh_Hant/nikki.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/po/zh_Hant/nikki.po -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/luci/menu.d/luci-app-nikki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/root/usr/share/luci/menu.d/luci-app-nikki.json -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/rpcd/acl.d/luci-app-nikki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/root/usr/share/rpcd/acl.d/luci-app-nikki.json -------------------------------------------------------------------------------- /luci-app-nikki/root/usr/share/rpcd/ucode/luci.nikki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-nikki/root/usr/share/rpcd/ucode/luci.nikki -------------------------------------------------------------------------------- /luci-app-openclash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/controller/openclash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/controller/openclash.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/client.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/config-overwrite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/config-overwrite.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/config-subscribe-edit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/config-subscribe-edit.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/config-subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/config-subscribe.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/config.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/custom-dns-edit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/custom-dns-edit.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/game-rules-file-manage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/game-rules-file-manage.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/game-rules-manage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/game-rules-manage.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/groups-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/groups-config.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/log.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/other-file-edit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/other-file-edit.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/other-rules-edit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/other-rules-edit.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/proxy-provider-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/proxy-provider-config.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/proxy-provider-file-manage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/proxy-provider-file-manage.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-config.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-file-manage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-file-manage.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-manage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-manage.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/rule-providers-settings.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/servers-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/servers-config.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/servers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/servers.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/model/cbi/openclash/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/model/cbi/openclash/settings.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/openclash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/openclash.lua -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/cfg_check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/cfg_check.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/config_edit.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/config_edit.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/config_editor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/config_editor.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/config_upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/config_upload.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/debug.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/debug.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/developer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/developer.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/dler_login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/dler_login.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/dlercloud.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/dlercloud.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/download_rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/download_rule.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/dvalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/dvalue.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/flush_dns_cache.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/flush_dns_cache.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/flush_smart_cache.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/flush_smart_cache.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/input_file_name.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/input_file_name.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/input_rename.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/input_rename.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/log.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/myip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/myip.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/other_button.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/other_button.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/other_stream_option.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/other_stream_option.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/select_git_cdn.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/select_git_cdn.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/server_url.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/server_url.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/status.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/sub_info_show.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/sub_info_show.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/switch_dashboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/switch_dashboard.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/switch_mode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/switch_mode.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/tblsection.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/tblsection.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/tblsection_dns.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/tblsection_dns.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/toolbar_show.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/toolbar_show.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/update.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/update_config.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/update_config.htm -------------------------------------------------------------------------------- /luci-app-openclash/luasrc/view/openclash/upload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/luasrc/view/openclash/upload.htm -------------------------------------------------------------------------------- /luci-app-openclash/po/zh-cn/openclash.zh-cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/po/zh-cn/openclash.zh-cn.po -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/config/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/config/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/init.d/openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/init.d/openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/Country.mmdb -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/GeoSite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/GeoSite.dat -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/china_ip6_route.ipset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/china_ip6_route.ipset -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/china_ip_route.ipset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/china_ip_route.ipset -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_chnroute6_pass.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_chnroute6_pass.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_chnroute_pass.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_chnroute_pass.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns.list: -------------------------------------------------------------------------------- 1 | #baidu.com -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns_policy.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_domain_dns_policy.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_fake_filter.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_fake_filter.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_fallback_filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_fallback_filter.yaml -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_firewall_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_firewall_rules.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_hosts.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_hosts.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_localnetwork_ipv4.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_localnetwork_ipv4.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_localnetwork_ipv6.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_localnetwork_ipv6.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_overwrite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_overwrite.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_rules.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_rules.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_rules_2.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_rules_2.list -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/custom/openclash_custom_sniffer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/custom/openclash_custom_sniffer.yaml -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/game_rules/CS-GO.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/game_rules/CS-GO.rules -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/game_rules/Monster-Hunter-World.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/game_rules/Monster-Hunter-World.rules -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/game_rules/Steam.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/game_rules/Steam.rules -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/overwrite/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/overwrite/default -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/ABC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/ABC -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/AI Suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/AI Suite -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Abema_TV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Abema_TV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Amazon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Amazon -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Apple -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Apple_Music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Apple_Music -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Apple_News: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Apple_News -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Apple_TV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Apple_TV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/BBC_iPlayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/BBC_iPlayer -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Bahamut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Bahamut -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Bilibili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Bilibili -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Crypto -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/DAZN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/DAZN -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Discord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Discord -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Discovery_Plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Discovery_Plus -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Disney_Plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Disney_Plus -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Domestic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Domestic -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Domestic_IPs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Domestic_IPs -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/F1_TV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/F1_TV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/FCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/FCM -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Fox+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Fox+ -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Fox_Now: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Fox_Now -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Google FCM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Google FCM -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/HBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/HBO -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/HBO_Go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/HBO_Go -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/HBO_Max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/HBO_Max -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Hulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Hulu -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Hulu_Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Hulu_Japan -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/IQI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/IQI -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/IQYI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/IQYI -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/JOOX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/JOOX -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Japonx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Japonx -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/KKBOX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/KKBOX -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/KKTV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/KKTV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/LAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/LAN -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Letv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Letv -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Line_TV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Line_TV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Microsoft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Microsoft -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Netease_Music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Netease_Music -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Netflix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Netflix -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Niconico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Niconico -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/PBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/PBS -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Pandora -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/PayPal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/PayPal -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Pornhub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Pornhub -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Proxy -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Reject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Reject -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Scholar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Scholar -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Soundcloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Soundcloud -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Special: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Special -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Speedtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Speedtest -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Spotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Spotify -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Steam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Steam -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Telegram -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Tencent_Video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Tencent_Video -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/ViuTV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/ViuTV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/WeTV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/WeTV -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/YouTube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/YouTube -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/Youku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/Youku -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/encoreTVB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/encoreTVB -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/iQiyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/iQiyi -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/miHoYo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/miHoYo -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/openclash/rule_provider/myTV_SUPER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/openclash/rule_provider/myTV_SUPER -------------------------------------------------------------------------------- /luci-app-openclash/root/etc/uci-defaults/luci-openclash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/etc/uci-defaults/luci-openclash -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/YAML.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/YAML.rb -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/cfg_unused_servers_del.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/cfg_unused_servers_del.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/clash_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/clash_version.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/log.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_chnroute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_chnroute.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_core.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_curl.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_custom_domain_dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_custom_domain_dns.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_debug.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_debug_dns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_debug_dns.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_debug_getcon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_debug_getcon.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_dler_checkin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_dler_checkin.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_download_dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_download_dashboard.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_download_rule_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_download_rule_list.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_geoasn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_geoasn.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_geoip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_geoip.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_geosite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_geosite.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_get_network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_get_network.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_history_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_history_get.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_ipdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_ipdb.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_lgbm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_lgbm.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_ps.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_rule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_rule.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_streaming_unlock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_streaming_unlock.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_sub_parser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_sub_parser.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_update.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_urlencode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_urlencode.lua -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_version.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/openclash_watchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/openclash_watchdog.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/res/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/res/default.yaml -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/res/game_rules.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/res/game_rules.list -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/res/lhie1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/res/lhie1.yaml -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/res/rule_providers.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/res/rule_providers.list -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/res/sub_ini.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/res/sub_ini.list -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ruby.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/uci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/uci.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/CNAME: -------------------------------------------------------------------------------- 1 | clash.razord.top -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/index-41a41303.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/index-41a41303.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/index-abc6db04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/index-abc6db04.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/logo-b453e72f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/logo-b453e72f.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/vendor-0c169955.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/assets/vendor-0c169955.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/index.html -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/manifest.webmanifest -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/sw.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/dashboard/workbox-4de3aa5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/dashboard/workbox-4de3aa5f.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/CNAME: -------------------------------------------------------------------------------- 1 | d.metacubex.one 2 | -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Config-9NNS9COU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Config-9NNS9COU.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Config-OnPrERLZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Config-OnPrERLZ.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Logs-DcK4Yp9Y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Logs-DcK4Yp9Y.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Logs-uIQcQmXC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Logs-uIQcQmXC.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Proxies-BRo6NEi-.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/Proxies-BRo6NEi-.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/lib-BxRDUvxo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/lib-BxRDUvxo.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/time-CHbJgbks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/assets/time-CHbJgbks.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/favicon.ico -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/favicon.svg -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/index.html -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/manifest.webmanifest -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-192x192.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-512x512.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/pwa-64x64.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/registerSW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/registerSW.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/sw.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/metacubexd/workbox-3e8df8c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/metacubexd/workbox-3e8df8c8.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/CNAME: -------------------------------------------------------------------------------- 1 | yacd.metacubex.one -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/Twemoji_Mozilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/Twemoji_Mozilla.ttf -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/_headers -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/BaseModal-67b45035.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/BaseModal-67b45035.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/BaseModal-e9f180d4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/BaseModal-e9f180d4.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Config-0e27f0a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Config-0e27f0a7.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Config-7eb3f1bb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Config-7eb3f1bb.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Fab-0b65516b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Fab-0b65516b.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Fab-4ddb6e62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Fab-4ddb6e62.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Input-6b5b5d17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Input-6b5b5d17.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Logs-093af7e2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Logs-093af7e2.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Logs-beb8fc98.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Logs-beb8fc98.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Proxies-706c7895.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Proxies-706c7895.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Proxies-7e5eba91.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Proxies-7e5eba91.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Rules-162ef666.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Rules-162ef666.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Rules-821697d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Rules-821697d1.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Select-07e025ab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Select-07e025ab.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Select-08cce14a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/Select-08cce14a.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/TextFitler-2126f69f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/TextFitler-2126f69f.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/chart-lib-9fcc76b8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/chart-lib-9fcc76b8.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/debounce-c1ba2006.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/debounce-c1ba2006.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/en-c97381af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/en-c97381af.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-3ec9e4ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-3ec9e4ba.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-84fa0cb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-84fa0cb3.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-9f9232b9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-9f9232b9.css -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-e5a176ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/index-e5a176ea.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/logs-21b21b6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/logs-21b21b6b.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/play-01245470.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/play-01245470.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/rotate-cw-a9fb12e9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/rotate-cw-a9fb12e9.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/vi-3adf53dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/vi-3adf53dd.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/zh-cn-f6b462dd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/zh-cn-f6b462dd.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/zh-tw-3f4136b7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/assets/zh-tw-3f4136b7.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/index.html -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/logo.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/manifest.webmanifest -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/registerSW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/registerSW.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/sw.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/yacd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/yacd.ico -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/yacd/yacd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/yacd/yacd.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/CNAME: -------------------------------------------------------------------------------- 1 | board.zash.run.place -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/apple-touch-icon.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/assets/index-CcFj958A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/assets/index-CcFj958A.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/assets/index-DnsHUhFc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/assets/index-DnsHUhFc.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/favicon.ico -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/favicon.svg -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/icon.svg -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/index.html -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/manifest.webmanifest -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-192x192.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-512x512.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-maskable-192x192.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/pwa-maskable-512x512.png -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/registerSW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/registerSW.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/sw.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/ui/zashboard/workbox-3e8df8c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/ui/zashboard/workbox-3e8df8c8.js -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_change.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_groups_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_groups_get.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_groups_name_ch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_groups_name_ch.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_groups_name_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_groups_name_get.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_groups_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_groups_set.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_proxys_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_proxys_get.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_proxys_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_proxys_set.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/openclash/yml_rules_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/openclash/yml_rules_change.sh -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/rpcd/acl.d/luci-app-openclash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/rpcd/acl.d/luci-app-openclash.json -------------------------------------------------------------------------------- /luci-app-openclash/root/usr/share/ucitrack/luci-app-openclash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/usr/share/ucitrack/luci-app-openclash.json -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/addon/lint/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/addon/lint/lint.css -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/addon/lint/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/addon/lint/lint.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/addon/merge/merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/addon/merge/merge.css -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/addon/merge/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/addon/merge/merge.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/img/logo.png -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/img/wrench-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/img/wrench-light.svg -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/lib/codemirror.css -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/lib/codemirror.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/mode/lua/lua.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/mode/shell/shell.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/mode/yaml/yaml.js -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/theme/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/theme/idea.css -------------------------------------------------------------------------------- /luci-app-openclash/root/www/luci-static/resources/openclash/theme/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/root/www/luci-static/resources/openclash/theme/material.css -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/tools/po2lmo/Makefile -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/po2lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/tools/po2lmo/src/po2lmo.c -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/template_lmo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/tools/po2lmo/src/template_lmo.c -------------------------------------------------------------------------------- /luci-app-openclash/tools/po2lmo/src/template_lmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-openclash/tools/po2lmo/src/template_lmo.h -------------------------------------------------------------------------------- /luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /luci-app-passwall/htdocs/luci-static/resources/view/passwall/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/htdocs/luci-static/resources/view/passwall/Sortable.min.js -------------------------------------------------------------------------------- /luci-app-passwall/htdocs/luci-static/resources/view/passwall/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/htdocs/luci-static/resources/view/passwall/qrcode.min.js -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/controller/passwall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/controller/passwall.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/acl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/acl.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/acl_config.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/app_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/app_update.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/global.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/haproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/haproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/log.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/node_config.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/node_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/node_list.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/node_subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/node_subscribe.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/node_subscribe_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/node_subscribe_config.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/other.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/other.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/rule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/rule.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/rule_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/rule_list.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/shunt_rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/shunt_rules.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/socks_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/socks_config.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/naive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/naive.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/ray.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/ss-rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/ss-rust.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/ss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/ss.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/ssr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/ssr.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/trojan-plus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/trojan-plus.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/client/type/tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/client/type/tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/index.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/ray.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/socks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/socks.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/ss-rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/ss-rust.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/ss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/ss.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/ssr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/ssr.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/type/trojan-plus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/type/trojan-plus.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/model/cbi/passwall/server/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/model/cbi/passwall/server/user.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/api.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/com.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/server_app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/server_app.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_naiveproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_naiveproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_shadowsocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_shadowsocks.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_trojan.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_trojan.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/passwall/util_xray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/passwall/util_xray.lua -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/acl/view_chinadns_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/acl/view_chinadns_log.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/app_update/app_version.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/app_update/app_version.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/cbi/hidevalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/cbi/hidevalue.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/global/backup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/global/backup.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/global/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/global/faq.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/global/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/global/footer.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/global/proxy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/global/proxy.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/global/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/global/status.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/haproxy/js.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/haproxy/js.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/haproxy/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/haproxy/status.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/log/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/log/log.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/node_list/link_add_node.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/node_list/link_add_node.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/node_list/link_share_man.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/node_list/link_share_man.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/node_subscribe/js.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/node_subscribe/js.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/rule/rule_version.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/rule/rule_version.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/rule_list/geoview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/rule_list/geoview.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/rule_list/js.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/rule_list/js.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/server/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/server/log.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/server/users_list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/server/users_list_status.htm -------------------------------------------------------------------------------- /luci-app-passwall/luasrc/view/passwall/socks_auto_switch/btn.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/luasrc/view/passwall/socks_auto_switch/btn.htm -------------------------------------------------------------------------------- /luci-app-passwall/po/zh-cn/passwall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/po/zh-cn/passwall.po -------------------------------------------------------------------------------- /luci-app-passwall/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/config/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/etc/config/passwall_server -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/hotplug.d/iface/98-passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/etc/hotplug.d/iface/98-passwall -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/init.d/passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/etc/init.d/passwall -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/init.d/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/etc/init.d/passwall_server -------------------------------------------------------------------------------- /luci-app-passwall/root/etc/uci-defaults/luci-passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/etc/uci-defaults/luci-passwall -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/0_default_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/0_default_config -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/app.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/haproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/haproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/haproxy_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/haproxy_check.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/helper_chinadns_add.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/helper_chinadns_add.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/helper_dnsmasq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/helper_dnsmasq.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/helper_smartdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/helper_smartdns.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/helper_smartdns_add.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/helper_smartdns_add.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/iptables.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/lease2hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/lease2hosts.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/monitor.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/nftables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/nftables.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rule_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rule_update.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/chnlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/chnlist -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/chnroute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/chnroute -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/chnroute6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/chnroute6 -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/direct_host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/direct_host -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/direct_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/direct_ip -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/domains_excluded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/domains_excluded -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/gfwlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/gfwlist -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/lanlist_ipv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/lanlist_ipv4 -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/lanlist_ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/lanlist_ipv6 -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/proxy_host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/proxy_host -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/rules/proxy_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/rules/proxy_ip -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/socks_auto_switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/socks_auto_switch.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/subscribe.lua -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/tasks.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/passwall/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/passwall/test.sh -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/rpcd/acl.d/luci-app-passwall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/rpcd/acl.d/luci-app-passwall.json -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/ucitrack/luci-app-passwall-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/ucitrack/luci-app-passwall-server.json -------------------------------------------------------------------------------- /luci-app-passwall/root/usr/share/ucitrack/luci-app-passwall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall/root/usr/share/ucitrack/luci-app-passwall.json -------------------------------------------------------------------------------- /luci-app-passwall2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/Makefile -------------------------------------------------------------------------------- /luci-app-passwall2/htdocs/luci-static/resources/view/passwall2/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/htdocs/luci-static/resources/view/passwall2/Sortable.min.js -------------------------------------------------------------------------------- /luci-app-passwall2/htdocs/luci-static/resources/view/passwall2/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/htdocs/luci-static/resources/view/passwall2/qrcode.min.js -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/controller/passwall2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/controller/passwall2.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/acl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/acl.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/acl_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/acl_config.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/app_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/app_update.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/geoview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/geoview.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/global.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/haproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/haproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/log.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_config.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_list.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_subscribe.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_subscribe_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/node_subscribe_config.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/other.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/other.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/rule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/rule.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/shunt_rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/shunt_rules.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/socks_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/socks_config.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/naive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/naive.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ray.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ss-rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ss-rust.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ss.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ssr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/ssr.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/client/type/tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/index.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ray.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ss-rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ss-rust.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ss.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ssr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/type/ssr.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/model/cbi/passwall2/server/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/model/cbi/passwall2/server/user.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/api.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/com.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/com.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/server_app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/server_app.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_hysteria2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_hysteria2.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_naiveproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_naiveproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_shadowsocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_shadowsocks.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_sing-box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_sing-box.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_tuic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_tuic.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/passwall2/util_xray.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/passwall2/util_xray.lua -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/app_update/app_version.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/app_update/app_version.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/cbi/hidevalue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/cbi/hidevalue.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/global/backup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/global/backup.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/global/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/global/faq.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/global/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/global/footer.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/global/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/global/status.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/haproxy/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/haproxy/status.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/log/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/log/log.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/node_list/link_add_node.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/node_list/link_add_node.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/node_list/link_share_man.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/node_list/link_share_man.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/node_list/node_list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/node_list/node_list.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/node_subscribe/js.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/node_subscribe/js.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/rule/geoview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/rule/geoview.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/rule/rule_version.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/rule/rule_version.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/server/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/server/log.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/server/users_list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/server/users_list_status.htm -------------------------------------------------------------------------------- /luci-app-passwall2/luasrc/view/passwall2/socks_auto_switch/btn.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/luasrc/view/passwall2/socks_auto_switch/btn.htm -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh-cn/passwall2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/po/zh-cn/passwall2.po -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh-tw/passwall2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/po/zh-tw/passwall2.po -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /luci-app-passwall2/po/zh_Hant: -------------------------------------------------------------------------------- 1 | zh-tw -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/config/passwall2_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/etc/config/passwall2_server -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/hotplug.d/iface/98-passwall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/etc/hotplug.d/iface/98-passwall2 -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/init.d/passwall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/etc/init.d/passwall2 -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/init.d/passwall2_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/etc/init.d/passwall2_server -------------------------------------------------------------------------------- /luci-app-passwall2/root/etc/uci-defaults/luci-passwall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/etc/uci-defaults/luci-passwall2 -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/0_default_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/0_default_config -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/app.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/domains_excluded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/domains_excluded -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/haproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/haproxy.lua -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/haproxy_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/haproxy_check.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/helper_dnsmasq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/helper_dnsmasq.lua -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/i18n.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/i18n.lua -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/iptables.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/lease2hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/lease2hosts.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/monitor.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/nftables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/nftables.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/rule_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/rule_update.lua -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/socks_auto_switch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/socks_auto_switch.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/subscribe.lua -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/tasks.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/passwall2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/passwall2/test.sh -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/rpcd/acl.d/luci-app-passwall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/rpcd/acl.d/luci-app-passwall2.json -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/ucitrack/luci-app-passwall2-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/ucitrack/luci-app-passwall2-server.json -------------------------------------------------------------------------------- /luci-app-passwall2/root/usr/share/ucitrack/luci-app-passwall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-passwall2/root/usr/share/ucitrack/luci-app-passwall2.json -------------------------------------------------------------------------------- /luci-app-ssr-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/Makefile -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/controller/shadowsocksr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/controller/shadowsocksr.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/advanced.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/advanced.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/control.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/control.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/log.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/server-config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/server-config.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/server.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/servers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/servers.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/status.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/backup_restore.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/backup_restore.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/certupload.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/certupload.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/check.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/checkport.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/checkport.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/log.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/ping.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/ping.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/refresh.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/refresh.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/reset.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/reset.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/server_list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/server_list.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/socket.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/socket.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/ssrurl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/ssrurl.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/status.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/luasrc/view/shadowsocksr/subscribe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/luasrc/view/shadowsocksr/subscribe.htm -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/templates/ssr-plus.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/po/templates/ssr-plus.pot -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /luci-app-ssr-plus/po/zh_Hans/ssr-plus.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/po/zh_Hans/ssr-plus.po -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/config/shadowsocksr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/init.d/shadowsocksr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/init.d/shadowsocksr -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/ad.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/applechina.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/applechina.conf -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/black.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/china_ssr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/china_ssr.txt -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/deny.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/deny.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/dnsproxy_dns.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/dnsproxy_dns.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/gfw_base.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/gfw_base.conf -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/gfw_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/gfw_list.conf -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/mosdns-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/mosdns-config.yaml -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/netflix.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/netflix.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/netflixip.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/netflixip.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/oversea_list.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/oversea_list.conf -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/ssrplus/white.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/ssrplus/white.list -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/etc/uci-defaults/luci-ssr-plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/etc/uci-defaults/luci-ssr-plus -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-monitor -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-rules -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/bin/ssr-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/bin/ssr-switch -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/rpcd/acl.d/luci-app-ssr-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/rpcd/acl.d/luci-app-ssr-plus.json -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/chinaipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/chinaipset.sh -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/gen_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/gen_config.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/genred2config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/genred2config.sh -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/gfw2ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/gfw2ipset.sh -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/shadowsocksr.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/shadowsocksr.config -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/ssrplusupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/ssrplusupdate.sh -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/subscribe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/subscribe.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/shadowsocksr/update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/shadowsocksr/update.lua -------------------------------------------------------------------------------- /luci-app-ssr-plus/root/usr/share/ucitrack/luci-app-ssr-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/luci-app-ssr-plus/root/usr/share/ucitrack/luci-app-ssr-plus.json -------------------------------------------------------------------------------- /microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/microsocks/Makefile -------------------------------------------------------------------------------- /naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/naiveproxy/Makefile -------------------------------------------------------------------------------- /naiveproxy/files/naiveproxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/naiveproxy/files/naiveproxy.config -------------------------------------------------------------------------------- /naiveproxy/files/naiveproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/naiveproxy/files/naiveproxy.init -------------------------------------------------------------------------------- /nikki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/Makefile -------------------------------------------------------------------------------- /nikki/files/mixin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/mixin.yaml -------------------------------------------------------------------------------- /nikki/files/nftables/geoip6_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/nftables/geoip6_cn.nft -------------------------------------------------------------------------------- /nikki/files/nftables/geoip_cn.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/nftables/geoip_cn.nft -------------------------------------------------------------------------------- /nikki/files/nikki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/nikki.conf -------------------------------------------------------------------------------- /nikki/files/nikki.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/nikki.init -------------------------------------------------------------------------------- /nikki/files/nikki.upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/nikki.upgrade -------------------------------------------------------------------------------- /nikki/files/scripts/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/scripts/debug.sh -------------------------------------------------------------------------------- /nikki/files/scripts/firewall_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/scripts/firewall_include.sh -------------------------------------------------------------------------------- /nikki/files/scripts/include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/scripts/include.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/uci-defaults/firewall.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/uci-defaults/init.sh -------------------------------------------------------------------------------- /nikki/files/uci-defaults/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/uci-defaults/migrate.sh -------------------------------------------------------------------------------- /nikki/files/ucode/hijack.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/ucode/hijack.ut -------------------------------------------------------------------------------- /nikki/files/ucode/include.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/ucode/include.uc -------------------------------------------------------------------------------- /nikki/files/ucode/mixin.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/nikki/files/ucode/mixin.uc -------------------------------------------------------------------------------- /patch-luci-app-passwall.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/patch-luci-app-passwall.patch -------------------------------------------------------------------------------- /patch-luci-app-ssr-plus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/patch-luci-app-ssr-plus.patch -------------------------------------------------------------------------------- /pdnsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/pdnsd/Makefile -------------------------------------------------------------------------------- /pdnsd/files/pdnsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/pdnsd/files/pdnsd.init -------------------------------------------------------------------------------- /pdnsd/patches/010-no-doc-and-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/pdnsd/patches/010-no-doc-and-test.patch -------------------------------------------------------------------------------- /pdnsd/patches/020-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/pdnsd/patches/020-headers.patch -------------------------------------------------------------------------------- /redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/redsocks2/Makefile -------------------------------------------------------------------------------- /redsocks2/files/redsocks2.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/redsocks2/files/redsocks2.template -------------------------------------------------------------------------------- /shadow-tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadow-tls/Makefile -------------------------------------------------------------------------------- /shadowsocks-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/Makefile -------------------------------------------------------------------------------- /shadowsocks-libev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/README.md -------------------------------------------------------------------------------- /shadowsocks-libev/files/shadowsocks-libev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/files/shadowsocks-libev.config -------------------------------------------------------------------------------- /shadowsocks-libev/files/shadowsocks-libev.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/files/shadowsocks-libev.init -------------------------------------------------------------------------------- /shadowsocks-libev/files/ss-rules/chain.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/files/ss-rules/chain.uc -------------------------------------------------------------------------------- /shadowsocks-libev/files/ss-rules/set.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/files/ss-rules/set.uc -------------------------------------------------------------------------------- /shadowsocks-libev/files/ss-rules/ss-rules.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/files/ss-rules/ss-rules.uc -------------------------------------------------------------------------------- /shadowsocks-libev/patches/100-Upgrade-PCRE-to-PCRE2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/patches/100-Upgrade-PCRE-to-PCRE2.patch -------------------------------------------------------------------------------- /shadowsocks-libev/patches/101-fix-mbedtls3.6-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-libev/patches/101-fix-mbedtls3.6-build.patch -------------------------------------------------------------------------------- /shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /shadowsocksr-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/Makefile -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/0001-Add-ss-server-and-ss-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/0001-Add-ss-server-and-ss-check.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/0002-Revert-verify_simple-and-auth_simple.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/0002-Revert-verify_simple-and-auth_simple.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/0003-Refine-Usage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/0003-Refine-Usage.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/100-fix-gcc-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/100-fix-gcc-10.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/101-Fix-Werror-sizeof-pointer-memaccess.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/101-Fix-Werror-sizeof-pointer-memaccess.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/102-Read-listening-mode-from-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/102-Read-listening-mode-from-config.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/103-Add-TPROXY-support-for-TCP-ssr-redir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/103-Add-TPROXY-support-for-TCP-ssr-redir.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/patches/105-Upgrade-PCRE-to-PCRE2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/patches/105-Upgrade-PCRE-to-PCRE2.patch -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/Makefile.am -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/Makefile.in -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/README.md -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/acl.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/acl.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/auth.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/auth.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/base64.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/base64.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/cache.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/cache.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/check.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/common.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/crc32.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/encrypt.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/encrypt.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/http.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/http.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/http_simple.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/http_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/http_simple.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/jconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/jconf.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/jconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/jconf.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/json.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/json.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/list.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/list.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/netutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/netutils.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/netutils.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/obfs.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/obfs.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/obfsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/obfsutil.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/protocol.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/resolv.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/resolv.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/rule.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/rule.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/server.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/server.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/tls.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/tls.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls1.2_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/tls1.2_ticket.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/tls1.2_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/tls1.2_ticket.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/udprelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/udprelay.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/udprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/udprelay.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/uthash.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/utils.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/utils.h -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/verify.c -------------------------------------------------------------------------------- /shadowsocksr-libev/src/server/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/shadowsocksr-libev/src/server/verify.h -------------------------------------------------------------------------------- /simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/simple-obfs/Makefile -------------------------------------------------------------------------------- /sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/sing-box/Makefile -------------------------------------------------------------------------------- /sing-box/files/sing-box.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/sing-box/files/sing-box.conf -------------------------------------------------------------------------------- /sing-box/files/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/sing-box/files/sing-box.init -------------------------------------------------------------------------------- /tcping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/tcping/Makefile -------------------------------------------------------------------------------- /tcping/patches/0001-tcping-add-IPv6-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/tcping/patches/0001-tcping-add-IPv6-support.patch -------------------------------------------------------------------------------- /trojan-plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/trojan-plus/Makefile -------------------------------------------------------------------------------- /trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/trojan/Makefile -------------------------------------------------------------------------------- /tuic-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/tuic-client/Makefile -------------------------------------------------------------------------------- /v2ray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/v2ray-core/Makefile -------------------------------------------------------------------------------- /v2ray-geodata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/v2ray-geodata/Makefile -------------------------------------------------------------------------------- /v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/xray-core/Makefile -------------------------------------------------------------------------------- /xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbwml/openwrt_helloworld/HEAD/xray-plugin/Makefile --------------------------------------------------------------------------------