feat(mesh): Yggdrasil extended peer discovery + bugfixes

## New Features
- secubox-app-yggdrasil-discovery: Mesh peer discovery via gossip protocol
  - yggctl CLI: status, self, peers, announce, discover, bootstrap
  - Auto-peering with trust verification (master-link fingerprint)
  - Daemon for periodic announcements

## Bug Fixes
- tor-shield: Fix opkg downloads failing when Tor active
  - DNS over Tor disabled by default
  - Auto-exclude public DNS servers from iptables rules
  - Excluded domains bypass list (openwrt.org, pool.ntp.org, etc.)

- haproxy: Fix portal 503 "End of Internet" error
  - Corrected malformed vhost backend configuration
  - Regenerated HAProxy config from UCI

- luci-app-nextcloud: Fix users list showing empty
  - RPC expect clause was extracting array, render expected object

## Updated
- Bonus feed: All IPKs rebuilt
- Documentation: HISTORY.md, WIP.md, TODO.md updated

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-02-28 17:32:41 +01:00
parent 80f2d2daa7
commit 4a0ab9530f
157 changed files with 1463 additions and 259 deletions

View File

@ -1,6 +1,6 @@
# SecuBox UI & Theme History # SecuBox UI & Theme History
_Last updated: 2026-02-28_ _Last updated: 2026-02-28 (HAProxy Portal 503 Fix)_
1. **Unified Dashboard Refresh (2025-12-20)** 1. **Unified Dashboard Refresh (2025-12-20)**
- Dashboard received the "sh-page-header" layout, hero stats, and SecuNav top tabs. - Dashboard received the "sh-page-header" layout, hero stats, and SecuNav top tabs.
@ -3932,3 +3932,65 @@ git checkout HEAD -- index.html
- Federation enabled with trusted servers (matrix.org) - Federation enabled with trusted servers (matrix.org)
- Registration via token: `n5MCOgUH9bmfM7I5uCWfA` - Registration via token: `n5MCOgUH9bmfM7I5uCWfA`
- E2E cross-signing supported - E2E cross-signing supported
54. **Yggdrasil Extended Peer Discovery (2026-02-28)**
- **Feature:** Automatic peer discovery and trust-verified auto-peering for Yggdrasil mesh
- **New Package:** `secubox-app-yggdrasil-discovery`
- **CLI Tool:** `yggctl` with 15+ commands:
- `yggctl self` - Show node's Yggdrasil info (IPv6, pubkey, hostname)
- `yggctl peers` - Show current Yggdrasil peers
- `yggctl announce` - Announce node to mesh via gossip
- `yggctl discover` - List discovered SecuBox nodes
- `yggctl auto-connect` - Connect to trusted discovered peers
- `yggctl bootstrap {list|add|remove|connect}` - Manage bootstrap peers
- `yggctl status` - Show discovery status and stats
- `yggctl enable/disable` - Toggle auto-discovery
- **Gossip Integration:**
- Added `yggdrasil_peer` message type to mirrornet gossip protocol
- `gossip_announce_yggdrasil()` helper function
- Gossip handler at `/usr/lib/yggdrasil-discovery/gossip-handler.sh`
- **Trust Verification:**
- Master-link fingerprint verification for auto-peering
- ZKP fingerprint support
- Reputation score threshold (default: 50)
- Configurable via `require_trust` and `min_trust_score` options
- **Auto-Peering:**
- Automatic connection to trusted discovered peers
- Yggdrasil IPv6 range validation (200::/7)
- Duplicate peer prevention
- **UCI Configuration:**
- `yggdrasil-discovery.main` - enabled, auto_announce, auto_peer, require_trust
- `yggdrasil-discovery.bootstrap` - list of bootstrap peer URIs
- **Daemon:**
- Periodic announcement daemon (`daemon.sh`)
- Configurable announce interval (default: 300s)
55. **Tor Shield opkg Bug Fix (2026-02-28)**
- **Root Cause:** DNS queries for package repositories went through Tor DNS, which is slow/unreliable
- **Symptom:** `opkg update` failed with "wget returned 4" when Tor Shield was active
- **Fix:** Added dnsmasq bypass for excluded domains
- **Implementation:**
- `setup_dnsmasq_bypass()` generates `/tmp/dnsmasq.d/tor-shield-bypass.conf`
- Excluded domains resolve directly via upstream DNS (WAN DNS or fallback to 1.1.1.1)
- `cleanup_dnsmasq_bypass()` removes config on Tor Shield stop
- **Default Exclusions:**
- OpenWrt repos: `downloads.openwrt.org`, `openwrt.org`, `mirror.leaseweb.com`
- NTP servers: `pool.ntp.org`, `time.google.com`, `time.cloudflare.com`
- Let's Encrypt ACME: `acme-v02.api.letsencrypt.org`
- DNS provider APIs: `api.gandi.net`, `api.ovh.com`, `api.cloudflare.com`
- Security feeds: `services.nvd.nist.gov`, `cve.mitre.org`
- Two-level bypass: dnsmasq (DNS resolution) + iptables (traffic routing)
56. **HAProxy Portal 503 Fix (2026-02-28)**
- **Root Cause:** Vhost for `192.168.255.1` had malformed backend: `backend='--backend'`
- **Symptom:** Portal returned "503 End of Internet" when accessing `https://192.168.255.1`
- **Investigation:**
- LuCI worked directly on port 8081, HAProxy container was stopped
- Container exit logs showed: `unable to find required use_backend: '--backend'`
- The `haproxyctl vhost add` command parsing incorrectly captured `--backend` as literal value
- **Fix:**
- Corrected UCI: `uci set haproxy.vhost_192_168_255_1.backend='luci_default'`
- Disabled ACME (certs can't be issued for IP addresses): `acme='0'`
- Regenerated HAProxy config: `haproxyctl generate`
- Restarted container: `lxc-start -n haproxy`
- Portal now returns 200 and redirects to LuCI

View File

@ -196,7 +196,7 @@ All cloud providers are **opt-in**. Offline resilience: local tier always active
- [x] Yggdrasil overlay — Done 2026-02-26 (bidirectional IPv6, SSH, LAN multicast discovery) - [x] Yggdrasil overlay — Done 2026-02-26 (bidirectional IPv6, SSH, LAN multicast discovery)
- [x] Meshname DNS — Done 2026-02-28 (decentralized .ygg resolution via gossip + dnsmasq) - [x] Meshname DNS — Done 2026-02-28 (decentralized .ygg resolution via gossip + dnsmasq)
- [ ] Extended peer discovery - [x] Extended peer discovery — Done 2026-02-28 (yggctl CLI, gossip-based peer announcements, trust-verified auto-peering)
### Certifications Ciblees ### Certifications Ciblees
@ -215,11 +215,13 @@ All cloud providers are **opt-in**. Offline resilience: local tier always active
## Deferred / Backlog ## Deferred / Backlog
### Tor Shield / opkg Bug ### ~~Tor Shield / opkg Bug~~ — RESOLVED (2026-02-28)
- opkg downloads fail (`wget returned 4`) when Tor Shield is active. - ~~opkg downloads fail (`wget returned 4`) when Tor Shield is active.~~
- Direct `wget` to full URL works — likely DNS/routing interference. - **Root cause**: DNS queries for package repos went through Tor DNS, which is slow/unreliable
- Investigate: opkg proxy settings, Tor split-routing exclusions for package repos. - **Fix**: Added dnsmasq bypass for excluded domains (`/tmp/dnsmasq.d/tor-shield-bypass.conf`)
- Excluded domains now resolve directly via upstream DNS, bypassing Tor
- Default exclusions include: openwrt.org, pool.ntp.org, letsencrypt.org, DNS provider APIs
### v2 Long-term ### v2 Long-term

View File

@ -1,6 +1,6 @@
# Work In Progress (Claude) # Work In Progress (Claude)
_Last updated: 2026-02-25 (Factory Dashboard LuCI)_ _Last updated: 2026-02-28 (HAProxy Portal Fix)_
> **Architecture Reference**: SecuBox Fanzine v3 — Les 4 Couches > **Architecture Reference**: SecuBox Fanzine v3 — Les 4 Couches
@ -62,6 +62,39 @@ _Last updated: 2026-02-25 (Factory Dashboard LuCI)_
- Gossip-based exposure config sync via secubox-p2p - Gossip-based exposure config sync via secubox-p2p
- Created `luci-app-vortex-dns` dashboard - Created `luci-app-vortex-dns` dashboard
### Just Completed (2026-02-28)
- **Yggdrasil Extended Peer Discovery** — DONE (2026-02-28)
- Created `secubox-app-yggdrasil-discovery` package for mesh peer discovery
- **yggctl CLI** with commands: status, self, peers, announce, discover, bootstrap
- Gossip protocol integration via mirrornet `yggdrasil_peer` message type
- Auto-peering with trust verification (master-link fingerprint)
- Daemon for periodic announcements (configurable interval)
- UCI config: enabled, auto_announce, announce_interval, auto_peer, require_trust, min_trust_score
- Bootstrap peers list for initial network connectivity
- Tested on C3BOX: yggctl showing correct IPv6 and peer stats
- Files: Makefile, init script, UCI config, core.sh, daemon.sh, gossip-handler.sh, yggctl CLI
- Completes v1.1+ Extended Mesh roadmap (all 3 items done)
- **tdahbdss Routing Fix** — DONE (2026-02-28)
- AdGuard Home hijacked port 8989 (MetaBlogizer's port)
- Changed AdGuard config from port 8989 to 3000
- MetaBlogizer routes restored
- **Tor Shield opkg Bug Fix** — DONE (2026-02-28)
- Root cause: DNS queries for package repos went through Tor DNS (slow/unreliable)
- Fix: Added dnsmasq bypass for excluded domains
- `setup_dnsmasq_bypass()` generates `/tmp/dnsmasq.d/tor-shield-bypass.conf`
- Excluded domains resolve directly via upstream DNS, bypassing Tor
- Default exclusions: openwrt.org, pool.ntp.org, letsencrypt.org, DNS provider APIs
- `cleanup_dnsmasq_bypass()` removes config on Tor Shield stop
- **HAProxy Portal 503 Fix** — DONE (2026-02-28)
- Root cause: Vhost for 192.168.255.1 had malformed backend: `backend='--backend'`
- Container exit: `unable to find required use_backend: '--backend'`
- Fix: Corrected UCI to `backend='luci_default'`, disabled ACME, regenerated config
- Portal now returns 200 and redirects to LuCI
### Just Completed (2026-02-27) ### Just Completed (2026-02-27)
- **OpenClaw AI Assistant LuCI Package** — DONE (2026-02-27) - **OpenClaw AI Assistant LuCI Package** — DONE (2026-02-27)
@ -1088,14 +1121,24 @@ Implementing 3 evolutions inspired by SysWarden patterns:
### Next Up — Couche 1 ### Next Up — Couche 1
**v1.1+ Extended Mesh — COMPLETE (2026-02-28)**
1. ~~**Multi-Node Mesh Testing**~~ — DONE (2026-02-26) 1. ~~**Multi-Node Mesh Testing**~~ — DONE (2026-02-26)
- ~~Deploy second SecuBox node to test real peer-to-peer sync~~
- ~~Validate bidirectional threat intelligence sharing~~
- ZKP, blockchain sync, and threat intel propagation all validated - ZKP, blockchain sync, and threat intel propagation all validated
2. **WAF Auto-Ban Tuning** (if needed) 2. ~~**Yggdrasil Extended Peer Discovery**~~ — DONE (2026-02-28)
- `secubox-app-yggdrasil-discovery` + `yggctl` CLI
- Gossip-based peer announcements, trust-verified auto-peering
3. **WAF Auto-Ban Tuning** (optional, as-needed)
- Sensitivity threshold adjustment based on production traffic - Sensitivity threshold adjustment based on production traffic
**Backlog / Deferred:**
- ~~Tor Shield / opkg bug~~ — FIXED (2026-02-28) - dnsmasq bypass for excluded domains
- Nextcloud self-hosted cloud storage (v2)
- SSMTP / mail host / MX record management (v2)
- Reverse MWAN WireGuard peers (v2)
--- ---
## Couche 2 — AI Gateway ## Couche 2 — AI Gateway
@ -1285,7 +1328,7 @@ Required components:
## Known Bugs (Deferred) ## Known Bugs (Deferred)
- **Tor Shield / opkg conflict**: opkg downloads fail (`wget returned 4`) when Tor Shield is active. Likely DNS/routing interference. - ~~**Tor Shield / opkg conflict**~~: FIXED (2026-02-28) - Added dnsmasq bypass for excluded domains
--- ---

View File

@ -482,7 +482,10 @@
"Bash(pip show:*)", "Bash(pip show:*)",
"Bash(uvx:*)", "Bash(uvx:*)",
"Bash(claude mcp add:*)", "Bash(claude mcp add:*)",
"WebFetch(domain:openclaw.ai)" "WebFetch(domain:openclaw.ai)",
"Bash(SSH_AUTH_SOCK=/run/user/1000/keyring/ssh ssh:*)",
"Bash(unset:*)",
"Bash(SSH_ASKPASS=\"\" DISPLAY=\"\" SSH_AUTH_SOCK=/run/user/1000/keyring/ssh ssh:*)"
] ]
} }
} }

View File

@ -69,7 +69,7 @@ var callRestore = rpc.declare({
var callListBackups = rpc.declare({ var callListBackups = rpc.declare({
object: 'luci.nextcloud', object: 'luci.nextcloud',
method: 'list_backups', method: 'list_backups',
expect: { backups: [] } expect: {}
}); });
var callSSLEnable = rpc.declare({ var callSSLEnable = rpc.declare({
@ -113,7 +113,7 @@ var callUninstall = rpc.declare({
var callListUsers = rpc.declare({ var callListUsers = rpc.declare({
object: 'luci.nextcloud', object: 'luci.nextcloud',
method: 'list_users', method: 'list_users',
expect: { users: [] } expect: {}
}); });
var callResetPassword = rpc.declare({ var callResetPassword = rpc.declare({

View File

@ -23,7 +23,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: Comprehensive authentication and session management with captive portal, OAuth2/OIDC integration, voucher system, and time-based access control Description: Comprehensive authentication and session management with captive portal, OAuth2/OIDC integration, voucher system, and time-based access control
Filename: luci-app-auth-guardian_0.4.0-r3_all.ipk Filename: luci-app-auth-guardian_0.4.0-r3_all.ipk
Size: 12393 Size: 12397
Package: luci-app-backup Package: luci-app-backup
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -35,7 +35,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI Backup Manager Description: LuCI Backup Manager
Filename: luci-app-backup_1.0.0-r1_all.ipk Filename: luci-app-backup_1.0.0-r1_all.ipk
Size: 4537 Size: 4534
Package: luci-app-bandwidth-manager Package: luci-app-bandwidth-manager
Version: 0.5.0-r2 Version: 0.5.0-r2
@ -59,7 +59,7 @@ Architecture: all
Installed-Size: 122880 Installed-Size: 122880
Description: Dashboard for managing local CDN caching proxy on OpenWrt Description: Dashboard for managing local CDN caching proxy on OpenWrt
Filename: luci-app-cdn-cache_0.5.0-r3_all.ipk Filename: luci-app-cdn-cache_0.5.0-r3_all.ipk
Size: 24255 Size: 24254
Package: luci-app-client-guardian Package: luci-app-client-guardian
Version: 0.4.0-r7 Version: 0.4.0-r7
@ -71,7 +71,7 @@ Architecture: all
Installed-Size: 276480 Installed-Size: 276480
Description: Network Access Control with client monitoring, zone management, captive portal, parental controls, and SMS/email alerts Description: Network Access Control with client monitoring, zone management, captive portal, parental controls, and SMS/email alerts
Filename: luci-app-client-guardian_0.4.0-r7_all.ipk Filename: luci-app-client-guardian_0.4.0-r7_all.ipk
Size: 52685 Size: 52686
Package: luci-app-cloner Package: luci-app-cloner
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -82,7 +82,7 @@ Architecture: all
Installed-Size: 102400 Installed-Size: 102400
Description: SecuBox cloning station for building and deploying clone images Description: SecuBox cloning station for building and deploying clone images
Filename: luci-app-cloner_1.0.0-r1_all.ipk Filename: luci-app-cloner_1.0.0-r1_all.ipk
Size: 19433 Size: 19434
Package: luci-app-config-advisor Package: luci-app-config-advisor
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -94,7 +94,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: ANSSI CSPN compliance checking and security configuration advisor Description: ANSSI CSPN compliance checking and security configuration advisor
Filename: luci-app-config-advisor_1.0.0-r1_all.ipk Filename: luci-app-config-advisor_1.0.0-r1_all.ipk
Size: 8859 Size: 8861
Package: luci-app-cookie-tracker Package: luci-app-cookie-tracker
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -105,7 +105,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI Cookie Tracker Dashboard Description: LuCI Cookie Tracker Dashboard
Filename: luci-app-cookie-tracker_1.0.0-r1_all.ipk Filename: luci-app-cookie-tracker_1.0.0-r1_all.ipk
Size: 5658 Size: 5660
Package: luci-app-crowdsec-dashboard Package: luci-app-crowdsec-dashboard
Version: 0.8.0-r1 Version: 0.8.0-r1
@ -117,7 +117,7 @@ Architecture: all
Installed-Size: 225280 Installed-Size: 225280
Description: Real-time security monitoring dashboard for CrowdSec on OpenWrt Description: Real-time security monitoring dashboard for CrowdSec on OpenWrt
Filename: luci-app-crowdsec-dashboard_0.8.0-r1_all.ipk Filename: luci-app-crowdsec-dashboard_0.8.0-r1_all.ipk
Size: 43022 Size: 43023
Package: luci-app-cve-triage Package: luci-app-cve-triage
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -129,7 +129,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI CVE Triage Dashboard Description: LuCI CVE Triage Dashboard
Filename: luci-app-cve-triage_1.0.0-r1_all.ipk Filename: luci-app-cve-triage_1.0.0-r1_all.ipk
Size: 5946 Size: 5945
Package: luci-app-cyberfeed Package: luci-app-cyberfeed
Version: 0.1.1-r1 Version: 0.1.1-r1
@ -141,7 +141,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: Cyberpunk-themed RSS feed aggregator dashboard with social media support Description: Cyberpunk-themed RSS feed aggregator dashboard with social media support
Filename: luci-app-cyberfeed_0.1.1-r1_all.ipk Filename: luci-app-cyberfeed_0.1.1-r1_all.ipk
Size: 12885 Size: 12887
Package: luci-app-device-intel Package: luci-app-device-intel
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -153,7 +153,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: LuCI SecuBox Device Intelligence Description: LuCI SecuBox Device Intelligence
Filename: luci-app-device-intel_1.0.0-r1_all.ipk Filename: luci-app-device-intel_1.0.0-r1_all.ipk
Size: 12052 Size: 12049
Package: luci-app-dnsguard Package: luci-app-dnsguard
Version: 1.1.0-r1 Version: 1.1.0-r1
@ -172,7 +172,7 @@ Description: SecuBox DNS Guard provides privacy-focused DNS management with AI-
- Real-time alerts and blocklist management - Real-time alerts and blocklist management
- Domain analysis with LocalAI integration - Domain analysis with LocalAI integration
Filename: luci-app-dnsguard_1.1.0-r1_all.ipk Filename: luci-app-dnsguard_1.1.0-r1_all.ipk
Size: 12445 Size: 12448
Package: luci-app-dns-provider Package: luci-app-dns-provider
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -184,7 +184,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI DNS Provider Manager Description: LuCI DNS Provider Manager
Filename: luci-app-dns-provider_1.0.0-r1_all.ipk Filename: luci-app-dns-provider_1.0.0-r1_all.ipk
Size: 7168 Size: 7175
Package: luci-app-domoticz Package: luci-app-domoticz
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -196,7 +196,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI Domoticz Home Automation Configuration Description: LuCI Domoticz Home Automation Configuration
Filename: luci-app-domoticz_1.0.0-r1_all.ipk Filename: luci-app-domoticz_1.0.0-r1_all.ipk
Size: 7125 Size: 7122
Package: luci-app-exposure Package: luci-app-exposure
Version: 1.0.0-r3 Version: 1.0.0-r3
@ -208,7 +208,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: LuCI SecuBox Service Exposure Manager Description: LuCI SecuBox Service Exposure Manager
Filename: luci-app-exposure_1.0.0-r3_all.ipk Filename: luci-app-exposure_1.0.0-r3_all.ipk
Size: 11697 Size: 11700
Package: luci-app-gitea Package: luci-app-gitea
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -220,7 +220,7 @@ Architecture: all
Installed-Size: 92160 Installed-Size: 92160
Description: Modern dashboard for Gitea Platform management on OpenWrt Description: Modern dashboard for Gitea Platform management on OpenWrt
Filename: luci-app-gitea_1.0.0-r2_all.ipk Filename: luci-app-gitea_1.0.0-r2_all.ipk
Size: 16621 Size: 16622
Package: luci-app-glances Package: luci-app-glances
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -232,7 +232,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: Modern dashboard for Glances system monitoring with SecuBox theme Description: Modern dashboard for Glances system monitoring with SecuBox theme
Filename: luci-app-glances_1.0.0-r2_all.ipk Filename: luci-app-glances_1.0.0-r2_all.ipk
Size: 7018 Size: 7016
Package: luci-app-gotosocial Package: luci-app-gotosocial
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -256,7 +256,7 @@ Architecture: all
Installed-Size: 225280 Installed-Size: 225280
Description: Web interface for managing HAProxy load balancer with vhosts, SSL certificates, and backend routing Description: Web interface for managing HAProxy load balancer with vhosts, SSL certificates, and backend routing
Filename: luci-app-haproxy_1.0.0-r8_all.ipk Filename: luci-app-haproxy_1.0.0-r8_all.ipk
Size: 35338 Size: 35340
Package: luci-app-hexojs Package: luci-app-hexojs
Version: 1.0.0-r3 Version: 1.0.0-r3
@ -304,7 +304,7 @@ Architecture: all
Installed-Size: 61440 Installed-Size: 61440
Description: LuCI Jabber/XMPP Server (Prosody) Description: LuCI Jabber/XMPP Server (Prosody)
Filename: luci-app-jabber_0_all.ipk Filename: luci-app-jabber_0_all.ipk
Size: 9307 Size: 9308
Package: luci-app-jellyfin Package: luci-app-jellyfin
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -316,7 +316,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: LuCI Jellyfin Media Server Configuration Description: LuCI Jellyfin Media Server Configuration
Filename: luci-app-jellyfin_1.0.0-r1_all.ipk Filename: luci-app-jellyfin_1.0.0-r1_all.ipk
Size: 10484 Size: 10485
Package: luci-app-jitsi Package: luci-app-jitsi
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -328,7 +328,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI Jitsi Meet Configuration Description: LuCI Jitsi Meet Configuration
Filename: luci-app-jitsi_1.0.0-r1_all.ipk Filename: luci-app-jitsi_1.0.0-r1_all.ipk
Size: 5177 Size: 5180
Package: luci-app-ksm-manager Package: luci-app-ksm-manager
Version: 0.4.0-r2 Version: 0.4.0-r2
@ -340,7 +340,7 @@ Architecture: all
Installed-Size: 112640 Installed-Size: 112640
Description: Centralized cryptographic key management with hardware security module (HSM) support for Nitrokey and YubiKey devices. Provides secure key storage, certificate management, SSH key handling, and secret storage with audit logging. Description: Centralized cryptographic key management with hardware security module (HSM) support for Nitrokey and YubiKey devices. Provides secure key storage, certificate management, SSH key handling, and secret storage with audit logging.
Filename: luci-app-ksm-manager_0.4.0-r2_all.ipk Filename: luci-app-ksm-manager_0.4.0-r2_all.ipk
Size: 18777 Size: 18783
Package: luci-app-localai Package: luci-app-localai
Version: 0.1.0-r15 Version: 0.1.0-r15
@ -352,7 +352,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: Modern dashboard for LocalAI LLM management on OpenWrt Description: Modern dashboard for LocalAI LLM management on OpenWrt
Filename: luci-app-localai_0.1.0-r15_all.ipk Filename: luci-app-localai_0.1.0-r15_all.ipk
Size: 13318 Size: 13321
Package: luci-app-localrecall Package: luci-app-localrecall
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -364,7 +364,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI LocalRecall AI Memory Dashboard Description: LuCI LocalRecall AI Memory Dashboard
Filename: luci-app-localrecall_1.0.0-r1_all.ipk Filename: luci-app-localrecall_1.0.0-r1_all.ipk
Size: 8416 Size: 8423
Package: luci-app-lyrion Package: luci-app-lyrion
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -376,7 +376,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI support for Lyrion Music Server Description: LuCI support for Lyrion Music Server
Filename: luci-app-lyrion_1.0.0-r1_all.ipk Filename: luci-app-lyrion_1.0.0-r1_all.ipk
Size: 6833 Size: 6841
Package: luci-app-mac-guardian Package: luci-app-mac-guardian
Version: 0.5.0-r1 Version: 0.5.0-r1
@ -388,7 +388,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI MAC Guardian - WiFi MAC Security Monitor Description: LuCI MAC Guardian - WiFi MAC Security Monitor
Filename: luci-app-mac-guardian_0.5.0-r1_all.ipk Filename: luci-app-mac-guardian_0.5.0-r1_all.ipk
Size: 6662 Size: 6669
Package: luci-app-magicmirror2 Package: luci-app-magicmirror2
Version: 0.4.0-r6 Version: 0.4.0-r6
@ -400,7 +400,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: Modern dashboard for MagicMirror2 smart display platform with module manager and SecuBox theme Description: Modern dashboard for MagicMirror2 smart display platform with module manager and SecuBox theme
Filename: luci-app-magicmirror2_0.4.0-r6_all.ipk Filename: luci-app-magicmirror2_0.4.0-r6_all.ipk
Size: 12360 Size: 12361
Package: luci-app-mailinabox Package: luci-app-mailinabox
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -412,7 +412,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI support for Mail-in-a-Box Description: LuCI support for Mail-in-a-Box
Filename: luci-app-mailinabox_1.0.0-r1_all.ipk Filename: luci-app-mailinabox_1.0.0-r1_all.ipk
Size: 5482 Size: 5483
Package: luci-app-mailserver Package: luci-app-mailserver
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -436,7 +436,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI SecuBox Master-Link Mesh Management Description: LuCI SecuBox Master-Link Mesh Management
Filename: luci-app-master-link_1.0.0-r1_all.ipk Filename: luci-app-master-link_1.0.0-r1_all.ipk
Size: 6305 Size: 6306
Package: luci-app-matrix Package: luci-app-matrix
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -448,7 +448,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI Matrix Homeserver Dashboard Description: LuCI Matrix Homeserver Dashboard
Filename: luci-app-matrix_1.0.0-r1_all.ipk Filename: luci-app-matrix_1.0.0-r1_all.ipk
Size: 7525 Size: 7527
Package: luci-app-media-flow Package: luci-app-media-flow
Version: 0.6.4-r1 Version: 0.6.4-r1
@ -460,7 +460,7 @@ Architecture: all
Installed-Size: 133120 Installed-Size: 133120
Description: Real-time detection and monitoring of streaming services (Netflix, YouTube, Spotify, etc.) with quality estimation, history tracking, and alerts. Supports nDPId local DPI and netifyd. Description: Real-time detection and monitoring of streaming services (Netflix, YouTube, Spotify, etc.) with quality estimation, history tracking, and alerts. Supports nDPId local DPI and netifyd.
Filename: luci-app-media-flow_0.6.4-r1_all.ipk Filename: luci-app-media-flow_0.6.4-r1_all.ipk
Size: 25380 Size: 25382
Package: luci-app-metablogizer Package: luci-app-metablogizer
Version: 1.1.0-r1 Version: 1.1.0-r1
@ -484,7 +484,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI support for Metabolizer CMS Description: LuCI support for Metabolizer CMS
Filename: luci-app-metabolizer_1.0.0-r2_all.ipk Filename: luci-app-metabolizer_1.0.0-r2_all.ipk
Size: 4818 Size: 4820
Package: luci-app-mitmproxy Package: luci-app-mitmproxy
Version: 0.5.0-r2 Version: 0.5.0-r2
@ -496,7 +496,7 @@ Architecture: all
Installed-Size: 71680 Installed-Size: 71680
Description: Modern dashboard for mitmproxy HTTPS traffic inspection with SecuBox theme Description: Modern dashboard for mitmproxy HTTPS traffic inspection with SecuBox theme
Filename: luci-app-mitmproxy_0.5.0-r2_all.ipk Filename: luci-app-mitmproxy_0.5.0-r2_all.ipk
Size: 13231 Size: 13234
Package: luci-app-mmpm Package: luci-app-mmpm
Version: 0.2.0-r3 Version: 0.2.0-r3
@ -508,7 +508,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: Web interface for MMPM - MagicMirror Package Manager Description: Web interface for MMPM - MagicMirror Package Manager
Filename: luci-app-mmpm_0.2.0-r3_all.ipk Filename: luci-app-mmpm_0.2.0-r3_all.ipk
Size: 7967 Size: 7974
Package: luci-app-mqtt-bridge Package: luci-app-mqtt-bridge
Version: 0.4.0-r4 Version: 0.4.0-r4
@ -520,7 +520,7 @@ Architecture: all
Installed-Size: 122880 Installed-Size: 122880
Description: USB-to-MQTT IoT hub with SecuBox theme Description: USB-to-MQTT IoT hub with SecuBox theme
Filename: luci-app-mqtt-bridge_0.4.0-r4_all.ipk Filename: luci-app-mqtt-bridge_0.4.0-r4_all.ipk
Size: 22685 Size: 22691
Package: luci-app-ndpid Package: luci-app-ndpid
Version: 1.1.2-r2 Version: 1.1.2-r2
@ -532,7 +532,7 @@ Architecture: all
Installed-Size: 122880 Installed-Size: 122880
Description: Modern dashboard for nDPId deep packet inspection on OpenWrt Description: Modern dashboard for nDPId deep packet inspection on OpenWrt
Filename: luci-app-ndpid_1.1.2-r2_all.ipk Filename: luci-app-ndpid_1.1.2-r2_all.ipk
Size: 21701 Size: 21700
Package: luci-app-netdata-dashboard Package: luci-app-netdata-dashboard
Version: 0.5.0-r2 Version: 0.5.0-r2
@ -544,7 +544,7 @@ Architecture: all
Installed-Size: 112640 Installed-Size: 112640
Description: Real-time system monitoring dashboard with Netdata integration for OpenWrt Description: Real-time system monitoring dashboard with Netdata integration for OpenWrt
Filename: luci-app-netdata-dashboard_0.5.0-r2_all.ipk Filename: luci-app-netdata-dashboard_0.5.0-r2_all.ipk
Size: 20561 Size: 20559
Package: luci-app-network-anomaly Package: luci-app-network-anomaly
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -556,7 +556,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI Network Anomaly Detection Dashboard Description: LuCI Network Anomaly Detection Dashboard
Filename: luci-app-network-anomaly_1.0.0-r1_all.ipk Filename: luci-app-network-anomaly_1.0.0-r1_all.ipk
Size: 7645 Size: 7644
Package: luci-app-network-modes Package: luci-app-network-modes
Version: 0.5.0-r3 Version: 0.5.0-r3
@ -568,7 +568,7 @@ Architecture: all
Installed-Size: 286720 Installed-Size: 286720
Description: Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router Description: Configure OpenWrt for different network modes: Sniffer, Access Point, Relay, Router
Filename: luci-app-network-modes_0.5.0-r3_all.ipk Filename: luci-app-network-modes_0.5.0-r3_all.ipk
Size: 54224 Size: 54227
Package: luci-app-network-tweaks Package: luci-app-network-tweaks
Version: 1.0.0-r7 Version: 1.0.0-r7
@ -580,7 +580,7 @@ Architecture: all
Installed-Size: 81920 Installed-Size: 81920
Description: Unified network services dashboard with DNS/hosts sync, CDN cache control, and WPAD auto-proxy configuration Description: Unified network services dashboard with DNS/hosts sync, CDN cache control, and WPAD auto-proxy configuration
Filename: luci-app-network-tweaks_1.0.0-r7_all.ipk Filename: luci-app-network-tweaks_1.0.0-r7_all.ipk
Size: 15946 Size: 15948
Package: luci-app-nextcloud Package: luci-app-nextcloud
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -592,7 +592,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: LuCI support for Nextcloud LXC Description: LuCI support for Nextcloud LXC
Filename: luci-app-nextcloud_1.0.0-r1_all.ipk Filename: luci-app-nextcloud_1.0.0-r1_all.ipk
Size: 10342 Size: 10350
Package: luci-app-ollama Package: luci-app-ollama
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -616,7 +616,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: Web interface for OpenClaw personal AI with Claude/OpenAI/Ollama support Description: Web interface for OpenClaw personal AI with Claude/OpenAI/Ollama support
Filename: luci-app-openclaw_1.0.0-r1_all.ipk Filename: luci-app-openclaw_1.0.0-r1_all.ipk
Size: 8408 Size: 8414
Package: luci-app-peertube Package: luci-app-peertube
Version: 0 Version: 0
@ -628,7 +628,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI PeerTube Video Platform Description: LuCI PeerTube Video Platform
Filename: luci-app-peertube_0_all.ipk Filename: luci-app-peertube_0_all.ipk
Size: 5757 Size: 5755
Package: luci-app-picobrew Package: luci-app-picobrew
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -640,7 +640,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: Modern dashboard for PicoBrew Server management on OpenWrt Description: Modern dashboard for PicoBrew Server management on OpenWrt
Filename: luci-app-picobrew_1.0.0-r1_all.ipk Filename: luci-app-picobrew_1.0.0-r1_all.ipk
Size: 9529 Size: 9534
Package: luci-app-secubox Package: luci-app-secubox
Version: 0.7.1-r4 Version: 0.7.1-r4
@ -663,7 +663,7 @@ Architecture: all
Installed-Size: 337920 Installed-Size: 337920
Description: Unified admin control center for SecuBox appstore plugins with system monitoring Description: Unified admin control center for SecuBox appstore plugins with system monitoring
Filename: luci-app-secubox-admin_1.0.0-r19_all.ipk Filename: luci-app-secubox-admin_1.0.0-r19_all.ipk
Size: 58039 Size: 58041
Package: luci-app-secubox-crowdsec Package: luci-app-secubox-crowdsec
Version: 1.0.0-r3 Version: 1.0.0-r3
@ -675,7 +675,7 @@ Architecture: all
Installed-Size: 81920 Installed-Size: 81920
Description: LuCI SecuBox CrowdSec Dashboard Description: LuCI SecuBox CrowdSec Dashboard
Filename: luci-app-secubox-crowdsec_1.0.0-r3_all.ipk Filename: luci-app-secubox-crowdsec_1.0.0-r3_all.ipk
Size: 13922 Size: 13920
Package: luci-app-secubox-mirror Package: luci-app-secubox-mirror
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -687,7 +687,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI MirrorNet Dashboard Description: LuCI MirrorNet Dashboard
Filename: luci-app-secubox-mirror_0.1.0-r1_all.ipk Filename: luci-app-secubox-mirror_0.1.0-r1_all.ipk
Size: 5849 Size: 5850
Package: luci-app-secubox-netdiag Package: luci-app-secubox-netdiag
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -699,7 +699,7 @@ Architecture: all
Installed-Size: 81920 Installed-Size: 81920
Description: Real-time DSA switch port statistics, error monitoring, and network health diagnostics Description: Real-time DSA switch port statistics, error monitoring, and network health diagnostics
Filename: luci-app-secubox-netdiag_1.0.0-r1_all.ipk Filename: luci-app-secubox-netdiag_1.0.0-r1_all.ipk
Size: 15341 Size: 15346
Package: luci-app-secubox-netifyd Package: luci-app-secubox-netifyd
Version: 1.2.1-r1 Version: 1.2.1-r1
@ -711,7 +711,7 @@ Architecture: all
Installed-Size: 194560 Installed-Size: 194560
Description: Complete LuCI interface for netifyd DPI engine with real-time flow monitoring, application detection, network analytics, and flow action plugins Description: Complete LuCI interface for netifyd DPI engine with real-time flow monitoring, application detection, network analytics, and flow action plugins
Filename: luci-app-secubox-netifyd_1.2.1-r1_all.ipk Filename: luci-app-secubox-netifyd_1.2.1-r1_all.ipk
Size: 36718 Size: 36721
Package: luci-app-secubox-p2p Package: luci-app-secubox-p2p
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -723,7 +723,7 @@ Architecture: all
Installed-Size: 245760 Installed-Size: 245760
Description: LuCI SecuBox P2P Hub Description: LuCI SecuBox P2P Hub
Filename: luci-app-secubox-p2p_0.1.0-r1_all.ipk Filename: luci-app-secubox-p2p_0.1.0-r1_all.ipk
Size: 46833 Size: 46834
Package: luci-app-secubox-portal Package: luci-app-secubox-portal
Version: 0.7.0-r3 Version: 0.7.0-r3
@ -735,7 +735,7 @@ Architecture: all
Installed-Size: 194560 Installed-Size: 194560
Description: Unified entry point for all SecuBox applications with tabbed navigation Description: Unified entry point for all SecuBox applications with tabbed navigation
Filename: luci-app-secubox-portal_0.7.0-r3_all.ipk Filename: luci-app-secubox-portal_0.7.0-r3_all.ipk
Size: 41683 Size: 41685
Package: luci-app-secubox-security-threats Package: luci-app-secubox-security-threats
Version: 1.0.0-r4 Version: 1.0.0-r4
@ -747,7 +747,7 @@ Architecture: all
Installed-Size: 61440 Installed-Size: 61440
Description: Unified dashboard integrating netifyd DPI threats with CrowdSec intelligence for real-time threat monitoring and automated blocking Description: Unified dashboard integrating netifyd DPI threats with CrowdSec intelligence for real-time threat monitoring and automated blocking
Filename: luci-app-secubox-security-threats_1.0.0-r4_all.ipk Filename: luci-app-secubox-security-threats_1.0.0-r4_all.ipk
Size: 10654 Size: 10659
Package: luci-app-secubox-users Package: luci-app-secubox-users
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -758,7 +758,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI SecuBox User Management Description: LuCI SecuBox User Management
Filename: luci-app-secubox-users_1.0.0-r1_all.ipk Filename: luci-app-secubox-users_1.0.0-r1_all.ipk
Size: 5144 Size: 5147
Package: luci-app-service-registry Package: luci-app-service-registry
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -770,7 +770,7 @@ Architecture: all
Installed-Size: 194560 Installed-Size: 194560
Description: Unified service aggregation with HAProxy vhosts, Tor hidden services, and QR-coded landing page Description: Unified service aggregation with HAProxy vhosts, Tor hidden services, and QR-coded landing page
Filename: luci-app-service-registry_1.0.0-r1_all.ipk Filename: luci-app-service-registry_1.0.0-r1_all.ipk
Size: 39950 Size: 39954
Package: luci-app-simplex Package: luci-app-simplex
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -782,7 +782,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI SimpleX Chat Server Configuration Description: LuCI SimpleX Chat Server Configuration
Filename: luci-app-simplex_1.0.0-r1_all.ipk Filename: luci-app-simplex_1.0.0-r1_all.ipk
Size: 7035 Size: 7041
Package: luci-app-streamlit Package: luci-app-streamlit
Version: 1.0.0-r11 Version: 1.0.0-r11
@ -794,7 +794,7 @@ Architecture: all
Installed-Size: 112640 Installed-Size: 112640
Description: Multi-instance Streamlit management with Gitea integration Description: Multi-instance Streamlit management with Gitea integration
Filename: luci-app-streamlit_1.0.0-r11_all.ipk Filename: luci-app-streamlit_1.0.0-r11_all.ipk
Size: 20567 Size: 20569
Package: luci-app-system-hub Package: luci-app-system-hub
Version: 0.5.2-r2 Version: 0.5.2-r2
@ -806,7 +806,7 @@ Architecture: all
Installed-Size: 327680 Installed-Size: 327680
Description: Central system control with monitoring, services, logs, and backup Description: Central system control with monitoring, services, logs, and backup
Filename: luci-app-system-hub_0.5.2-r2_all.ipk Filename: luci-app-system-hub_0.5.2-r2_all.ipk
Size: 64288 Size: 64290
Package: luci-app-threat-analyst Package: luci-app-threat-analyst
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -818,7 +818,7 @@ Architecture: all
Installed-Size: 51200 Installed-Size: 51200
Description: LuCI Threat Analyst Dashboard Description: LuCI Threat Analyst Dashboard
Filename: luci-app-threat-analyst_1.0.0-r1_all.ipk Filename: luci-app-threat-analyst_1.0.0-r1_all.ipk
Size: 10140 Size: 10144
Package: luci-app-tor Package: luci-app-tor
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -830,7 +830,7 @@ Architecture: all
Installed-Size: 92160 Installed-Size: 92160
Description: Modern dashboard for Tor anonymization on OpenWrt Description: Modern dashboard for Tor anonymization on OpenWrt
Filename: luci-app-tor_1.0.0-r1_all.ipk Filename: luci-app-tor_1.0.0-r1_all.ipk
Size: 17815 Size: 17818
Package: luci-app-tor-shield Package: luci-app-tor-shield
Version: 1.0.0-r10 Version: 1.0.0-r10
@ -842,7 +842,7 @@ Architecture: all
Installed-Size: 122880 Installed-Size: 122880
Description: Modern dashboard for Tor anonymization on OpenWrt Description: Modern dashboard for Tor anonymization on OpenWrt
Filename: luci-app-tor-shield_1.0.0-r10_all.ipk Filename: luci-app-tor-shield_1.0.0-r10_all.ipk
Size: 22763 Size: 22766
Package: luci-app-traffic-shaper Package: luci-app-traffic-shaper
Version: 0.4.0-r2 Version: 0.4.0-r2
@ -854,7 +854,7 @@ Architecture: all
Installed-Size: 81920 Installed-Size: 81920
Description: Advanced traffic shaping with TC/CAKE for precise bandwidth control Description: Advanced traffic shaping with TC/CAKE for precise bandwidth control
Filename: luci-app-traffic-shaper_0.4.0-r2_all.ipk Filename: luci-app-traffic-shaper_0.4.0-r2_all.ipk
Size: 14588 Size: 14591
Package: luci-app-vhost-manager Package: luci-app-vhost-manager
Version: 0.5.0-r5 Version: 0.5.0-r5
@ -866,7 +866,7 @@ Architecture: all
Installed-Size: 153600 Installed-Size: 153600
Description: Nginx reverse proxy manager with Let's Encrypt SSL certificates, authentication, and WebSocket support Description: Nginx reverse proxy manager with Let's Encrypt SSL certificates, authentication, and WebSocket support
Filename: luci-app-vhost-manager_0.5.0-r5_all.ipk Filename: luci-app-vhost-manager_0.5.0-r5_all.ipk
Size: 26280 Size: 26283
Package: luci-app-voip Package: luci-app-voip
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -878,7 +878,7 @@ Architecture: all
Installed-Size: 81920 Installed-Size: 81920
Description: LuCI VoIP PBX Management Description: LuCI VoIP PBX Management
Filename: luci-app-voip_1.0.0-r1_all.ipk Filename: luci-app-voip_1.0.0-r1_all.ipk
Size: 11044 Size: 11045
Package: luci-app-vortex-dns Package: luci-app-vortex-dns
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -890,7 +890,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: LuCI Vortex DNS Dashboard Description: LuCI Vortex DNS Dashboard
Filename: luci-app-vortex-dns_1.0.0-r1_all.ipk Filename: luci-app-vortex-dns_1.0.0-r1_all.ipk
Size: 6079 Size: 6077
Package: luci-app-vortex-firewall Package: luci-app-vortex-firewall
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -902,7 +902,7 @@ Architecture: all
Installed-Size: 30720 Installed-Size: 30720
Description: LuCI Vortex DNS Firewall Dashboard Description: LuCI Vortex DNS Firewall Dashboard
Filename: luci-app-vortex-firewall_1.0.0-r1_all.ipk Filename: luci-app-vortex-firewall_1.0.0-r1_all.ipk
Size: 5451 Size: 5453
Package: luci-app-wazuh Package: luci-app-wazuh
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -925,7 +925,7 @@ Architecture: all
Installed-Size: 215040 Installed-Size: 215040
Description: Modern dashboard for WireGuard VPN monitoring on OpenWrt Description: Modern dashboard for WireGuard VPN monitoring on OpenWrt
Filename: luci-app-wireguard-dashboard_0.7.0-r5_all.ipk Filename: luci-app-wireguard-dashboard_0.7.0-r5_all.ipk
Size: 42288 Size: 42290
Package: luci-app-zigbee2mqtt Package: luci-app-zigbee2mqtt
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -937,7 +937,7 @@ Architecture: all
Installed-Size: 40960 Installed-Size: 40960
Description: Graphical interface for managing the Zigbee2MQTT LXC application. Description: Graphical interface for managing the Zigbee2MQTT LXC application.
Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk
Size: 6595 Size: 6598
Package: luci-theme-secubox Package: luci-theme-secubox
Version: 0.4.8-r1 Version: 0.4.8-r1
@ -949,7 +949,7 @@ Architecture: all
Installed-Size: 491520 Installed-Size: 491520
Description: Global CyberMood design system (CSS/JS/i18n) shared by all SecuBox dashboards. Description: Global CyberMood design system (CSS/JS/i18n) shared by all SecuBox dashboards.
Filename: luci-theme-secubox_0.4.8-r1_all.ipk Filename: luci-theme-secubox_0.4.8-r1_all.ipk
Size: 121588 Size: 121590
Package: secubox-app Package: secubox-app
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -960,7 +960,7 @@ Installed-Size: 92160
Description: Command line helper for SecuBox App Store manifests. Installs /usr/sbin/secubox-app Description: Command line helper for SecuBox App Store manifests. Installs /usr/sbin/secubox-app
and ships the default manifests under /usr/share/secubox/plugins/. and ships the default manifests under /usr/share/secubox/plugins/.
Filename: secubox-app_1.0.0-r2_all.ipk Filename: secubox-app_1.0.0-r2_all.ipk
Size: 11181 Size: 11187
Package: secubox-app-adguardhome Package: secubox-app-adguardhome
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -974,7 +974,7 @@ Description: Installer, configuration, and service manager for running AdGuard
inside Docker on SecuBox-powered OpenWrt systems. Network-wide ad blocker inside Docker on SecuBox-powered OpenWrt systems. Network-wide ad blocker
with DNS-over-HTTPS/TLS support and detailed analytics. with DNS-over-HTTPS/TLS support and detailed analytics.
Filename: secubox-app-adguardhome_1.0.0-r2_all.ipk Filename: secubox-app-adguardhome_1.0.0-r2_all.ipk
Size: 2876 Size: 2878
Package: secubox-app-auth-logger Package: secubox-app-auth-logger
Version: 1.2.2-r1 Version: 1.2.2-r1
@ -992,7 +992,7 @@ Description: Logs authentication failures from LuCI/rpcd and Dropbear SSH
- JavaScript hook to intercept login failures - JavaScript hook to intercept login failures
- CrowdSec parser and bruteforce scenario - CrowdSec parser and bruteforce scenario
Filename: secubox-app-auth-logger_1.2.2-r1_all.ipk Filename: secubox-app-auth-logger_1.2.2-r1_all.ipk
Size: 9374 Size: 9378
Package: secubox-app-crowdsec-custom Package: secubox-app-crowdsec-custom
Version: 1.1.0-r1 Version: 1.1.0-r1
@ -1017,7 +1017,7 @@ Description: Custom CrowdSec configurations for SecuBox web interface protectio
- Insider WAF: LAN threat detection (C2, exfiltration, lateral movement) - Insider WAF: LAN threat detection (C2, exfiltration, lateral movement)
- Whitelist for trusted networks - Whitelist for trusted networks
Filename: secubox-app-crowdsec-custom_1.1.0-r1_all.ipk Filename: secubox-app-crowdsec-custom_1.1.0-r1_all.ipk
Size: 6943 Size: 6942
Package: secubox-app-cs-firewall-bouncer Package: secubox-app-cs-firewall-bouncer
Version: 0.0.31-r4 Version: 0.0.31-r4
@ -1044,7 +1044,7 @@ Description: SecuBox CrowdSec Firewall Bouncer for OpenWrt.
- Automatic restart on firewall reload - Automatic restart on firewall reload
- procd service management - procd service management
Filename: secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk Filename: secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk
Size: 5049321 Size: 5049324
Package: secubox-app-cyberfeed Package: secubox-app-cyberfeed
Version: 0.2.1-r1 Version: 0.2.1-r1
@ -1072,7 +1072,7 @@ Description: Unified device inventory aggregating mac-guardian, client-guardian
P2P mesh, and exposure scanner data. Includes heuristic classification P2P mesh, and exposure scanner data. Includes heuristic classification
and pluggable emulator modules for MQTT, Zigbee, and USB devices. and pluggable emulator modules for MQTT, Zigbee, and USB devices.
Filename: secubox-app-device-intel_1.0.0-r1_all.ipk Filename: secubox-app-device-intel_1.0.0-r1_all.ipk
Size: 13108 Size: 13105
Package: secubox-app-dns-provider Package: secubox-app-dns-provider
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1086,7 +1086,7 @@ Description: Programmatic DNS record management via provider APIs (OVH, Gandi
Cloudflare). Provides the dnsctl CLI for record CRUD, zone sync Cloudflare). Provides the dnsctl CLI for record CRUD, zone sync
DNS propagation verification, and ACME DNS-01 challenge support. DNS propagation verification, and ACME DNS-01 challenge support.
Filename: secubox-app-dns-provider_1.0.0-r1_all.ipk Filename: secubox-app-dns-provider_1.0.0-r1_all.ipk
Size: 8258 Size: 8262
Package: secubox-app-domoticz Package: secubox-app-domoticz
Version: 1.0.0-r4 Version: 1.0.0-r4
@ -1099,7 +1099,7 @@ Installed-Size: 30720
Description: Installer, configuration, and service manager for running Domoticz Description: Installer, configuration, and service manager for running Domoticz
inside an LXC Alpine container on SecuBox-powered OpenWrt systems. inside an LXC Alpine container on SecuBox-powered OpenWrt systems.
Filename: secubox-app-domoticz_1.0.0-r4_all.ipk Filename: secubox-app-domoticz_1.0.0-r4_all.ipk
Size: 7510 Size: 7507
Package: secubox-app-exposure Package: secubox-app-exposure
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1114,7 +1114,7 @@ Description: Unified service exposure manager for SecuBox.
- Dynamic Tor hidden service management - Dynamic Tor hidden service management
- HAProxy SSL reverse proxy configuration - HAProxy SSL reverse proxy configuration
Filename: secubox-app-exposure_1.0.0-r1_all.ipk Filename: secubox-app-exposure_1.0.0-r1_all.ipk
Size: 9150 Size: 9151
Package: secubox-app-gitea Package: secubox-app-gitea
Version: 1.0.0-r5 Version: 1.0.0-r5
@ -1137,7 +1137,7 @@ Description: Gitea Git Platform - Self-hosted lightweight Git service
Runs in LXC container with Alpine Linux. Runs in LXC container with Alpine Linux.
Configure in /etc/config/gitea. Configure in /etc/config/gitea.
Filename: secubox-app-gitea_1.0.0-r5_all.ipk Filename: secubox-app-gitea_1.0.0-r5_all.ipk
Size: 9442 Size: 9436
Package: secubox-app-gk2hub Package: secubox-app-gk2hub
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -1174,7 +1174,7 @@ Description: Glances - Cross-platform system monitoring tool for SecuBox.
Runs in LXC container for isolation and security. Runs in LXC container for isolation and security.
Configure in /etc/config/glances. Configure in /etc/config/glances.
Filename: secubox-app-glances_1.0.0-r1_all.ipk Filename: secubox-app-glances_1.0.0-r1_all.ipk
Size: 6144 Size: 6140
Package: secubox-app-guacamole Package: secubox-app-guacamole
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1188,7 +1188,7 @@ Description: Apache Guacamole clientless remote desktop gateway.
Runs in an LXC Debian container with guacd and Tomcat. Runs in an LXC Debian container with guacd and Tomcat.
Supports SSH, VNC, and RDP connections via web browser. Supports SSH, VNC, and RDP connections via web browser.
Filename: secubox-app-guacamole_1.0.0-r1_all.ipk Filename: secubox-app-guacamole_1.0.0-r1_all.ipk
Size: 6945 Size: 6946
Package: secubox-app-haproxy Package: secubox-app-haproxy
Version: 1.0.0-r24 Version: 1.0.0-r24
@ -1208,7 +1208,7 @@ Description: HAProxy load balancer and reverse proxy running in an LXC containe
- Stats dashboard - Stats dashboard
- Rate limiting and ACLs - Rate limiting and ACLs
Filename: secubox-app-haproxy_1.0.0-r24_all.ipk Filename: secubox-app-haproxy_1.0.0-r24_all.ipk
Size: 22010 Size: 22009
Package: secubox-app-hexojs Package: secubox-app-hexojs
Version: 1.0.0-r8 Version: 1.0.0-r8
@ -1232,7 +1232,7 @@ Description: Hexo CMS - Self-hosted static blog generator for OpenWrt
Runs in LXC container with Alpine Linux. Runs in LXC container with Alpine Linux.
Configure in /etc/config/hexojs. Configure in /etc/config/hexojs.
Filename: secubox-app-hexojs_1.0.0-r8_all.ipk Filename: secubox-app-hexojs_1.0.0-r8_all.ipk
Size: 100061 Size: 100058
Package: secubox-app-ipblocklist Package: secubox-app-ipblocklist
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1247,7 +1247,7 @@ Description: Pre-emptive IP blocklist defense layer for SecuBox.
Maintainer: Gandalf <gandalf@cybermind.fr> Maintainer: Gandalf <gandalf@cybermind.fr>
License: Apache-2.0 License: Apache-2.0
Filename: secubox-app-ipblocklist_1.0.0-r1_all.ipk Filename: secubox-app-ipblocklist_1.0.0-r1_all.ipk
Size: 4705 Size: 4702
Package: secubox-app-jabber Package: secubox-app-jabber
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1261,7 +1261,7 @@ Description: Jabber/XMPP instant messaging server based on Prosody.
Runs in an LXC Debian container with full XMPP support. Runs in an LXC Debian container with full XMPP support.
Features multi-user chat (MUC), file uploads, and S2S federation. Features multi-user chat (MUC), file uploads, and S2S federation.
Filename: secubox-app-jabber_1.0.0-r1_all.ipk Filename: secubox-app-jabber_1.0.0-r1_all.ipk
Size: 13276 Size: 13278
Package: secubox-app-jellyfin Package: secubox-app-jellyfin
Version: 3.0.0-r1 Version: 3.0.0-r1
@ -1274,7 +1274,7 @@ Installed-Size: 20480
Description: Jellyfin media server running in LXC container. Description: Jellyfin media server running in LXC container.
Free media server for streaming movies, TV shows, music, and photos. Free media server for streaming movies, TV shows, music, and photos.
Filename: secubox-app-jellyfin_3.0.0-r1_all.ipk Filename: secubox-app-jellyfin_3.0.0-r1_all.ipk
Size: 4753 Size: 4754
Package: secubox-app-jitsi Package: secubox-app-jitsi
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1321,7 +1321,7 @@ Description: LocalAI native binary package for OpenWrt.
API: http://<router-ip>:8081/v1 API: http://<router-ip>:8081/v1
Filename: secubox-app-localai_3.9.0-r1_all.ipk Filename: secubox-app-localai_3.9.0-r1_all.ipk
Size: 5849 Size: 5833
Package: secubox-app-localai-wb Package: secubox-app-localai-wb
Version: 2.25.0-r1 Version: 2.25.0-r1
@ -1365,7 +1365,7 @@ Description: Lyrion Media Server (formerly Logitech Media Server / Squeezebox S
Auto-detects available runtime, preferring LXC for lower resource usage. Auto-detects available runtime, preferring LXC for lower resource usage.
Configure runtime in /etc/config/lyrion. Configure runtime in /etc/config/lyrion.
Filename: secubox-app-lyrion_2.0.2-r1_all.ipk Filename: secubox-app-lyrion_2.0.2-r1_all.ipk
Size: 8126 Size: 8124
Package: secubox-app-mac-guardian Package: secubox-app-mac-guardian
Version: 0.5.0-r1 Version: 0.5.0-r1
@ -1380,7 +1380,7 @@ Description: WiFi MAC address security monitor for SecuBox.
and spoofing. Integrates with CrowdSec and provides and spoofing. Integrates with CrowdSec and provides
real-time hostapd hotplug detection. real-time hostapd hotplug detection.
Filename: secubox-app-mac-guardian_0.5.0-r1_all.ipk Filename: secubox-app-mac-guardian_0.5.0-r1_all.ipk
Size: 12094 Size: 12099
Package: secubox-app-magicmirror2 Package: secubox-app-magicmirror2
Version: 0.4.0-r8 Version: 0.4.0-r8
@ -1402,7 +1402,7 @@ Description: MagicMirror² - Open source modular smart mirror platform for Secu
Runs in LXC container for isolation and security. Runs in LXC container for isolation and security.
Configure in /etc/config/magicmirror2. Configure in /etc/config/magicmirror2.
Filename: secubox-app-magicmirror2_0.4.0-r8_all.ipk Filename: secubox-app-magicmirror2_0.4.0-r8_all.ipk
Size: 9256 Size: 9251
Package: secubox-app-mailinabox Package: secubox-app-mailinabox
Version: 2.0.0-r1 Version: 2.0.0-r1
@ -1427,7 +1427,7 @@ Description: Complete email server solution using docker-mailserver for SecuBox
Commands: mailinaboxctl --help Commands: mailinaboxctl --help
Filename: secubox-app-mailinabox_2.0.0-r1_all.ipk Filename: secubox-app-mailinabox_2.0.0-r1_all.ipk
Size: 7573 Size: 7570
Package: secubox-app-mailserver Package: secubox-app-mailserver
Version: 2.0.0-r1 Version: 2.0.0-r1
@ -1440,7 +1440,7 @@ Installed-Size: 20480
Description: Postfix + Dovecot mail server running in LXC container. Description: Postfix + Dovecot mail server running in LXC container.
Supports IMAP/SMTP with SSL/TLS. Supports IMAP/SMTP with SSL/TLS.
Filename: secubox-app-mailserver_2.0.0-r1_all.ipk Filename: secubox-app-mailserver_2.0.0-r1_all.ipk
Size: 5702 Size: 5699
Package: secubox-app-matrix Package: secubox-app-matrix
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1454,7 +1454,7 @@ Description: Matrix homeserver based on Conduit - a lightweight, high-performan
Matrix server written in Rust. Runs in an LXC Debian container. Matrix server written in Rust. Runs in an LXC Debian container.
Features E2EE messaging, federation, and mesh integration. Features E2EE messaging, federation, and mesh integration.
Filename: secubox-app-matrix_1.0.0-r1_all.ipk Filename: secubox-app-matrix_1.0.0-r1_all.ipk
Size: 10451 Size: 10454
Package: secubox-app-metabolizer Package: secubox-app-metabolizer
Version: 1.0.0-r3 Version: 1.0.0-r3
@ -1475,7 +1475,7 @@ Description: Metabolizer Blog Pipeline - Integrated CMS with Git-based workflow
Pipeline: Edit in Streamlit -> Push to Gitea -> Build with Hexo -> Publish Pipeline: Edit in Streamlit -> Push to Gitea -> Build with Hexo -> Publish
Filename: secubox-app-metabolizer_1.0.0-r3_all.ipk Filename: secubox-app-metabolizer_1.0.0-r3_all.ipk
Size: 13975 Size: 13980
Package: secubox-app-mitmproxy Package: secubox-app-mitmproxy
Version: 0.5.0-r19 Version: 0.5.0-r19
@ -1523,7 +1523,7 @@ Description: MMPM (MagicMirror Package Manager) for SecuBox.
Runs inside the MagicMirror2 LXC container. Runs inside the MagicMirror2 LXC container.
Filename: secubox-app-mmpm_0.2.0-r5_all.ipk Filename: secubox-app-mmpm_0.2.0-r5_all.ipk
Size: 3979 Size: 3977
Package: secubox-app-nextcloud Package: secubox-app-nextcloud
Version: 1.0.0-r2 Version: 1.0.0-r2
@ -1537,7 +1537,7 @@ Description: Nextcloud file sync and collaboration platform running in a Debian
LXC container with MariaDB, Redis, and Nginx. Features HAProxy SSL LXC container with MariaDB, Redis, and Nginx. Features HAProxy SSL
integration, automated backups, and KISS LuCI dashboard. integration, automated backups, and KISS LuCI dashboard.
Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk
Size: 9674 Size: 9672
Package: secubox-app-ollama Package: secubox-app-ollama
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -1559,7 +1559,7 @@ Description: Ollama - Simple local LLM runtime for SecuBox-powered OpenWrt syst
Runs in Docker/Podman container. Runs in Docker/Podman container.
Configure in /etc/config/ollama. Configure in /etc/config/ollama.
Filename: secubox-app-ollama_0.1.0-r1_all.ipk Filename: secubox-app-ollama_0.1.0-r1_all.ipk
Size: 5741 Size: 5739
Package: secubox-app-picobrew Package: secubox-app-picobrew
Version: 1.0.0-r7 Version: 1.0.0-r7
@ -1581,7 +1581,7 @@ Description: PicoBrew Server - Self-hosted brewing controller for PicoBrew devi
Runs in LXC container with Python/Flask backend. Runs in LXC container with Python/Flask backend.
Configure in /etc/config/picobrew. Configure in /etc/config/picobrew.
Filename: secubox-app-picobrew_1.0.0-r7_all.ipk Filename: secubox-app-picobrew_1.0.0-r7_all.ipk
Size: 5536 Size: 5542
Package: secubox-app-rustdesk Package: secubox-app-rustdesk
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1594,7 +1594,7 @@ Installed-Size: 20480
Description: Self-hosted RustDesk relay server for remote desktop access. Description: Self-hosted RustDesk relay server for remote desktop access.
Downloads and manages hbbs (ID server) and hbbr (relay server) binaries. Downloads and manages hbbs (ID server) and hbbr (relay server) binaries.
Filename: secubox-app-rustdesk_1.0.0-r1_all.ipk Filename: secubox-app-rustdesk_1.0.0-r1_all.ipk
Size: 4468 Size: 4465
Package: secubox-app-simplex Package: secubox-app-simplex
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1618,7 +1618,7 @@ Description: SimpleX Chat self-hosted messaging infrastructure for SecuBox.
Privacy-first messaging relay that you control. Privacy-first messaging relay that you control.
Configure in /etc/config/simplex. Configure in /etc/config/simplex.
Filename: secubox-app-simplex_1.0.0-r1_all.ipk Filename: secubox-app-simplex_1.0.0-r1_all.ipk
Size: 9365 Size: 9368
Package: secubox-app-smbfs Package: secubox-app-smbfs
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1659,7 +1659,7 @@ Description: Streamlit App Platform - Self-hosted Python data app platform
Configure in /etc/config/streamlit. Configure in /etc/config/streamlit.
Filename: secubox-app-streamlit_1.0.0-r5_all.ipk Filename: secubox-app-streamlit_1.0.0-r5_all.ipk
Size: 16516 Size: 16514
Package: secubox-app-tor Package: secubox-app-tor
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1682,7 +1682,7 @@ Description: SecuBox Tor Shield - One-click Tor anonymization for OpenWrt
Configure in /etc/config/tor-shield. Configure in /etc/config/tor-shield.
Filename: secubox-app-tor_1.0.0-r1_all.ipk Filename: secubox-app-tor_1.0.0-r1_all.ipk
Size: 7366 Size: 7374
Package: secubox-app-voip Package: secubox-app-voip
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1696,7 +1696,7 @@ Description: VoIP PBX solution with Asterisk in LXC container.
Features OVH SIP trunk integration, WebRTC support Features OVH SIP trunk integration, WebRTC support
and Jabber/XMPP relay for SMS and voicemail notifications. and Jabber/XMPP relay for SMS and voicemail notifications.
Filename: secubox-app-voip_1.0.0-r1_all.ipk Filename: secubox-app-voip_1.0.0-r1_all.ipk
Size: 11955 Size: 11957
Package: secubox-app-webapp Package: secubox-app-webapp
Version: 1.5.0-r7 Version: 1.5.0-r7
@ -1714,7 +1714,7 @@ Description: SecuBox Control Center Dashboard - A web-based dashboard for monit
- Service management - Service management
- Network interface control - Network interface control
Filename: secubox-app-webapp_1.5.0-r7_all.ipk Filename: secubox-app-webapp_1.5.0-r7_all.ipk
Size: 39177 Size: 39176
Package: secubox-app-zigbee2mqtt Package: secubox-app-zigbee2mqtt
Version: 1.0.0-r3 Version: 1.0.0-r3
@ -1727,7 +1727,7 @@ Installed-Size: 20480
Description: Installer, configuration, and service manager for running Zigbee2MQTT Description: Installer, configuration, and service manager for running Zigbee2MQTT
inside an Alpine LXC container on SecuBox-powered OpenWrt systems. inside an Alpine LXC container on SecuBox-powered OpenWrt systems.
Filename: secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk Filename: secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk
Size: 5539 Size: 5542
Package: secubox-config-advisor Package: secubox-config-advisor
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -1746,7 +1746,7 @@ Description: AI-powered configuration security advisor for SecuBox.
- LocalAI integration for intelligent analysis - LocalAI integration for intelligent analysis
- Automated remediation suggestions - Automated remediation suggestions
Filename: secubox-config-advisor_0.1.0-r1_all.ipk Filename: secubox-config-advisor_0.1.0-r1_all.ipk
Size: 14848 Size: 14849
Package: secubox-content-pkg Package: secubox-content-pkg
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1759,7 +1759,7 @@ Installed-Size: 20480
Description: Package Metablogizer sites and Streamlit apps as IPKs for P2P distribution. Description: Package Metablogizer sites and Streamlit apps as IPKs for P2P distribution.
Auto-publishes content to the mesh feed for peer auto-sync. Auto-publishes content to the mesh feed for peer auto-sync.
Filename: secubox-content-pkg_1.0.0-r1_all.ipk Filename: secubox-content-pkg_1.0.0-r1_all.ipk
Size: 3909 Size: 3908
Package: secubox-cookie-tracker Package: secubox-cookie-tracker
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1782,7 +1782,7 @@ Description: Cookie Tracker for SecuBox InterceptoR.
Works with secubox-app-mitmproxy for transparent interception. Works with secubox-app-mitmproxy for transparent interception.
Filename: secubox-cookie-tracker_1.0.0-r1_all.ipk Filename: secubox-cookie-tracker_1.0.0-r1_all.ipk
Size: 10642 Size: 10644
Package: secubox-core Package: secubox-core
Version: 0.10.0-r16 Version: 0.10.0-r16
@ -1791,7 +1791,7 @@ License: GPL-2.0
Section: admin Section: admin
Maintainer: SecuBox Team Maintainer: SecuBox Team
Architecture: all Architecture: all
Installed-Size: 645120 Installed-Size: 665600
Description: SecuBox Core Framework provides the foundational infrastructure for the Description: SecuBox Core Framework provides the foundational infrastructure for the
modular SecuBox system including: modular SecuBox system including:
- Module/AppStore management - Module/AppStore management
@ -1802,7 +1802,7 @@ Description: SecuBox Core Framework provides the foundational infrastructure fo
- Unified CLI interface - Unified CLI interface
- ubus RPC backend - ubus RPC backend
Filename: secubox-core_0.10.0-r16_all.ipk Filename: secubox-core_0.10.0-r16_all.ipk
Size: 123051 Size: 127205
Package: secubox-cve-triage Package: secubox-cve-triage
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1822,7 +1822,7 @@ Description: AI-powered CVE analysis and vulnerability management agent for Sec
- Approval workflow for patch recommendations - Approval workflow for patch recommendations
- LXC and Docker package monitoring - LXC and Docker package monitoring
Filename: secubox-cve-triage_1.0.0-r1_all.ipk Filename: secubox-cve-triage_1.0.0-r1_all.ipk
Size: 11829 Size: 11826
Package: secubox-dns-guard Package: secubox-dns-guard
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1841,7 +1841,7 @@ Description: SecuBox DNS Guard provides AI-powered DNS anomaly detection using
- Unusual TLD pattern detection - Unusual TLD pattern detection
- Automatic blocklist generation with approval workflow - Automatic blocklist generation with approval workflow
Filename: secubox-dns-guard_1.0.0-r1_all.ipk Filename: secubox-dns-guard_1.0.0-r1_all.ipk
Size: 12488 Size: 12486
Package: secubox-identity Package: secubox-identity
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -1860,7 +1860,7 @@ Description: Decentralized identity management for SecuBox mesh nodes.
- Peer identity verification - Peer identity verification
- Trust scoring integration - Trust scoring integration
Filename: secubox-identity_0.1.0-r1_all.ipk Filename: secubox-identity_0.1.0-r1_all.ipk
Size: 8086 Size: 8084
Package: secubox-iot-guard Package: secubox-iot-guard
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1876,7 +1876,7 @@ Description: IoT device isolation, classification, and security monitoring.
risk scoring. Orchestrates Client Guardian, MAC Guardian risk scoring. Orchestrates Client Guardian, MAC Guardian
Vortex Firewall, and Bandwidth Manager for IoT protection. Vortex Firewall, and Bandwidth Manager for IoT protection.
Filename: secubox-iot-guard_1.0.0-r1_all.ipk Filename: secubox-iot-guard_1.0.0-r1_all.ipk
Size: 13370 Size: 13371
Package: secubox-localrecall Package: secubox-localrecall
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1891,7 +1891,7 @@ Description: Persistent memory system for SecuBox AI agents.
for context across sessions. LocalAI integration for for context across sessions. LocalAI integration for
semantic search and AI-powered summarization. semantic search and AI-powered summarization.
Filename: secubox-localrecall_1.0.0-r1_all.ipk Filename: secubox-localrecall_1.0.0-r1_all.ipk
Size: 7798 Size: 7795
Package: secubox-master-link Package: secubox-master-link
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1913,7 +1913,7 @@ Description: Secure mesh onboarding for SecuBox nodes via master/peer link.
Configure in /etc/config/master-link. Configure in /etc/config/master-link.
Filename: secubox-master-link_1.0.0-r1_all.ipk Filename: secubox-master-link_1.0.0-r1_all.ipk
Size: 15037 Size: 15035
Package: secubox-mcp-server Package: secubox-mcp-server
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1941,7 +1941,7 @@ Description: Model Context Protocol (MCP) server for SecuBox.
- ai.explain_ban (Explain CrowdSec decisions) - ai.explain_ban (Explain CrowdSec decisions)
- ai.security_posture (Security assessment) - ai.security_posture (Security assessment)
Filename: secubox-mcp-server_1.0.0-r1_all.ipk Filename: secubox-mcp-server_1.0.0-r1_all.ipk
Size: 11425 Size: 11431
Package: secubox-mirrornet Package: secubox-mirrornet
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -1959,7 +1959,7 @@ Description: MirrorNet core mesh orchestration for SecuBox.
- Mesh health monitoring and anomaly detection - Mesh health monitoring and anomaly detection
- DID-based identity (did:plc compatible) - DID-based identity (did:plc compatible)
Filename: secubox-mirrornet_0.1.0-r1_all.ipk Filename: secubox-mirrornet_0.1.0-r1_all.ipk
Size: 15309 Size: 15305
Package: secubox-network-anomaly Package: secubox-network-anomaly
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -1974,7 +1974,7 @@ Description: AI-powered network anomaly detection for SecuBox.
DNS anomalies, and protocol anomalies using statistical DNS anomalies, and protocol anomalies using statistical
analysis and optional LocalAI integration. analysis and optional LocalAI integration.
Filename: secubox-network-anomaly_1.0.0-r1_all.ipk Filename: secubox-network-anomaly_1.0.0-r1_all.ipk
Size: 6164 Size: 6165
Package: secubox-p2p Package: secubox-p2p
Version: 0.6.0-r3 Version: 0.6.0-r3
@ -1993,7 +1993,7 @@ Description: SecuBox P2P Hub backend providing peer discovery, mesh networking
and MirrorBox NetMesh Catalog for cross-chain distributed service and MirrorBox NetMesh Catalog for cross-chain distributed service
registry with HAProxy vhost discovery and multi-endpoint access URLs. registry with HAProxy vhost discovery and multi-endpoint access URLs.
Filename: secubox-p2p_0.6.0-r3_all.ipk Filename: secubox-p2p_0.6.0-r3_all.ipk
Size: 47859 Size: 47860
Package: secubox-p2p-intel Package: secubox-p2p-intel
Version: 0.1.0-r1 Version: 0.1.0-r1
@ -2031,7 +2031,7 @@ Description: Autonomous threat analysis agent for SecuBox.
Part of SecuBox AI Gateway (Couche 2). Part of SecuBox AI Gateway (Couche 2).
Filename: secubox-threat-analyst_1.0.0-r1_all.ipk Filename: secubox-threat-analyst_1.0.0-r1_all.ipk
Size: 9864 Size: 9867
Package: secubox-vortex-dns Package: secubox-vortex-dns
Version: 1.0.0-r1 Version: 1.0.0-r1
@ -2050,7 +2050,7 @@ Description: Meshed multi-dynamic subdomain delegation system for SecuBox.
- Gossip-based exposure config sync - Gossip-based exposure config sync
- Submastering for nested hierarchies - Submastering for nested hierarchies
Filename: secubox-vortex-dns_1.0.0-r1_all.ipk Filename: secubox-vortex-dns_1.0.0-r1_all.ipk
Size: 5441 Size: 5438
Package: secubox-vortex-firewall Package: secubox-vortex-firewall
Version: 1.0.0-r1 Version: 1.0.0-r1

View File

@ -1,6 +1,6 @@
{ {
"feed_url": "/secubox-feed", "feed_url": "/secubox-feed",
"generated": "2026-02-27T09:53:29+01:00", "generated": "2026-02-28T09:13:34+01:00",
"packages": [ "packages": [
{ {
"name": "luci-app-ai-insights", "name": "luci-app-ai-insights",
@ -18,7 +18,7 @@
"name": "luci-app-auth-guardian", "name": "luci-app-auth-guardian",
"version": "0.4.0-r3", "version": "0.4.0-r3",
"filename": "luci-app-auth-guardian_0.4.0-r3_all.ipk", "filename": "luci-app-auth-guardian_0.4.0-r3_all.ipk",
"size": 12393, "size": 12397,
"category": "security", "category": "security",
"icon": "key", "icon": "key",
"description": "Authentication management", "description": "Authentication management",
@ -30,7 +30,7 @@
"name": "luci-app-backup", "name": "luci-app-backup",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-backup_1.0.0-r1_all.ipk", "filename": "luci-app-backup_1.0.0-r1_all.ipk",
"size": 4537, "size": 4534,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -54,7 +54,7 @@
"name": "luci-app-cdn-cache", "name": "luci-app-cdn-cache",
"version": "0.5.0-r3", "version": "0.5.0-r3",
"filename": "luci-app-cdn-cache_0.5.0-r3_all.ipk", "filename": "luci-app-cdn-cache_0.5.0-r3_all.ipk",
"size": 24255, "size": 24254,
"category": "network", "category": "network",
"icon": "globe", "icon": "globe",
"description": "CDN caching", "description": "CDN caching",
@ -66,7 +66,7 @@
"name": "luci-app-client-guardian", "name": "luci-app-client-guardian",
"version": "0.4.0-r7", "version": "0.4.0-r7",
"filename": "luci-app-client-guardian_0.4.0-r7_all.ipk", "filename": "luci-app-client-guardian_0.4.0-r7_all.ipk",
"size": 52685, "size": 52686,
"category": "network", "category": "network",
"icon": "users", "icon": "users",
"description": "Client management and monitoring", "description": "Client management and monitoring",
@ -78,7 +78,7 @@
"name": "luci-app-cloner", "name": "luci-app-cloner",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-cloner_1.0.0-r1_all.ipk", "filename": "luci-app-cloner_1.0.0-r1_all.ipk",
"size": 19433, "size": 19434,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -90,7 +90,7 @@
"name": "luci-app-config-advisor", "name": "luci-app-config-advisor",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-config-advisor_1.0.0-r1_all.ipk", "filename": "luci-app-config-advisor_1.0.0-r1_all.ipk",
"size": 8859, "size": 8861,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -102,7 +102,7 @@
"name": "luci-app-cookie-tracker", "name": "luci-app-cookie-tracker",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-cookie-tracker_1.0.0-r1_all.ipk", "filename": "luci-app-cookie-tracker_1.0.0-r1_all.ipk",
"size": 5658, "size": 5660,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -114,7 +114,7 @@
"name": "luci-app-crowdsec-dashboard", "name": "luci-app-crowdsec-dashboard",
"version": "0.8.0-r1", "version": "0.8.0-r1",
"filename": "luci-app-crowdsec-dashboard_0.8.0-r1_all.ipk", "filename": "luci-app-crowdsec-dashboard_0.8.0-r1_all.ipk",
"size": 43022, "size": 43023,
"category": "security", "category": "security",
"icon": "shield", "icon": "shield",
"description": "CrowdSec security monitoring", "description": "CrowdSec security monitoring",
@ -126,7 +126,7 @@
"name": "luci-app-cve-triage", "name": "luci-app-cve-triage",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-cve-triage_1.0.0-r1_all.ipk", "filename": "luci-app-cve-triage_1.0.0-r1_all.ipk",
"size": 5946, "size": 5945,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -138,7 +138,7 @@
"name": "luci-app-cyberfeed", "name": "luci-app-cyberfeed",
"version": "0.1.1-r1", "version": "0.1.1-r1",
"filename": "luci-app-cyberfeed_0.1.1-r1_all.ipk", "filename": "luci-app-cyberfeed_0.1.1-r1_all.ipk",
"size": 12885, "size": 12887,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -150,7 +150,7 @@
"name": "luci-app-device-intel", "name": "luci-app-device-intel",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-device-intel_1.0.0-r1_all.ipk", "filename": "luci-app-device-intel_1.0.0-r1_all.ipk",
"size": 12052, "size": 12049,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -162,7 +162,7 @@
"name": "luci-app-dnsguard", "name": "luci-app-dnsguard",
"version": "1.1.0-r1", "version": "1.1.0-r1",
"filename": "luci-app-dnsguard_1.1.0-r1_all.ipk", "filename": "luci-app-dnsguard_1.1.0-r1_all.ipk",
"size": 12445, "size": 12448,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -174,7 +174,7 @@
"name": "luci-app-dns-provider", "name": "luci-app-dns-provider",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-dns-provider_1.0.0-r1_all.ipk", "filename": "luci-app-dns-provider_1.0.0-r1_all.ipk",
"size": 7168, "size": 7175,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -186,7 +186,7 @@
"name": "luci-app-domoticz", "name": "luci-app-domoticz",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-domoticz_1.0.0-r1_all.ipk", "filename": "luci-app-domoticz_1.0.0-r1_all.ipk",
"size": 7125, "size": 7122,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -198,7 +198,7 @@
"name": "luci-app-exposure", "name": "luci-app-exposure",
"version": "1.0.0-r3", "version": "1.0.0-r3",
"filename": "luci-app-exposure_1.0.0-r3_all.ipk", "filename": "luci-app-exposure_1.0.0-r3_all.ipk",
"size": 11697, "size": 11700,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -210,7 +210,7 @@
"name": "luci-app-gitea", "name": "luci-app-gitea",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "luci-app-gitea_1.0.0-r2_all.ipk", "filename": "luci-app-gitea_1.0.0-r2_all.ipk",
"size": 16621, "size": 16622,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -222,7 +222,7 @@
"name": "luci-app-glances", "name": "luci-app-glances",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "luci-app-glances_1.0.0-r2_all.ipk", "filename": "luci-app-glances_1.0.0-r2_all.ipk",
"size": 7018, "size": 7016,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -246,7 +246,7 @@
"name": "luci-app-haproxy", "name": "luci-app-haproxy",
"version": "1.0.0-r8", "version": "1.0.0-r8",
"filename": "luci-app-haproxy_1.0.0-r8_all.ipk", "filename": "luci-app-haproxy_1.0.0-r8_all.ipk",
"size": 35338, "size": 35340,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -294,7 +294,7 @@
"name": "luci-app-jabber", "name": "luci-app-jabber",
"version": "0", "version": "0",
"filename": "luci-app-jabber_0_all.ipk", "filename": "luci-app-jabber_0_all.ipk",
"size": 9307, "size": 9308,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -306,7 +306,7 @@
"name": "luci-app-jellyfin", "name": "luci-app-jellyfin",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-jellyfin_1.0.0-r1_all.ipk", "filename": "luci-app-jellyfin_1.0.0-r1_all.ipk",
"size": 10484, "size": 10485,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -318,7 +318,7 @@
"name": "luci-app-jitsi", "name": "luci-app-jitsi",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-jitsi_1.0.0-r1_all.ipk", "filename": "luci-app-jitsi_1.0.0-r1_all.ipk",
"size": 5177, "size": 5180,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -330,7 +330,7 @@
"name": "luci-app-ksm-manager", "name": "luci-app-ksm-manager",
"version": "0.4.0-r2", "version": "0.4.0-r2",
"filename": "luci-app-ksm-manager_0.4.0-r2_all.ipk", "filename": "luci-app-ksm-manager_0.4.0-r2_all.ipk",
"size": 18777, "size": 18783,
"category": "system", "category": "system",
"icon": "cpu", "icon": "cpu",
"description": "Kernel memory management", "description": "Kernel memory management",
@ -342,7 +342,7 @@
"name": "luci-app-localai", "name": "luci-app-localai",
"version": "0.1.0-r15", "version": "0.1.0-r15",
"filename": "luci-app-localai_0.1.0-r15_all.ipk", "filename": "luci-app-localai_0.1.0-r15_all.ipk",
"size": 13318, "size": 13321,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -354,7 +354,7 @@
"name": "luci-app-localrecall", "name": "luci-app-localrecall",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-localrecall_1.0.0-r1_all.ipk", "filename": "luci-app-localrecall_1.0.0-r1_all.ipk",
"size": 8416, "size": 8423,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -366,7 +366,7 @@
"name": "luci-app-lyrion", "name": "luci-app-lyrion",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-lyrion_1.0.0-r1_all.ipk", "filename": "luci-app-lyrion_1.0.0-r1_all.ipk",
"size": 6833, "size": 6841,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -378,7 +378,7 @@
"name": "luci-app-mac-guardian", "name": "luci-app-mac-guardian",
"version": "0.5.0-r1", "version": "0.5.0-r1",
"filename": "luci-app-mac-guardian_0.5.0-r1_all.ipk", "filename": "luci-app-mac-guardian_0.5.0-r1_all.ipk",
"size": 6662, "size": 6669,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -390,7 +390,7 @@
"name": "luci-app-magicmirror2", "name": "luci-app-magicmirror2",
"version": "0.4.0-r6", "version": "0.4.0-r6",
"filename": "luci-app-magicmirror2_0.4.0-r6_all.ipk", "filename": "luci-app-magicmirror2_0.4.0-r6_all.ipk",
"size": 12360, "size": 12361,
"category": "iot", "category": "iot",
"icon": "monitor", "icon": "monitor",
"description": "Smart mirror display", "description": "Smart mirror display",
@ -402,7 +402,7 @@
"name": "luci-app-mailinabox", "name": "luci-app-mailinabox",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-mailinabox_1.0.0-r1_all.ipk", "filename": "luci-app-mailinabox_1.0.0-r1_all.ipk",
"size": 5482, "size": 5483,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -426,7 +426,7 @@
"name": "luci-app-master-link", "name": "luci-app-master-link",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-master-link_1.0.0-r1_all.ipk", "filename": "luci-app-master-link_1.0.0-r1_all.ipk",
"size": 6305, "size": 6306,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -438,7 +438,7 @@
"name": "luci-app-matrix", "name": "luci-app-matrix",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-matrix_1.0.0-r1_all.ipk", "filename": "luci-app-matrix_1.0.0-r1_all.ipk",
"size": 7525, "size": 7527,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -450,7 +450,7 @@
"name": "luci-app-media-flow", "name": "luci-app-media-flow",
"version": "0.6.4-r1", "version": "0.6.4-r1",
"filename": "luci-app-media-flow_0.6.4-r1_all.ipk", "filename": "luci-app-media-flow_0.6.4-r1_all.ipk",
"size": 25380, "size": 25382,
"category": "media", "category": "media",
"icon": "film", "icon": "film",
"description": "Media streaming", "description": "Media streaming",
@ -474,7 +474,7 @@
"name": "luci-app-metabolizer", "name": "luci-app-metabolizer",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "luci-app-metabolizer_1.0.0-r2_all.ipk", "filename": "luci-app-metabolizer_1.0.0-r2_all.ipk",
"size": 4818, "size": 4820,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -486,7 +486,7 @@
"name": "luci-app-mitmproxy", "name": "luci-app-mitmproxy",
"version": "0.5.0-r2", "version": "0.5.0-r2",
"filename": "luci-app-mitmproxy_0.5.0-r2_all.ipk", "filename": "luci-app-mitmproxy_0.5.0-r2_all.ipk",
"size": 13231, "size": 13234,
"category": "security", "category": "security",
"icon": "lock", "icon": "lock",
"description": "HTTPS proxy and traffic inspection", "description": "HTTPS proxy and traffic inspection",
@ -498,7 +498,7 @@
"name": "luci-app-mmpm", "name": "luci-app-mmpm",
"version": "0.2.0-r3", "version": "0.2.0-r3",
"filename": "luci-app-mmpm_0.2.0-r3_all.ipk", "filename": "luci-app-mmpm_0.2.0-r3_all.ipk",
"size": 7967, "size": 7974,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -510,7 +510,7 @@
"name": "luci-app-mqtt-bridge", "name": "luci-app-mqtt-bridge",
"version": "0.4.0-r4", "version": "0.4.0-r4",
"filename": "luci-app-mqtt-bridge_0.4.0-r4_all.ipk", "filename": "luci-app-mqtt-bridge_0.4.0-r4_all.ipk",
"size": 22685, "size": 22691,
"category": "iot", "category": "iot",
"icon": "message-square", "icon": "message-square",
"description": "MQTT bridge", "description": "MQTT bridge",
@ -522,7 +522,7 @@
"name": "luci-app-ndpid", "name": "luci-app-ndpid",
"version": "1.1.2-r2", "version": "1.1.2-r2",
"filename": "luci-app-ndpid_1.1.2-r2_all.ipk", "filename": "luci-app-ndpid_1.1.2-r2_all.ipk",
"size": 21701, "size": 21700,
"category": "security", "category": "security",
"icon": "eye", "icon": "eye",
"description": "Deep packet inspection", "description": "Deep packet inspection",
@ -534,7 +534,7 @@
"name": "luci-app-netdata-dashboard", "name": "luci-app-netdata-dashboard",
"version": "0.5.0-r2", "version": "0.5.0-r2",
"filename": "luci-app-netdata-dashboard_0.5.0-r2_all.ipk", "filename": "luci-app-netdata-dashboard_0.5.0-r2_all.ipk",
"size": 20561, "size": 20559,
"category": "monitoring", "category": "monitoring",
"icon": "bar-chart-2", "icon": "bar-chart-2",
"description": "System monitoring dashboard", "description": "System monitoring dashboard",
@ -546,7 +546,7 @@
"name": "luci-app-network-anomaly", "name": "luci-app-network-anomaly",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-network-anomaly_1.0.0-r1_all.ipk", "filename": "luci-app-network-anomaly_1.0.0-r1_all.ipk",
"size": 7645, "size": 7644,
"category": "network", "category": "network",
"icon": "wifi", "icon": "wifi",
"description": "Network configuration", "description": "Network configuration",
@ -558,7 +558,7 @@
"name": "luci-app-network-modes", "name": "luci-app-network-modes",
"version": "0.5.0-r3", "version": "0.5.0-r3",
"filename": "luci-app-network-modes_0.5.0-r3_all.ipk", "filename": "luci-app-network-modes_0.5.0-r3_all.ipk",
"size": 54224, "size": 54227,
"category": "network", "category": "network",
"icon": "wifi", "icon": "wifi",
"description": "Network configuration", "description": "Network configuration",
@ -570,7 +570,7 @@
"name": "luci-app-network-tweaks", "name": "luci-app-network-tweaks",
"version": "1.0.0-r7", "version": "1.0.0-r7",
"filename": "luci-app-network-tweaks_1.0.0-r7_all.ipk", "filename": "luci-app-network-tweaks_1.0.0-r7_all.ipk",
"size": 15946, "size": 15948,
"category": "network", "category": "network",
"icon": "wifi", "icon": "wifi",
"description": "Network configuration", "description": "Network configuration",
@ -582,7 +582,7 @@
"name": "luci-app-nextcloud", "name": "luci-app-nextcloud",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-nextcloud_1.0.0-r1_all.ipk", "filename": "luci-app-nextcloud_1.0.0-r1_all.ipk",
"size": 10342, "size": 10350,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -606,7 +606,7 @@
"name": "luci-app-openclaw", "name": "luci-app-openclaw",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-openclaw_1.0.0-r1_all.ipk", "filename": "luci-app-openclaw_1.0.0-r1_all.ipk",
"size": 8408, "size": 8414,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -618,7 +618,7 @@
"name": "luci-app-peertube", "name": "luci-app-peertube",
"version": "0", "version": "0",
"filename": "luci-app-peertube_0_all.ipk", "filename": "luci-app-peertube_0_all.ipk",
"size": 5757, "size": 5755,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -630,7 +630,7 @@
"name": "luci-app-picobrew", "name": "luci-app-picobrew",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-picobrew_1.0.0-r1_all.ipk", "filename": "luci-app-picobrew_1.0.0-r1_all.ipk",
"size": 9529, "size": 9534,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -654,7 +654,7 @@
"name": "luci-app-secubox-admin", "name": "luci-app-secubox-admin",
"version": "1.0.0-r19", "version": "1.0.0-r19",
"filename": "luci-app-secubox-admin_1.0.0-r19_all.ipk", "filename": "luci-app-secubox-admin_1.0.0-r19_all.ipk",
"size": 58039, "size": 58041,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -666,7 +666,7 @@
"name": "luci-app-secubox-crowdsec", "name": "luci-app-secubox-crowdsec",
"version": "1.0.0-r3", "version": "1.0.0-r3",
"filename": "luci-app-secubox-crowdsec_1.0.0-r3_all.ipk", "filename": "luci-app-secubox-crowdsec_1.0.0-r3_all.ipk",
"size": 13922, "size": 13920,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -678,7 +678,7 @@
"name": "luci-app-secubox-mirror", "name": "luci-app-secubox-mirror",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "luci-app-secubox-mirror_0.1.0-r1_all.ipk", "filename": "luci-app-secubox-mirror_0.1.0-r1_all.ipk",
"size": 5849, "size": 5850,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -690,7 +690,7 @@
"name": "luci-app-secubox-netdiag", "name": "luci-app-secubox-netdiag",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-secubox-netdiag_1.0.0-r1_all.ipk", "filename": "luci-app-secubox-netdiag_1.0.0-r1_all.ipk",
"size": 15341, "size": 15346,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -702,7 +702,7 @@
"name": "luci-app-secubox-netifyd", "name": "luci-app-secubox-netifyd",
"version": "1.2.1-r1", "version": "1.2.1-r1",
"filename": "luci-app-secubox-netifyd_1.2.1-r1_all.ipk", "filename": "luci-app-secubox-netifyd_1.2.1-r1_all.ipk",
"size": 36718, "size": 36721,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -714,7 +714,7 @@
"name": "luci-app-secubox-p2p", "name": "luci-app-secubox-p2p",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "luci-app-secubox-p2p_0.1.0-r1_all.ipk", "filename": "luci-app-secubox-p2p_0.1.0-r1_all.ipk",
"size": 46833, "size": 46834,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -726,7 +726,7 @@
"name": "luci-app-secubox-portal", "name": "luci-app-secubox-portal",
"version": "0.7.0-r3", "version": "0.7.0-r3",
"filename": "luci-app-secubox-portal_0.7.0-r3_all.ipk", "filename": "luci-app-secubox-portal_0.7.0-r3_all.ipk",
"size": 41683, "size": 41685,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -738,7 +738,7 @@
"name": "luci-app-secubox-security-threats", "name": "luci-app-secubox-security-threats",
"version": "1.0.0-r4", "version": "1.0.0-r4",
"filename": "luci-app-secubox-security-threats_1.0.0-r4_all.ipk", "filename": "luci-app-secubox-security-threats_1.0.0-r4_all.ipk",
"size": 10654, "size": 10659,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -750,7 +750,7 @@
"name": "luci-app-secubox-users", "name": "luci-app-secubox-users",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-secubox-users_1.0.0-r1_all.ipk", "filename": "luci-app-secubox-users_1.0.0-r1_all.ipk",
"size": 5144, "size": 5147,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox system component", "description": "SecuBox system component",
@ -762,7 +762,7 @@
"name": "luci-app-service-registry", "name": "luci-app-service-registry",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-service-registry_1.0.0-r1_all.ipk", "filename": "luci-app-service-registry_1.0.0-r1_all.ipk",
"size": 39950, "size": 39954,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -774,7 +774,7 @@
"name": "luci-app-simplex", "name": "luci-app-simplex",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-simplex_1.0.0-r1_all.ipk", "filename": "luci-app-simplex_1.0.0-r1_all.ipk",
"size": 7035, "size": 7041,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -786,7 +786,7 @@
"name": "luci-app-streamlit", "name": "luci-app-streamlit",
"version": "1.0.0-r11", "version": "1.0.0-r11",
"filename": "luci-app-streamlit_1.0.0-r11_all.ipk", "filename": "luci-app-streamlit_1.0.0-r11_all.ipk",
"size": 20567, "size": 20569,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -798,7 +798,7 @@
"name": "luci-app-system-hub", "name": "luci-app-system-hub",
"version": "0.5.2-r2", "version": "0.5.2-r2",
"filename": "luci-app-system-hub_0.5.2-r2_all.ipk", "filename": "luci-app-system-hub_0.5.2-r2_all.ipk",
"size": 64288, "size": 64290,
"category": "system", "category": "system",
"icon": "settings", "icon": "settings",
"description": "System management", "description": "System management",
@ -810,7 +810,7 @@
"name": "luci-app-threat-analyst", "name": "luci-app-threat-analyst",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-threat-analyst_1.0.0-r1_all.ipk", "filename": "luci-app-threat-analyst_1.0.0-r1_all.ipk",
"size": 10140, "size": 10144,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -822,7 +822,7 @@
"name": "luci-app-tor", "name": "luci-app-tor",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-tor_1.0.0-r1_all.ipk", "filename": "luci-app-tor_1.0.0-r1_all.ipk",
"size": 17815, "size": 17818,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -834,7 +834,7 @@
"name": "luci-app-tor-shield", "name": "luci-app-tor-shield",
"version": "1.0.0-r10", "version": "1.0.0-r10",
"filename": "luci-app-tor-shield_1.0.0-r10_all.ipk", "filename": "luci-app-tor-shield_1.0.0-r10_all.ipk",
"size": 22763, "size": 22766,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -846,7 +846,7 @@
"name": "luci-app-traffic-shaper", "name": "luci-app-traffic-shaper",
"version": "0.4.0-r2", "version": "0.4.0-r2",
"filename": "luci-app-traffic-shaper_0.4.0-r2_all.ipk", "filename": "luci-app-traffic-shaper_0.4.0-r2_all.ipk",
"size": 14588, "size": 14591,
"category": "network", "category": "network",
"icon": "filter", "icon": "filter",
"description": "Traffic shaping and QoS", "description": "Traffic shaping and QoS",
@ -858,7 +858,7 @@
"name": "luci-app-vhost-manager", "name": "luci-app-vhost-manager",
"version": "0.5.0-r5", "version": "0.5.0-r5",
"filename": "luci-app-vhost-manager_0.5.0-r5_all.ipk", "filename": "luci-app-vhost-manager_0.5.0-r5_all.ipk",
"size": 26280, "size": 26283,
"category": "network", "category": "network",
"icon": "server", "icon": "server",
"description": "Virtual host management", "description": "Virtual host management",
@ -870,7 +870,7 @@
"name": "luci-app-voip", "name": "luci-app-voip",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-voip_1.0.0-r1_all.ipk", "filename": "luci-app-voip_1.0.0-r1_all.ipk",
"size": 11044, "size": 11045,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -882,7 +882,7 @@
"name": "luci-app-vortex-dns", "name": "luci-app-vortex-dns",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-vortex-dns_1.0.0-r1_all.ipk", "filename": "luci-app-vortex-dns_1.0.0-r1_all.ipk",
"size": 6079, "size": 6077,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -894,7 +894,7 @@
"name": "luci-app-vortex-firewall", "name": "luci-app-vortex-firewall",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "luci-app-vortex-firewall_1.0.0-r1_all.ipk", "filename": "luci-app-vortex-firewall_1.0.0-r1_all.ipk",
"size": 5451, "size": 5453,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -918,7 +918,7 @@
"name": "luci-app-wireguard-dashboard", "name": "luci-app-wireguard-dashboard",
"version": "0.7.0-r5", "version": "0.7.0-r5",
"filename": "luci-app-wireguard-dashboard_0.7.0-r5_all.ipk", "filename": "luci-app-wireguard-dashboard_0.7.0-r5_all.ipk",
"size": 42288, "size": 42290,
"category": "vpn", "category": "vpn",
"icon": "shield", "icon": "shield",
"description": "WireGuard VPN dashboard", "description": "WireGuard VPN dashboard",
@ -930,7 +930,7 @@
"name": "luci-app-zigbee2mqtt", "name": "luci-app-zigbee2mqtt",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "luci-app-zigbee2mqtt_1.0.0-r2_all.ipk", "filename": "luci-app-zigbee2mqtt_1.0.0-r2_all.ipk",
"size": 6595, "size": 6598,
"category": "iot", "category": "iot",
"icon": "radio", "icon": "radio",
"description": "Zigbee device management", "description": "Zigbee device management",
@ -942,7 +942,7 @@
"name": "luci-theme-secubox", "name": "luci-theme-secubox",
"version": "0.4.8-r1", "version": "0.4.8-r1",
"filename": "luci-theme-secubox_0.4.8-r1_all.ipk", "filename": "luci-theme-secubox_0.4.8-r1_all.ipk",
"size": 121588, "size": 121590,
"category": "theme", "category": "theme",
"icon": "palette", "icon": "palette",
"description": "LuCI theme", "description": "LuCI theme",
@ -954,7 +954,7 @@
"name": "secubox-app", "name": "secubox-app",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "secubox-app_1.0.0-r2_all.ipk", "filename": "secubox-app_1.0.0-r2_all.ipk",
"size": 11181, "size": 11187,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -966,7 +966,7 @@
"name": "secubox-app-adguardhome", "name": "secubox-app-adguardhome",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "secubox-app-adguardhome_1.0.0-r2_all.ipk", "filename": "secubox-app-adguardhome_1.0.0-r2_all.ipk",
"size": 2876, "size": 2878,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -978,7 +978,7 @@
"name": "secubox-app-auth-logger", "name": "secubox-app-auth-logger",
"version": "1.2.2-r1", "version": "1.2.2-r1",
"filename": "secubox-app-auth-logger_1.2.2-r1_all.ipk", "filename": "secubox-app-auth-logger_1.2.2-r1_all.ipk",
"size": 9374, "size": 9378,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -990,7 +990,7 @@
"name": "secubox-app-crowdsec-custom", "name": "secubox-app-crowdsec-custom",
"version": "1.1.0-r1", "version": "1.1.0-r1",
"filename": "secubox-app-crowdsec-custom_1.1.0-r1_all.ipk", "filename": "secubox-app-crowdsec-custom_1.1.0-r1_all.ipk",
"size": 6943, "size": 6942,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1002,7 +1002,7 @@
"name": "secubox-app-cs-firewall-bouncer", "name": "secubox-app-cs-firewall-bouncer",
"version": "0.0.31-r4_aarch64", "version": "0.0.31-r4_aarch64",
"filename": "secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk", "filename": "secubox-app-cs-firewall-bouncer_0.0.31-r4_aarch64_cortex-a72.ipk",
"size": 5049321, "size": 5049324,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1026,7 +1026,7 @@
"name": "secubox-app-device-intel", "name": "secubox-app-device-intel",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-device-intel_1.0.0-r1_all.ipk", "filename": "secubox-app-device-intel_1.0.0-r1_all.ipk",
"size": 13108, "size": 13105,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1038,7 +1038,7 @@
"name": "secubox-app-dns-provider", "name": "secubox-app-dns-provider",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-dns-provider_1.0.0-r1_all.ipk", "filename": "secubox-app-dns-provider_1.0.0-r1_all.ipk",
"size": 8258, "size": 8262,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1050,7 +1050,7 @@
"name": "secubox-app-domoticz", "name": "secubox-app-domoticz",
"version": "1.0.0-r4", "version": "1.0.0-r4",
"filename": "secubox-app-domoticz_1.0.0-r4_all.ipk", "filename": "secubox-app-domoticz_1.0.0-r4_all.ipk",
"size": 7510, "size": 7507,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1062,7 +1062,7 @@
"name": "secubox-app-exposure", "name": "secubox-app-exposure",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-exposure_1.0.0-r1_all.ipk", "filename": "secubox-app-exposure_1.0.0-r1_all.ipk",
"size": 9150, "size": 9151,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1074,7 +1074,7 @@
"name": "secubox-app-gitea", "name": "secubox-app-gitea",
"version": "1.0.0-r5", "version": "1.0.0-r5",
"filename": "secubox-app-gitea_1.0.0-r5_all.ipk", "filename": "secubox-app-gitea_1.0.0-r5_all.ipk",
"size": 9442, "size": 9436,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1098,7 +1098,7 @@
"name": "secubox-app-glances", "name": "secubox-app-glances",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-glances_1.0.0-r1_all.ipk", "filename": "secubox-app-glances_1.0.0-r1_all.ipk",
"size": 6144, "size": 6140,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1110,7 +1110,7 @@
"name": "secubox-app-guacamole", "name": "secubox-app-guacamole",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-guacamole_1.0.0-r1_all.ipk", "filename": "secubox-app-guacamole_1.0.0-r1_all.ipk",
"size": 6945, "size": 6946,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1122,7 +1122,7 @@
"name": "secubox-app-haproxy", "name": "secubox-app-haproxy",
"version": "1.0.0-r24", "version": "1.0.0-r24",
"filename": "secubox-app-haproxy_1.0.0-r24_all.ipk", "filename": "secubox-app-haproxy_1.0.0-r24_all.ipk",
"size": 22010, "size": 22009,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1134,7 +1134,7 @@
"name": "secubox-app-hexojs", "name": "secubox-app-hexojs",
"version": "1.0.0-r8", "version": "1.0.0-r8",
"filename": "secubox-app-hexojs_1.0.0-r8_all.ipk", "filename": "secubox-app-hexojs_1.0.0-r8_all.ipk",
"size": 100061, "size": 100058,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1146,7 +1146,7 @@
"name": "secubox-app-ipblocklist", "name": "secubox-app-ipblocklist",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-ipblocklist_1.0.0-r1_all.ipk", "filename": "secubox-app-ipblocklist_1.0.0-r1_all.ipk",
"size": 4705, "size": 4702,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1158,7 +1158,7 @@
"name": "secubox-app-jabber", "name": "secubox-app-jabber",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-jabber_1.0.0-r1_all.ipk", "filename": "secubox-app-jabber_1.0.0-r1_all.ipk",
"size": 13276, "size": 13278,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1170,7 +1170,7 @@
"name": "secubox-app-jellyfin", "name": "secubox-app-jellyfin",
"version": "3.0.0-r1", "version": "3.0.0-r1",
"filename": "secubox-app-jellyfin_3.0.0-r1_all.ipk", "filename": "secubox-app-jellyfin_3.0.0-r1_all.ipk",
"size": 4753, "size": 4754,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1194,7 +1194,7 @@
"name": "secubox-app-localai", "name": "secubox-app-localai",
"version": "3.9.0-r1", "version": "3.9.0-r1",
"filename": "secubox-app-localai_3.9.0-r1_all.ipk", "filename": "secubox-app-localai_3.9.0-r1_all.ipk",
"size": 5849, "size": 5833,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1218,7 +1218,7 @@
"name": "secubox-app-lyrion", "name": "secubox-app-lyrion",
"version": "2.0.2-r1", "version": "2.0.2-r1",
"filename": "secubox-app-lyrion_2.0.2-r1_all.ipk", "filename": "secubox-app-lyrion_2.0.2-r1_all.ipk",
"size": 8126, "size": 8124,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1230,7 +1230,7 @@
"name": "secubox-app-mac-guardian", "name": "secubox-app-mac-guardian",
"version": "0.5.0-r1", "version": "0.5.0-r1",
"filename": "secubox-app-mac-guardian_0.5.0-r1_all.ipk", "filename": "secubox-app-mac-guardian_0.5.0-r1_all.ipk",
"size": 12094, "size": 12099,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1242,7 +1242,7 @@
"name": "secubox-app-magicmirror2", "name": "secubox-app-magicmirror2",
"version": "0.4.0-r8", "version": "0.4.0-r8",
"filename": "secubox-app-magicmirror2_0.4.0-r8_all.ipk", "filename": "secubox-app-magicmirror2_0.4.0-r8_all.ipk",
"size": 9256, "size": 9251,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1254,7 +1254,7 @@
"name": "secubox-app-mailinabox", "name": "secubox-app-mailinabox",
"version": "2.0.0-r1", "version": "2.0.0-r1",
"filename": "secubox-app-mailinabox_2.0.0-r1_all.ipk", "filename": "secubox-app-mailinabox_2.0.0-r1_all.ipk",
"size": 7573, "size": 7570,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1266,7 +1266,7 @@
"name": "secubox-app-mailserver", "name": "secubox-app-mailserver",
"version": "2.0.0-r1", "version": "2.0.0-r1",
"filename": "secubox-app-mailserver_2.0.0-r1_all.ipk", "filename": "secubox-app-mailserver_2.0.0-r1_all.ipk",
"size": 5702, "size": 5699,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1278,7 +1278,7 @@
"name": "secubox-app-matrix", "name": "secubox-app-matrix",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-matrix_1.0.0-r1_all.ipk", "filename": "secubox-app-matrix_1.0.0-r1_all.ipk",
"size": 10451, "size": 10454,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1290,7 +1290,7 @@
"name": "secubox-app-metabolizer", "name": "secubox-app-metabolizer",
"version": "1.0.0-r3", "version": "1.0.0-r3",
"filename": "secubox-app-metabolizer_1.0.0-r3_all.ipk", "filename": "secubox-app-metabolizer_1.0.0-r3_all.ipk",
"size": 13975, "size": 13980,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1314,7 +1314,7 @@
"name": "secubox-app-mmpm", "name": "secubox-app-mmpm",
"version": "0.2.0-r5", "version": "0.2.0-r5",
"filename": "secubox-app-mmpm_0.2.0-r5_all.ipk", "filename": "secubox-app-mmpm_0.2.0-r5_all.ipk",
"size": 3979, "size": 3977,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1326,7 +1326,7 @@
"name": "secubox-app-nextcloud", "name": "secubox-app-nextcloud",
"version": "1.0.0-r2", "version": "1.0.0-r2",
"filename": "secubox-app-nextcloud_1.0.0-r2_all.ipk", "filename": "secubox-app-nextcloud_1.0.0-r2_all.ipk",
"size": 9674, "size": 9672,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1338,7 +1338,7 @@
"name": "secubox-app-ollama", "name": "secubox-app-ollama",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "secubox-app-ollama_0.1.0-r1_all.ipk", "filename": "secubox-app-ollama_0.1.0-r1_all.ipk",
"size": 5741, "size": 5739,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1350,7 +1350,7 @@
"name": "secubox-app-picobrew", "name": "secubox-app-picobrew",
"version": "1.0.0-r7", "version": "1.0.0-r7",
"filename": "secubox-app-picobrew_1.0.0-r7_all.ipk", "filename": "secubox-app-picobrew_1.0.0-r7_all.ipk",
"size": 5536, "size": 5542,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1362,7 +1362,7 @@
"name": "secubox-app-rustdesk", "name": "secubox-app-rustdesk",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-rustdesk_1.0.0-r1_all.ipk", "filename": "secubox-app-rustdesk_1.0.0-r1_all.ipk",
"size": 4468, "size": 4465,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1374,7 +1374,7 @@
"name": "secubox-app-simplex", "name": "secubox-app-simplex",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-simplex_1.0.0-r1_all.ipk", "filename": "secubox-app-simplex_1.0.0-r1_all.ipk",
"size": 9365, "size": 9368,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1398,7 +1398,7 @@
"name": "secubox-app-streamlit", "name": "secubox-app-streamlit",
"version": "1.0.0-r5", "version": "1.0.0-r5",
"filename": "secubox-app-streamlit_1.0.0-r5_all.ipk", "filename": "secubox-app-streamlit_1.0.0-r5_all.ipk",
"size": 16516, "size": 16514,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1410,7 +1410,7 @@
"name": "secubox-app-tor", "name": "secubox-app-tor",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-tor_1.0.0-r1_all.ipk", "filename": "secubox-app-tor_1.0.0-r1_all.ipk",
"size": 7366, "size": 7374,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1422,7 +1422,7 @@
"name": "secubox-app-voip", "name": "secubox-app-voip",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-app-voip_1.0.0-r1_all.ipk", "filename": "secubox-app-voip_1.0.0-r1_all.ipk",
"size": 11955, "size": 11957,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1434,7 +1434,7 @@
"name": "secubox-app-webapp", "name": "secubox-app-webapp",
"version": "1.5.0-r7", "version": "1.5.0-r7",
"filename": "secubox-app-webapp_1.5.0-r7_all.ipk", "filename": "secubox-app-webapp_1.5.0-r7_all.ipk",
"size": 39177, "size": 39176,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1446,7 +1446,7 @@
"name": "secubox-app-zigbee2mqtt", "name": "secubox-app-zigbee2mqtt",
"version": "1.0.0-r3", "version": "1.0.0-r3",
"filename": "secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk", "filename": "secubox-app-zigbee2mqtt_1.0.0-r3_all.ipk",
"size": 5539, "size": 5542,
"category": "secubox", "category": "secubox",
"icon": "package", "icon": "package",
"description": "SecuBox backend service", "description": "SecuBox backend service",
@ -1458,7 +1458,7 @@
"name": "secubox-config-advisor", "name": "secubox-config-advisor",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "secubox-config-advisor_0.1.0-r1_all.ipk", "filename": "secubox-config-advisor_0.1.0-r1_all.ipk",
"size": 14848, "size": 14849,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1470,7 +1470,7 @@
"name": "secubox-content-pkg", "name": "secubox-content-pkg",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-content-pkg_1.0.0-r1_all.ipk", "filename": "secubox-content-pkg_1.0.0-r1_all.ipk",
"size": 3909, "size": 3908,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1482,7 +1482,7 @@
"name": "secubox-cookie-tracker", "name": "secubox-cookie-tracker",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-cookie-tracker_1.0.0-r1_all.ipk", "filename": "secubox-cookie-tracker_1.0.0-r1_all.ipk",
"size": 10642, "size": 10644,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1494,7 +1494,7 @@
"name": "secubox-core", "name": "secubox-core",
"version": "0.10.0-r16", "version": "0.10.0-r16",
"filename": "secubox-core_0.10.0-r16_all.ipk", "filename": "secubox-core_0.10.0-r16_all.ipk",
"size": 123051, "size": 127205,
"category": "system", "category": "system",
"icon": "box", "icon": "box",
"description": "SecuBox core components", "description": "SecuBox core components",
@ -1506,7 +1506,7 @@
"name": "secubox-cve-triage", "name": "secubox-cve-triage",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-cve-triage_1.0.0-r1_all.ipk", "filename": "secubox-cve-triage_1.0.0-r1_all.ipk",
"size": 11829, "size": 11826,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1518,7 +1518,7 @@
"name": "secubox-dns-guard", "name": "secubox-dns-guard",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-dns-guard_1.0.0-r1_all.ipk", "filename": "secubox-dns-guard_1.0.0-r1_all.ipk",
"size": 12488, "size": 12486,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1530,7 +1530,7 @@
"name": "secubox-identity", "name": "secubox-identity",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "secubox-identity_0.1.0-r1_all.ipk", "filename": "secubox-identity_0.1.0-r1_all.ipk",
"size": 8086, "size": 8084,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1542,7 +1542,7 @@
"name": "secubox-iot-guard", "name": "secubox-iot-guard",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-iot-guard_1.0.0-r1_all.ipk", "filename": "secubox-iot-guard_1.0.0-r1_all.ipk",
"size": 13370, "size": 13371,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1554,7 +1554,7 @@
"name": "secubox-localrecall", "name": "secubox-localrecall",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-localrecall_1.0.0-r1_all.ipk", "filename": "secubox-localrecall_1.0.0-r1_all.ipk",
"size": 7798, "size": 7795,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1566,7 +1566,7 @@
"name": "secubox-master-link", "name": "secubox-master-link",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-master-link_1.0.0-r1_all.ipk", "filename": "secubox-master-link_1.0.0-r1_all.ipk",
"size": 15037, "size": 15035,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1578,7 +1578,7 @@
"name": "secubox-mcp-server", "name": "secubox-mcp-server",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-mcp-server_1.0.0-r1_all.ipk", "filename": "secubox-mcp-server_1.0.0-r1_all.ipk",
"size": 11425, "size": 11431,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1590,7 +1590,7 @@
"name": "secubox-mirrornet", "name": "secubox-mirrornet",
"version": "0.1.0-r1", "version": "0.1.0-r1",
"filename": "secubox-mirrornet_0.1.0-r1_all.ipk", "filename": "secubox-mirrornet_0.1.0-r1_all.ipk",
"size": 15309, "size": 15305,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1602,7 +1602,7 @@
"name": "secubox-network-anomaly", "name": "secubox-network-anomaly",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-network-anomaly_1.0.0-r1_all.ipk", "filename": "secubox-network-anomaly_1.0.0-r1_all.ipk",
"size": 6164, "size": 6165,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1614,7 +1614,7 @@
"name": "secubox-p2p", "name": "secubox-p2p",
"version": "0.6.0-r3", "version": "0.6.0-r3",
"filename": "secubox-p2p_0.6.0-r3_all.ipk", "filename": "secubox-p2p_0.6.0-r3_all.ipk",
"size": 47859, "size": 47860,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1638,7 +1638,7 @@
"name": "secubox-threat-analyst", "name": "secubox-threat-analyst",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-threat-analyst_1.0.0-r1_all.ipk", "filename": "secubox-threat-analyst_1.0.0-r1_all.ipk",
"size": 9864, "size": 9867,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",
@ -1650,7 +1650,7 @@
"name": "secubox-vortex-dns", "name": "secubox-vortex-dns",
"version": "1.0.0-r1", "version": "1.0.0-r1",
"filename": "secubox-vortex-dns_1.0.0-r1_all.ipk", "filename": "secubox-vortex-dns_1.0.0-r1_all.ipk",
"size": 5441, "size": 5438,
"category": "utility", "category": "utility",
"icon": "package", "icon": "package",
"description": "SecuBox package", "description": "SecuBox package",

Some files were not shown because too many files have changed in this diff Show More