feat(vortex-dns): Complete meshed subdomain delegation system
- Add init.d script for daemon mode with procd integration - Update Makefile to install init script - Add packages to bonus feed (secubox-vortex-dns, luci-app-vortex-dns) - Update tracking files with completion status Features: - Master/slave hierarchical DNS delegation - Wildcard domain management (*.domain) - First Peek auto-registration of services - Gossip-based exposure config sync via secubox-p2p - Submastering for nested hierarchies - LuCI dashboard with mode detection and action buttons Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0d619d4780
commit
223abb1114
@ -1,6 +1,6 @@
|
|||||||
# SecuBox UI & Theme History
|
# SecuBox UI & Theme History
|
||||||
|
|
||||||
_Last updated: 2026-02-06_
|
_Last updated: 2026-02-05_
|
||||||
|
|
||||||
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.
|
||||||
@ -390,3 +390,33 @@ _Last updated: 2026-02-06_
|
|||||||
- Added "LXC container fails with cgroup:mixed" section to FAQ-TROUBLESHOOTING.md
|
- Added "LXC container fails with cgroup:mixed" section to FAQ-TROUBLESHOOTING.md
|
||||||
- Updated CLAUDE.md Session Startup section to include FAQ-TROUBLESHOOTING.md consultation
|
- Updated CLAUDE.md Session Startup section to include FAQ-TROUBLESHOOTING.md consultation
|
||||||
- Key recommendation: avoid `lxc.mount.auto` entirely, use explicit bind mounts
|
- Key recommendation: avoid `lxc.mount.auto` entirely, use explicit bind mounts
|
||||||
|
|
||||||
|
35. **Vortex DNS - Meshed Subdomain Delegation (2026-02-05)**
|
||||||
|
- Created `secubox-vortex-dns` — meshed multi-dynamic subdomain delegation system.
|
||||||
|
- **Modes**:
|
||||||
|
- **Master**: Owns wildcard domain (*.secubox.io), delegates subzones to slaves
|
||||||
|
- **Slave**: Receives delegated subdomain from master (node1.secubox.io)
|
||||||
|
- **Submaster**: Hierarchical delegation (master → submaster → slaves)
|
||||||
|
- **Standalone**: Default mode, mesh-only participation
|
||||||
|
- **CLI commands** (`vortexctl`):
|
||||||
|
- Master: `master init <domain>`, `master delegate <node> <zone>`, `master revoke <zone>`, `master list-slaves`
|
||||||
|
- Slave: `slave join <master> <token>`, `slave leave`, `slave status`
|
||||||
|
- Mesh: `mesh sync`, `mesh publish <service> <domain>`, `mesh unpublish`, `mesh status`
|
||||||
|
- Submaster: `submaster promote`, `submaster demote`
|
||||||
|
- General: `status`, `daemon`
|
||||||
|
- **Mesh integration**:
|
||||||
|
- First Peek: Auto-registers new services in mesh DNS
|
||||||
|
- Gossip-based exposure config sync via `secubox-p2p`
|
||||||
|
- Published services tracked in `/var/lib/vortex-dns/published.json`
|
||||||
|
- **DNS provider integration**:
|
||||||
|
- Uses `dnsctl` from `secubox-app-dns-provider` for programmatic DNS record management
|
||||||
|
- Auto-creates wildcard A record on master init
|
||||||
|
- NS/A records for zone delegation
|
||||||
|
- Created `luci-app-vortex-dns` — LuCI dashboard.
|
||||||
|
- Status panel: mode badge, enabled state, sync interval, last sync time
|
||||||
|
- Master section: wildcard domain, DNS provider, delegated slave count, zones table
|
||||||
|
- Slave section: parent master, delegated zone
|
||||||
|
- Mesh section: gossip state, First Peek, peer count, published services
|
||||||
|
- Actions: Sync Mesh, Initialize as Master, Join as Slave, Delegate Zone
|
||||||
|
- **RPCD methods**: status, get_slaves, get_peers, get_published, master_init, delegate, revoke, slave_join, mesh_sync, mesh_publish
|
||||||
|
- Part of v0.19 MirrorNetworking roadmap (Couche 3).
|
||||||
|
|||||||
@ -176,11 +176,11 @@ All cloud providers are **opt-in**. Offline resilience: local tier always active
|
|||||||
- [ ] `secubox-mirrornet` — Mesh orchestration, gossip protocol
|
- [ ] `secubox-mirrornet` — Mesh orchestration, gossip protocol
|
||||||
- [ ] `secubox-identity` — did:plc generation, trust scoring
|
- [ ] `secubox-identity` — did:plc generation, trust scoring
|
||||||
- [ ] `secubox-p2p-intel` — IoC signed gossip
|
- [ ] `secubox-p2p-intel` — IoC signed gossip
|
||||||
- [ ] Master/Slave CDN Architecture:
|
- [x] Master/Slave CDN Architecture:
|
||||||
- [ ] Wildcard domain delegation (*.secubox.io concept)
|
- [x] Wildcard domain delegation (*.secubox.io concept) — `secubox-vortex-dns` (2026-02-05)
|
||||||
- [ ] Service mirroring via reverse proxy chaining
|
- [ ] Service mirroring via reverse proxy chaining
|
||||||
- [ ] Gossip-based exposure config sync
|
- [x] Gossip-based exposure config sync — `vortexctl mesh sync` (2026-02-05)
|
||||||
- [ ] Hierarchical submastering/multimixslaving
|
- [x] Hierarchical submastering/multimixslaving — `vortexctl submaster` (2026-02-05)
|
||||||
|
|
||||||
### v1.0.0 — Full Stack
|
### v1.0.0 — Full Stack
|
||||||
|
|
||||||
|
|||||||
@ -43,7 +43,13 @@ _Last updated: 2026-02-06_
|
|||||||
|
|
||||||
### In Progress
|
### In Progress
|
||||||
|
|
||||||
- **Vortex DNS** - Meshed multi-dynamic subdomain delegation (QUEUED)
|
- **Vortex DNS** - Meshed multi-dynamic subdomain delegation (DONE 2026-02-05)
|
||||||
|
- Created `secubox-vortex-dns` package with `vortexctl` CLI
|
||||||
|
- Master/slave hierarchical DNS delegation
|
||||||
|
- Wildcard domain management (*.domain.com)
|
||||||
|
- First Peek auto-registration of services
|
||||||
|
- Gossip-based exposure config sync via secubox-p2p
|
||||||
|
- Created `luci-app-vortex-dns` dashboard
|
||||||
|
|
||||||
### Just Completed (2026-02-06)
|
### Just Completed (2026-02-06)
|
||||||
|
|
||||||
|
|||||||
@ -284,7 +284,9 @@
|
|||||||
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\nfix\\(mailserver\\): Use LMDB maps instead of hash for Alpine Postfix\n\nAlpine Linux''s Postfix is compiled with LMDB support, not BerkeleyDB\nhash support. This caused \"Temporary lookup failure\" errors on send.\n\nChanges:\n- Changed virtual_alias_maps and virtual_mailbox_maps to lmdb: prefix\n- Copy resolv.conf to Postfix chroot for DNS resolution\n- Added `mailctl fix-postfix` command to repair existing installations\n\nRoot cause: virtual_alias_maps was configured as hash:/etc/postfix/virtual\nbut the hash map type is not supported on Alpine, only lmdb.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\nfix\\(mailserver\\): Use LMDB maps instead of hash for Alpine Postfix\n\nAlpine Linux''s Postfix is compiled with LMDB support, not BerkeleyDB\nhash support. This caused \"Temporary lookup failure\" errors on send.\n\nChanges:\n- Changed virtual_alias_maps and virtual_mailbox_maps to lmdb: prefix\n- Copy resolv.conf to Postfix chroot for DNS resolution\n- Added `mailctl fix-postfix` command to repair existing installations\n\nRoot cause: virtual_alias_maps was configured as hash:/etc/postfix/virtual\nbut the hash map type is not supported on Alpine, only lmdb.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
||||||
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt add:*)",
|
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt add:*)",
|
||||||
"Bash(recipient table\" errors because Postfix treated the domain as local\ninstead of virtual.\n\nChanges:\n- Remove $mydomain from mydestination in setup.sh\n- Update fix-postfix command to also fix this issue\n- Ensure vdomains file is properly created\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
"Bash(recipient table\" errors because Postfix treated the domain as local\ninstead of virtual.\n\nChanges:\n- Remove $mydomain from mydestination in setup.sh\n- Update fix-postfix command to also fix this issue\n- Ensure vdomains file is properly created\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
||||||
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\ndocs: Document mail port hijacking fix\n\nFirewall DNAT rules were redirecting ALL port 993/587/465 traffic\nto local mailserver, blocking external mail server connections.\n\nFix: Add -i $WAN_IF to only redirect inbound WAN traffic.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")"
|
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\ndocs: Document mail port hijacking fix\n\nFirewall DNAT rules were redirecting ALL port 993/587/465 traffic\nto local mailserver, blocking external mail server connections.\n\nFix: Add -i $WAN_IF to only redirect inbound WAN traffic.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
||||||
|
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\nfeat\\(vortex-dns\\): Add LuCI dashboard for mesh DNS management\n\nNew package: luci-app-vortex-dns\n- Dashboard showing mode, status, sync info\n- Master section with delegated zones table\n- Slave section with parent master info\n- Mesh peers section with online status\n- Actions: Initialize master, Join slave, Delegate zone, Mesh sync\n- RPCD handler with 8 methods\n\nAlso fixes:\n- Mail port hijacking: WAN-only DNAT rules\n- Threat-analyst LocalAI port: 8081 → 8091\n- Domoticz password reset\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")",
|
||||||
|
"Bash(git -C /home/reepost/CyberMindStudio/secubox-openwrt commit -m \"$\\(cat <<''EOF''\nfeat\\(domoticz\\): Add password reset via RPCD\n\nNew RPCD method: reset_password\n- Resets Domoticz admin password via SQLite\n- Accessible from LuCI dashboard\n- MD5 hashes the password before storing\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>\nEOF\n\\)\")"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,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: 11736
|
Size: 11735
|
||||||
|
|
||||||
Package: luci-app-bandwidth-manager
|
Package: luci-app-bandwidth-manager
|
||||||
Version: 0.5.0-r2
|
Version: 0.5.0-r2
|
||||||
@ -32,7 +32,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: 23182
|
Size: 23185
|
||||||
|
|
||||||
Package: luci-app-client-guardian
|
Package: luci-app-client-guardian
|
||||||
Version: 0.4.0-r7
|
Version: 0.4.0-r7
|
||||||
@ -44,7 +44,7 @@ Architecture: all
|
|||||||
Installed-Size: 286720
|
Installed-Size: 286720
|
||||||
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: 54536
|
Size: 54534
|
||||||
|
|
||||||
Package: luci-app-crowdsec-dashboard
|
Package: luci-app-crowdsec-dashboard
|
||||||
Version: 0.7.0-r32
|
Version: 0.7.0-r32
|
||||||
@ -56,7 +56,7 @@ Architecture: all
|
|||||||
Installed-Size: 184320
|
Installed-Size: 184320
|
||||||
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.7.0-r32_all.ipk
|
Filename: luci-app-crowdsec-dashboard_0.7.0-r32_all.ipk
|
||||||
Size: 33739
|
Size: 33737
|
||||||
|
|
||||||
Package: luci-app-cyberfeed
|
Package: luci-app-cyberfeed
|
||||||
Version: 0.1.1-r1
|
Version: 0.1.1-r1
|
||||||
@ -68,7 +68,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: 12837
|
Size: 12839
|
||||||
|
|
||||||
Package: luci-app-device-intel
|
Package: luci-app-device-intel
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -80,7 +80,7 @@ Architecture: all
|
|||||||
Installed-Size: 61440
|
Installed-Size: 61440
|
||||||
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: 10859
|
Size: 10854
|
||||||
|
|
||||||
Package: luci-app-dnsguard
|
Package: luci-app-dnsguard
|
||||||
Version: 1.1.0-r1
|
Version: 1.1.0-r1
|
||||||
@ -99,7 +99,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: 12413
|
Size: 12415
|
||||||
|
|
||||||
Package: luci-app-dns-provider
|
Package: luci-app-dns-provider
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -111,7 +111,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: 7130
|
Size: 7131
|
||||||
|
|
||||||
Package: luci-app-exposure
|
Package: luci-app-exposure
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -123,7 +123,7 @@ Architecture: all
|
|||||||
Installed-Size: 61440
|
Installed-Size: 61440
|
||||||
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: 9841
|
Size: 9847
|
||||||
|
|
||||||
Package: luci-app-gitea
|
Package: luci-app-gitea
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -135,7 +135,7 @@ Architecture: all
|
|||||||
Installed-Size: 81920
|
Installed-Size: 81920
|
||||||
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: 15300
|
Size: 15301
|
||||||
|
|
||||||
Package: luci-app-glances
|
Package: luci-app-glances
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -147,7 +147,7 @@ Architecture: all
|
|||||||
Installed-Size: 40960
|
Installed-Size: 40960
|
||||||
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: 6969
|
Size: 6966
|
||||||
|
|
||||||
Package: luci-app-haproxy
|
Package: luci-app-haproxy
|
||||||
Version: 1.0.0-r8
|
Version: 1.0.0-r8
|
||||||
@ -171,7 +171,7 @@ Architecture: all
|
|||||||
Installed-Size: 184320
|
Installed-Size: 184320
|
||||||
Description: Modern dashboard for Hexo static site generator on OpenWrt
|
Description: Modern dashboard for Hexo static site generator on OpenWrt
|
||||||
Filename: luci-app-hexojs_1.0.0-r3_all.ipk
|
Filename: luci-app-hexojs_1.0.0-r3_all.ipk
|
||||||
Size: 30307
|
Size: 30308
|
||||||
|
|
||||||
Package: luci-app-jellyfin
|
Package: luci-app-jellyfin
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -183,7 +183,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
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: 6061
|
Size: 6062
|
||||||
|
|
||||||
Package: luci-app-jitsi
|
Package: luci-app-jitsi
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -195,7 +195,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: 5134
|
Size: 5135
|
||||||
|
|
||||||
Package: luci-app-ksm-manager
|
Package: luci-app-ksm-manager
|
||||||
Version: 0.4.0-r2
|
Version: 0.4.0-r2
|
||||||
@ -207,7 +207,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: 18719
|
Size: 18724
|
||||||
|
|
||||||
Package: luci-app-localai
|
Package: luci-app-localai
|
||||||
Version: 0.1.0-r15
|
Version: 0.1.0-r15
|
||||||
@ -219,7 +219,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: 13182
|
Size: 13183
|
||||||
|
|
||||||
Package: luci-app-lyrion
|
Package: luci-app-lyrion
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -231,7 +231,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: 6725
|
Size: 6727
|
||||||
|
|
||||||
Package: luci-app-mac-guardian
|
Package: luci-app-mac-guardian
|
||||||
Version: 0.5.0-r1
|
Version: 0.5.0-r1
|
||||||
@ -243,7 +243,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: 6509
|
Size: 6512
|
||||||
|
|
||||||
Package: luci-app-magicmirror2
|
Package: luci-app-magicmirror2
|
||||||
Version: 0.4.0-r6
|
Version: 0.4.0-r6
|
||||||
@ -267,7 +267,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: 5486
|
Size: 5485
|
||||||
|
|
||||||
Package: luci-app-master-link
|
Package: luci-app-master-link
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -279,7 +279,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: 6245
|
Size: 6246
|
||||||
|
|
||||||
Package: luci-app-media-flow
|
Package: luci-app-media-flow
|
||||||
Version: 0.6.4-r1
|
Version: 0.6.4-r1
|
||||||
@ -291,7 +291,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: 25418
|
Size: 25419
|
||||||
|
|
||||||
Package: luci-app-metablogizer
|
Package: luci-app-metablogizer
|
||||||
Version: 1.0.0-r5
|
Version: 1.0.0-r5
|
||||||
@ -303,7 +303,7 @@ Architecture: all
|
|||||||
Installed-Size: 122880
|
Installed-Size: 122880
|
||||||
Description: LuCI support for MetaBlogizer Static Site Publisher
|
Description: LuCI support for MetaBlogizer Static Site Publisher
|
||||||
Filename: luci-app-metablogizer_1.0.0-r5_all.ipk
|
Filename: luci-app-metablogizer_1.0.0-r5_all.ipk
|
||||||
Size: 24773
|
Size: 24774
|
||||||
|
|
||||||
Package: luci-app-metabolizer
|
Package: luci-app-metabolizer
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -327,7 +327,7 @@ Architecture: all
|
|||||||
Installed-Size: 61440
|
Installed-Size: 61440
|
||||||
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: 11149
|
Size: 11147
|
||||||
|
|
||||||
Package: luci-app-mmpm
|
Package: luci-app-mmpm
|
||||||
Version: 0.2.0-r3
|
Version: 0.2.0-r3
|
||||||
@ -339,7 +339,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: 7899
|
Size: 7903
|
||||||
|
|
||||||
Package: luci-app-mqtt-bridge
|
Package: luci-app-mqtt-bridge
|
||||||
Version: 0.4.0-r4
|
Version: 0.4.0-r4
|
||||||
@ -375,7 +375,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: 20484
|
Size: 20487
|
||||||
|
|
||||||
Package: luci-app-network-modes
|
Package: luci-app-network-modes
|
||||||
Version: 0.5.0-r3
|
Version: 0.5.0-r3
|
||||||
@ -387,7 +387,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: 54149
|
Size: 54151
|
||||||
|
|
||||||
Package: luci-app-network-tweaks
|
Package: luci-app-network-tweaks
|
||||||
Version: 1.0.0-r7
|
Version: 1.0.0-r7
|
||||||
@ -399,7 +399,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: 14957
|
Size: 14959
|
||||||
|
|
||||||
Package: luci-app-nextcloud
|
Package: luci-app-nextcloud
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -411,7 +411,7 @@ Architecture: all
|
|||||||
Installed-Size: 30720
|
Installed-Size: 30720
|
||||||
Description: LuCI support for Nextcloud
|
Description: LuCI support for Nextcloud
|
||||||
Filename: luci-app-nextcloud_1.0.0-r1_all.ipk
|
Filename: luci-app-nextcloud_1.0.0-r1_all.ipk
|
||||||
Size: 6489
|
Size: 6482
|
||||||
|
|
||||||
Package: luci-app-ollama
|
Package: luci-app-ollama
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -423,7 +423,7 @@ Architecture: all
|
|||||||
Installed-Size: 61440
|
Installed-Size: 61440
|
||||||
Description: Modern dashboard for Ollama LLM management on OpenWrt
|
Description: Modern dashboard for Ollama LLM management on OpenWrt
|
||||||
Filename: luci-app-ollama_0.1.0-r1_all.ipk
|
Filename: luci-app-ollama_0.1.0-r1_all.ipk
|
||||||
Size: 12352
|
Size: 12354
|
||||||
|
|
||||||
Package: luci-app-picobrew
|
Package: luci-app-picobrew
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -435,7 +435,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: 9459
|
Size: 9462
|
||||||
|
|
||||||
Package: luci-app-secubox
|
Package: luci-app-secubox
|
||||||
Version: 0.7.1-r4
|
Version: 0.7.1-r4
|
||||||
@ -458,7 +458,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: 57245
|
Size: 57250
|
||||||
|
|
||||||
Package: luci-app-secubox-crowdsec
|
Package: luci-app-secubox-crowdsec
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -482,7 +482,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: 15306
|
Size: 15309
|
||||||
|
|
||||||
Package: luci-app-secubox-netifyd
|
Package: luci-app-secubox-netifyd
|
||||||
Version: 1.2.1-r1
|
Version: 1.2.1-r1
|
||||||
@ -494,7 +494,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: 36544
|
Size: 36543
|
||||||
|
|
||||||
Package: luci-app-secubox-p2p
|
Package: luci-app-secubox-p2p
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -506,7 +506,7 @@ Architecture: all
|
|||||||
Installed-Size: 235520
|
Installed-Size: 235520
|
||||||
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: 44086
|
Size: 44085
|
||||||
|
|
||||||
Package: luci-app-secubox-portal
|
Package: luci-app-secubox-portal
|
||||||
Version: 0.7.0-r2
|
Version: 0.7.0-r2
|
||||||
@ -518,7 +518,7 @@ Architecture: all
|
|||||||
Installed-Size: 122880
|
Installed-Size: 122880
|
||||||
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-r2_all.ipk
|
Filename: luci-app-secubox-portal_0.7.0-r2_all.ipk
|
||||||
Size: 24644
|
Size: 24643
|
||||||
|
|
||||||
Package: luci-app-secubox-security-threats
|
Package: luci-app-secubox-security-threats
|
||||||
Version: 1.0.0-r4
|
Version: 1.0.0-r4
|
||||||
@ -530,7 +530,7 @@ Architecture: all
|
|||||||
Installed-Size: 102400
|
Installed-Size: 102400
|
||||||
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: 21895
|
Size: 21896
|
||||||
|
|
||||||
Package: luci-app-service-registry
|
Package: luci-app-service-registry
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -542,7 +542,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: 39828
|
Size: 39826
|
||||||
|
|
||||||
Package: luci-app-simplex
|
Package: luci-app-simplex
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -554,7 +554,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: 7000
|
Size: 6999
|
||||||
|
|
||||||
Package: luci-app-streamlit
|
Package: luci-app-streamlit
|
||||||
Version: 1.0.0-r11
|
Version: 1.0.0-r11
|
||||||
@ -566,7 +566,7 @@ Architecture: all
|
|||||||
Installed-Size: 81920
|
Installed-Size: 81920
|
||||||
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: 14749
|
Size: 14748
|
||||||
|
|
||||||
Package: luci-app-system-hub
|
Package: luci-app-system-hub
|
||||||
Version: 0.5.1-r4
|
Version: 0.5.1-r4
|
||||||
@ -590,7 +590,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: 9753
|
Size: 9751
|
||||||
|
|
||||||
Package: luci-app-tor-shield
|
Package: luci-app-tor-shield
|
||||||
Version: 1.0.0-r10
|
Version: 1.0.0-r10
|
||||||
@ -602,7 +602,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: 22362
|
Size: 22364
|
||||||
|
|
||||||
Package: luci-app-traffic-shaper
|
Package: luci-app-traffic-shaper
|
||||||
Version: 0.4.0-r2
|
Version: 0.4.0-r2
|
||||||
@ -614,7 +614,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: 14535
|
Size: 14534
|
||||||
|
|
||||||
Package: luci-app-vhost-manager
|
Package: luci-app-vhost-manager
|
||||||
Version: 0.5.0-r5
|
Version: 0.5.0-r5
|
||||||
@ -628,6 +628,18 @@ Description: Nginx reverse proxy manager with Let's Encrypt SSL certificates, a
|
|||||||
Filename: luci-app-vhost-manager_0.5.0-r5_all.ipk
|
Filename: luci-app-vhost-manager_0.5.0-r5_all.ipk
|
||||||
Size: 26186
|
Size: 26186
|
||||||
|
|
||||||
|
Package: luci-app-vortex-dns
|
||||||
|
Version: 1.0.0-r1
|
||||||
|
Depends: secubox-vortex-dns, luci-base
|
||||||
|
License: GPL-3.0
|
||||||
|
Section: luci
|
||||||
|
Maintainer: OpenWrt LuCI community
|
||||||
|
Architecture: all
|
||||||
|
Installed-Size: 30720
|
||||||
|
Description: LuCI Vortex DNS Dashboard
|
||||||
|
Filename: luci-app-vortex-dns_1.0.0-r1_all.ipk
|
||||||
|
Size: 5562
|
||||||
|
|
||||||
Package: luci-app-wireguard-dashboard
|
Package: luci-app-wireguard-dashboard
|
||||||
Version: 0.7.0-r5
|
Version: 0.7.0-r5
|
||||||
Depends: luci-base, luci-app-secubox, luci-lib-jsonc, rpcd, rpcd-mod-luci, wireguard-tools
|
Depends: luci-base, luci-app-secubox, luci-lib-jsonc, rpcd, rpcd-mod-luci, wireguard-tools
|
||||||
@ -638,7 +650,7 @@ Architecture: all
|
|||||||
Installed-Size: 204800
|
Installed-Size: 204800
|
||||||
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: 39607
|
Size: 39608
|
||||||
|
|
||||||
Package: luci-app-zigbee2mqtt
|
Package: luci-app-zigbee2mqtt
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -650,7 +662,7 @@ Architecture: all
|
|||||||
Installed-Size: 40960
|
Installed-Size: 40960
|
||||||
Description: Graphical interface for managing the Zigbee2MQTT docker application.
|
Description: Graphical interface for managing the Zigbee2MQTT docker application.
|
||||||
Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk
|
Filename: luci-app-zigbee2mqtt_1.0.0-r2_all.ipk
|
||||||
Size: 6813
|
Size: 6815
|
||||||
|
|
||||||
Package: luci-theme-secubox
|
Package: luci-theme-secubox
|
||||||
Version: 0.4.7-r1
|
Version: 0.4.7-r1
|
||||||
@ -673,7 +685,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: 11184
|
Size: 11186
|
||||||
|
|
||||||
Package: secubox-app-adguardhome
|
Package: secubox-app-adguardhome
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -687,7 +699,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: 2880
|
Size: 2879
|
||||||
|
|
||||||
Package: secubox-app-auth-logger
|
Package: secubox-app-auth-logger
|
||||||
Version: 1.2.2-r1
|
Version: 1.2.2-r1
|
||||||
@ -705,7 +717,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: 9379
|
Size: 9375
|
||||||
|
|
||||||
Package: secubox-app-crowdsec-custom
|
Package: secubox-app-crowdsec-custom
|
||||||
Version: 1.1.0-r1
|
Version: 1.1.0-r1
|
||||||
@ -728,7 +740,7 @@ Description: Custom CrowdSec configurations for SecuBox web interface protectio
|
|||||||
- Webapp generic auth bruteforce protection
|
- Webapp generic auth bruteforce protection
|
||||||
- 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: 5761
|
Size: 5764
|
||||||
|
|
||||||
Package: secubox-app-cs-firewall-bouncer
|
Package: secubox-app-cs-firewall-bouncer
|
||||||
Version: 0.0.31-r4
|
Version: 0.0.31-r4
|
||||||
@ -755,7 +767,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: 5049328
|
Size: 5049322
|
||||||
|
|
||||||
Package: secubox-app-cyberfeed
|
Package: secubox-app-cyberfeed
|
||||||
Version: 0.2.1-r1
|
Version: 0.2.1-r1
|
||||||
@ -769,7 +781,7 @@ Description: Cyberpunk-themed RSS feed aggregator for OpenWrt/SecuBox.
|
|||||||
Features emoji injection, neon styling, and RSS-Bridge support
|
Features emoji injection, neon styling, and RSS-Bridge support
|
||||||
for social media feeds (Facebook, Twitter, Mastodon).
|
for social media feeds (Facebook, Twitter, Mastodon).
|
||||||
Filename: secubox-app-cyberfeed_0.2.1-r1_all.ipk
|
Filename: secubox-app-cyberfeed_0.2.1-r1_all.ipk
|
||||||
Size: 12454
|
Size: 12451
|
||||||
|
|
||||||
Package: secubox-app-device-intel
|
Package: secubox-app-device-intel
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -783,7 +795,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: 13004
|
Size: 13006
|
||||||
|
|
||||||
Package: secubox-app-dns-provider
|
Package: secubox-app-dns-provider
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -797,7 +809,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: 6702
|
Size: 6700
|
||||||
|
|
||||||
Package: secubox-app-domoticz
|
Package: secubox-app-domoticz
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -810,7 +822,7 @@ Installed-Size: 10240
|
|||||||
Description: Installer, configuration, and service manager for running Domoticz
|
Description: Installer, configuration, and service manager for running Domoticz
|
||||||
inside Docker on SecuBox-powered OpenWrt systems.
|
inside Docker on SecuBox-powered OpenWrt systems.
|
||||||
Filename: secubox-app-domoticz_1.0.0-r2_all.ipk
|
Filename: secubox-app-domoticz_1.0.0-r2_all.ipk
|
||||||
Size: 2548
|
Size: 2544
|
||||||
|
|
||||||
Package: secubox-app-exposure
|
Package: secubox-app-exposure
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -825,7 +837,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: 6934
|
Size: 6931
|
||||||
|
|
||||||
Package: secubox-app-gitea
|
Package: secubox-app-gitea
|
||||||
Version: 1.0.0-r5
|
Version: 1.0.0-r5
|
||||||
@ -848,7 +860,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: 9407
|
Size: 9403
|
||||||
|
|
||||||
Package: secubox-app-glances
|
Package: secubox-app-glances
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -871,7 +883,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: 5538
|
Size: 5534
|
||||||
|
|
||||||
Package: secubox-app-haproxy
|
Package: secubox-app-haproxy
|
||||||
Version: 1.0.0-r23
|
Version: 1.0.0-r23
|
||||||
@ -891,7 +903,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-r23_all.ipk
|
Filename: secubox-app-haproxy_1.0.0-r23_all.ipk
|
||||||
Size: 15687
|
Size: 15683
|
||||||
|
|
||||||
Package: secubox-app-hexojs
|
Package: secubox-app-hexojs
|
||||||
Version: 1.0.0-r8
|
Version: 1.0.0-r8
|
||||||
@ -915,7 +927,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: 94940
|
Size: 94934
|
||||||
|
|
||||||
Package: secubox-app-jellyfin
|
Package: secubox-app-jellyfin
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -929,7 +941,7 @@ Description: Installer, configuration, and service manager for running Jellyfin
|
|||||||
inside Docker on SecuBox-powered OpenWrt systems. Free media server
|
inside Docker on SecuBox-powered OpenWrt systems. Free media server
|
||||||
for streaming movies, TV shows, music, and photos.
|
for streaming movies, TV shows, music, and photos.
|
||||||
Filename: secubox-app-jellyfin_1.0.0-r1_all.ipk
|
Filename: secubox-app-jellyfin_1.0.0-r1_all.ipk
|
||||||
Size: 6185
|
Size: 6178
|
||||||
|
|
||||||
Package: secubox-app-jitsi
|
Package: secubox-app-jitsi
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -954,7 +966,7 @@ Description: Jitsi Meet - Secure, fully featured video conferencing for SecuBox
|
|||||||
Integrates with HAProxy for SSL termination.
|
Integrates with HAProxy for SSL termination.
|
||||||
Configure in /etc/config/jitsi.
|
Configure in /etc/config/jitsi.
|
||||||
Filename: secubox-app-jitsi_1.0.0-r1_all.ipk
|
Filename: secubox-app-jitsi_1.0.0-r1_all.ipk
|
||||||
Size: 8914
|
Size: 8915
|
||||||
|
|
||||||
Package: secubox-app-localai
|
Package: secubox-app-localai
|
||||||
Version: 2.25.0-r1
|
Version: 2.25.0-r1
|
||||||
@ -976,7 +988,7 @@ Description: LocalAI native binary package for OpenWrt.
|
|||||||
|
|
||||||
API: http://<router-ip>:8081/v1
|
API: http://<router-ip>:8081/v1
|
||||||
Filename: secubox-app-localai_2.25.0-r1_all.ipk
|
Filename: secubox-app-localai_2.25.0-r1_all.ipk
|
||||||
Size: 5720
|
Size: 5711
|
||||||
|
|
||||||
Package: secubox-app-localai-wb
|
Package: secubox-app-localai-wb
|
||||||
Version: 2.25.0-r1
|
Version: 2.25.0-r1
|
||||||
@ -1020,7 +1032,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: 7287
|
Size: 7289
|
||||||
|
|
||||||
Package: secubox-app-mac-guardian
|
Package: secubox-app-mac-guardian
|
||||||
Version: 0.5.0-r1
|
Version: 0.5.0-r1
|
||||||
@ -1035,7 +1047,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: 12099
|
Size: 12094
|
||||||
|
|
||||||
Package: secubox-app-magicmirror2
|
Package: secubox-app-magicmirror2
|
||||||
Version: 0.4.0-r8
|
Version: 0.4.0-r8
|
||||||
@ -1057,7 +1069,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: 9253
|
Size: 9252
|
||||||
|
|
||||||
Package: secubox-app-mailinabox
|
Package: secubox-app-mailinabox
|
||||||
Version: 2.0.0-r1
|
Version: 2.0.0-r1
|
||||||
@ -1082,7 +1094,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: 7572
|
Size: 7571
|
||||||
|
|
||||||
Package: secubox-app-metabolizer
|
Package: secubox-app-metabolizer
|
||||||
Version: 1.0.0-r3
|
Version: 1.0.0-r3
|
||||||
@ -1103,7 +1115,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: 13980
|
Size: 13976
|
||||||
|
|
||||||
Package: secubox-app-mitmproxy
|
Package: secubox-app-mitmproxy
|
||||||
Version: 0.5.0-r19
|
Version: 0.5.0-r19
|
||||||
@ -1130,7 +1142,7 @@ Description: mitmproxy - Interactive HTTPS proxy for SecuBox-powered OpenWrt sy
|
|||||||
Runs in LXC container for isolation and security.
|
Runs in LXC container for isolation and security.
|
||||||
Configure in /etc/config/mitmproxy.
|
Configure in /etc/config/mitmproxy.
|
||||||
Filename: secubox-app-mitmproxy_0.5.0-r19_all.ipk
|
Filename: secubox-app-mitmproxy_0.5.0-r19_all.ipk
|
||||||
Size: 22962
|
Size: 22956
|
||||||
|
|
||||||
Package: secubox-app-mmpm
|
Package: secubox-app-mmpm
|
||||||
Version: 0.2.0-r5
|
Version: 0.2.0-r5
|
||||||
@ -1151,7 +1163,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: 3975
|
Size: 3979
|
||||||
|
|
||||||
Package: secubox-app-nextcloud
|
Package: secubox-app-nextcloud
|
||||||
Version: 1.0.0-r2
|
Version: 1.0.0-r2
|
||||||
@ -1165,7 +1177,7 @@ Description: Installer, configuration, and service manager for running Nextclou
|
|||||||
inside Docker on SecuBox-powered OpenWrt systems. Self-hosted file
|
inside Docker on SecuBox-powered OpenWrt systems. Self-hosted file
|
||||||
sync and share with calendar, contacts, and collaboration.
|
sync and share with calendar, contacts, and collaboration.
|
||||||
Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk
|
Filename: secubox-app-nextcloud_1.0.0-r2_all.ipk
|
||||||
Size: 2958
|
Size: 2956
|
||||||
|
|
||||||
Package: secubox-app-ollama
|
Package: secubox-app-ollama
|
||||||
Version: 0.1.0-r1
|
Version: 0.1.0-r1
|
||||||
@ -1187,7 +1199,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: 5739
|
Size: 5737
|
||||||
|
|
||||||
Package: secubox-app-picobrew
|
Package: secubox-app-picobrew
|
||||||
Version: 1.0.0-r7
|
Version: 1.0.0-r7
|
||||||
@ -1209,7 +1221,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: 5540
|
Size: 5537
|
||||||
|
|
||||||
Package: secubox-app-simplex
|
Package: secubox-app-simplex
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1233,7 +1245,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: 9235
|
Size: 9227
|
||||||
|
|
||||||
Package: secubox-app-streamlit
|
Package: secubox-app-streamlit
|
||||||
Version: 1.0.0-r5
|
Version: 1.0.0-r5
|
||||||
@ -1260,7 +1272,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: 11722
|
Size: 11720
|
||||||
|
|
||||||
Package: secubox-app-tor
|
Package: secubox-app-tor
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1283,7 +1295,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: 7371
|
Size: 7372
|
||||||
|
|
||||||
Package: secubox-app-webapp
|
Package: secubox-app-webapp
|
||||||
Version: 1.5.0-r7
|
Version: 1.5.0-r7
|
||||||
@ -1314,7 +1326,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: 5510
|
Size: 5508
|
||||||
|
|
||||||
Package: secubox-core
|
Package: secubox-core
|
||||||
Version: 0.10.0-r11
|
Version: 0.10.0-r11
|
||||||
@ -1334,7 +1346,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-r11_all.ipk
|
Filename: secubox-core_0.10.0-r11_all.ipk
|
||||||
Size: 87975
|
Size: 87973
|
||||||
|
|
||||||
Package: secubox-dns-guard
|
Package: secubox-dns-guard
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1353,7 +1365,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: 12473
|
Size: 12476
|
||||||
|
|
||||||
Package: secubox-master-link
|
Package: secubox-master-link
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1375,7 +1387,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: 12456
|
Size: 12454
|
||||||
|
|
||||||
Package: secubox-mcp-server
|
Package: secubox-mcp-server
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1403,7 +1415,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: 11431
|
Size: 11429
|
||||||
|
|
||||||
Package: secubox-p2p
|
Package: secubox-p2p
|
||||||
Version: 0.6.0-r3
|
Version: 0.6.0-r3
|
||||||
@ -1422,7 +1434,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: 47677
|
Size: 47674
|
||||||
|
|
||||||
Package: secubox-threat-analyst
|
Package: secubox-threat-analyst
|
||||||
Version: 1.0.0-r1
|
Version: 1.0.0-r1
|
||||||
@ -1441,5 +1453,24 @@ 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: 9867
|
Size: 9862
|
||||||
|
|
||||||
|
Package: secubox-vortex-dns
|
||||||
|
Version: 1.0.0-r1
|
||||||
|
Depends: secubox-app-dns-provider, secubox-p2p, wget, jsonfilter
|
||||||
|
License: GPL-3.0
|
||||||
|
Section: secubox
|
||||||
|
Maintainer: CyberMind <contact@cybermind.fr>
|
||||||
|
Architecture: all
|
||||||
|
Installed-Size: 30720
|
||||||
|
Description: Meshed multi-dynamic subdomain delegation system for SecuBox.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
- Master/slave hierarchical DNS delegation
|
||||||
|
- Wildcard domain management (*.domain.com)
|
||||||
|
- First Peek auto-registration of services
|
||||||
|
- Gossip-based exposure config sync
|
||||||
|
- Submastering for nested hierarchies
|
||||||
|
Filename: secubox-vortex-dns_1.0.0-r1_all.ipk
|
||||||
|
Size: 5445
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"feed_url": "/secubox-feed",
|
"feed_url": "/secubox-feed",
|
||||||
"generated": "2026-02-05T09:12:05+01:00",
|
"generated": "2026-02-05T13:19:52+01:00",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"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": 11736,
|
"size": 11735,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "key",
|
"icon": "key",
|
||||||
"description": "Authentication management",
|
"description": "Authentication management",
|
||||||
@ -30,7 +30,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": 23182,
|
"size": 23185,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "globe",
|
"icon": "globe",
|
||||||
"description": "CDN caching",
|
"description": "CDN caching",
|
||||||
@ -42,7 +42,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": 54536,
|
"size": 54534,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "users",
|
"icon": "users",
|
||||||
"description": "Client management and monitoring",
|
"description": "Client management and monitoring",
|
||||||
@ -54,7 +54,7 @@
|
|||||||
"name": "luci-app-crowdsec-dashboard",
|
"name": "luci-app-crowdsec-dashboard",
|
||||||
"version": "0.7.0-r32",
|
"version": "0.7.0-r32",
|
||||||
"filename": "luci-app-crowdsec-dashboard_0.7.0-r32_all.ipk",
|
"filename": "luci-app-crowdsec-dashboard_0.7.0-r32_all.ipk",
|
||||||
"size": 33739,
|
"size": 33737,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "shield",
|
"icon": "shield",
|
||||||
"description": "CrowdSec security monitoring",
|
"description": "CrowdSec security monitoring",
|
||||||
@ -66,7 +66,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": 12837,
|
"size": 12839,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -78,7 +78,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": 10859,
|
"size": 10854,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -90,7 +90,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": 12413,
|
"size": 12415,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -102,7 +102,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": 7130,
|
"size": 7131,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -114,7 +114,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": 9841,
|
"size": 9847,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -126,7 +126,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": 15300,
|
"size": 15301,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -138,7 +138,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": 6969,
|
"size": 6966,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -162,7 +162,7 @@
|
|||||||
"name": "luci-app-hexojs",
|
"name": "luci-app-hexojs",
|
||||||
"version": "1.0.0-r3",
|
"version": "1.0.0-r3",
|
||||||
"filename": "luci-app-hexojs_1.0.0-r3_all.ipk",
|
"filename": "luci-app-hexojs_1.0.0-r3_all.ipk",
|
||||||
"size": 30307,
|
"size": 30308,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -174,7 +174,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": 6061,
|
"size": 6062,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -186,7 +186,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": 5134,
|
"size": 5135,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -198,7 +198,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": 18719,
|
"size": 18724,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "cpu",
|
"icon": "cpu",
|
||||||
"description": "Kernel memory management",
|
"description": "Kernel memory management",
|
||||||
@ -210,7 +210,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": 13182,
|
"size": 13183,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -222,7 +222,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": 6725,
|
"size": 6727,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -234,7 +234,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": 6509,
|
"size": 6512,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -258,7 +258,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": 5486,
|
"size": 5485,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -270,7 +270,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": 6245,
|
"size": 6246,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -282,7 +282,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": 25418,
|
"size": 25419,
|
||||||
"category": "media",
|
"category": "media",
|
||||||
"icon": "film",
|
"icon": "film",
|
||||||
"description": "Media streaming",
|
"description": "Media streaming",
|
||||||
@ -294,7 +294,7 @@
|
|||||||
"name": "luci-app-metablogizer",
|
"name": "luci-app-metablogizer",
|
||||||
"version": "1.0.0-r5",
|
"version": "1.0.0-r5",
|
||||||
"filename": "luci-app-metablogizer_1.0.0-r5_all.ipk",
|
"filename": "luci-app-metablogizer_1.0.0-r5_all.ipk",
|
||||||
"size": 24773,
|
"size": 24774,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -318,7 +318,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": 11149,
|
"size": 11147,
|
||||||
"category": "security",
|
"category": "security",
|
||||||
"icon": "lock",
|
"icon": "lock",
|
||||||
"description": "HTTPS proxy and traffic inspection",
|
"description": "HTTPS proxy and traffic inspection",
|
||||||
@ -330,7 +330,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": 7899,
|
"size": 7903,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -366,7 +366,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": 20484,
|
"size": 20487,
|
||||||
"category": "monitoring",
|
"category": "monitoring",
|
||||||
"icon": "bar-chart-2",
|
"icon": "bar-chart-2",
|
||||||
"description": "System monitoring dashboard",
|
"description": "System monitoring dashboard",
|
||||||
@ -378,7 +378,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": 54149,
|
"size": 54151,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "wifi",
|
"icon": "wifi",
|
||||||
"description": "Network configuration",
|
"description": "Network configuration",
|
||||||
@ -390,7 +390,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": 14957,
|
"size": 14959,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "wifi",
|
"icon": "wifi",
|
||||||
"description": "Network configuration",
|
"description": "Network configuration",
|
||||||
@ -402,7 +402,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": 6489,
|
"size": 6482,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -414,7 +414,7 @@
|
|||||||
"name": "luci-app-ollama",
|
"name": "luci-app-ollama",
|
||||||
"version": "0.1.0-r1",
|
"version": "0.1.0-r1",
|
||||||
"filename": "luci-app-ollama_0.1.0-r1_all.ipk",
|
"filename": "luci-app-ollama_0.1.0-r1_all.ipk",
|
||||||
"size": 12352,
|
"size": 12354,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -426,7 +426,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": 9459,
|
"size": 9462,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -450,7 +450,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": 57245,
|
"size": 57250,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -474,7 +474,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": 15306,
|
"size": 15309,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -486,7 +486,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": 36544,
|
"size": 36543,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -498,7 +498,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": 44086,
|
"size": 44085,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -510,7 +510,7 @@
|
|||||||
"name": "luci-app-secubox-portal",
|
"name": "luci-app-secubox-portal",
|
||||||
"version": "0.7.0-r2",
|
"version": "0.7.0-r2",
|
||||||
"filename": "luci-app-secubox-portal_0.7.0-r2_all.ipk",
|
"filename": "luci-app-secubox-portal_0.7.0-r2_all.ipk",
|
||||||
"size": 24644,
|
"size": 24643,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -522,7 +522,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": 21895,
|
"size": 21896,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox system component",
|
"description": "SecuBox system component",
|
||||||
@ -534,7 +534,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": 39828,
|
"size": 39826,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -546,7 +546,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": 7000,
|
"size": 6999,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -558,7 +558,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": 14749,
|
"size": 14748,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -582,7 +582,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": 9753,
|
"size": 9751,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -594,7 +594,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": 22362,
|
"size": 22364,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -606,7 +606,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": 14535,
|
"size": 14534,
|
||||||
"category": "network",
|
"category": "network",
|
||||||
"icon": "filter",
|
"icon": "filter",
|
||||||
"description": "Traffic shaping and QoS",
|
"description": "Traffic shaping and QoS",
|
||||||
@ -625,12 +625,24 @@
|
|||||||
"installed": false,
|
"installed": false,
|
||||||
"luci_app": null
|
"luci_app": null
|
||||||
}
|
}
|
||||||
|
,
|
||||||
|
{
|
||||||
|
"name": "luci-app-vortex-dns",
|
||||||
|
"version": "1.0.0-r1",
|
||||||
|
"filename": "luci-app-vortex-dns_1.0.0-r1_all.ipk",
|
||||||
|
"size": 5562,
|
||||||
|
"category": "utility",
|
||||||
|
"icon": "package",
|
||||||
|
"description": "SecuBox package",
|
||||||
|
"installed": false,
|
||||||
|
"luci_app": null
|
||||||
|
}
|
||||||
,
|
,
|
||||||
{
|
{
|
||||||
"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": 39607,
|
"size": 39608,
|
||||||
"category": "vpn",
|
"category": "vpn",
|
||||||
"icon": "shield",
|
"icon": "shield",
|
||||||
"description": "WireGuard VPN dashboard",
|
"description": "WireGuard VPN dashboard",
|
||||||
@ -642,7 +654,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": 6813,
|
"size": 6815,
|
||||||
"category": "iot",
|
"category": "iot",
|
||||||
"icon": "radio",
|
"icon": "radio",
|
||||||
"description": "Zigbee device management",
|
"description": "Zigbee device management",
|
||||||
@ -666,7 +678,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": 11184,
|
"size": 11186,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -678,7 +690,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": 2880,
|
"size": 2879,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -690,7 +702,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": 9379,
|
"size": 9375,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -702,7 +714,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": 5761,
|
"size": 5764,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -714,7 +726,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": 5049328,
|
"size": 5049322,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -726,7 +738,7 @@
|
|||||||
"name": "secubox-app-cyberfeed",
|
"name": "secubox-app-cyberfeed",
|
||||||
"version": "0.2.1-r1",
|
"version": "0.2.1-r1",
|
||||||
"filename": "secubox-app-cyberfeed_0.2.1-r1_all.ipk",
|
"filename": "secubox-app-cyberfeed_0.2.1-r1_all.ipk",
|
||||||
"size": 12454,
|
"size": 12451,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -738,7 +750,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": 13004,
|
"size": 13006,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -750,7 +762,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": 6702,
|
"size": 6700,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -762,7 +774,7 @@
|
|||||||
"name": "secubox-app-domoticz",
|
"name": "secubox-app-domoticz",
|
||||||
"version": "1.0.0-r2",
|
"version": "1.0.0-r2",
|
||||||
"filename": "secubox-app-domoticz_1.0.0-r2_all.ipk",
|
"filename": "secubox-app-domoticz_1.0.0-r2_all.ipk",
|
||||||
"size": 2548,
|
"size": 2544,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -774,7 +786,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": 6934,
|
"size": 6931,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -786,7 +798,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": 9407,
|
"size": 9403,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -798,7 +810,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": 5538,
|
"size": 5534,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -810,7 +822,7 @@
|
|||||||
"name": "secubox-app-haproxy",
|
"name": "secubox-app-haproxy",
|
||||||
"version": "1.0.0-r23",
|
"version": "1.0.0-r23",
|
||||||
"filename": "secubox-app-haproxy_1.0.0-r23_all.ipk",
|
"filename": "secubox-app-haproxy_1.0.0-r23_all.ipk",
|
||||||
"size": 15687,
|
"size": 15683,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -822,7 +834,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": 94940,
|
"size": 94934,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -834,7 +846,7 @@
|
|||||||
"name": "secubox-app-jellyfin",
|
"name": "secubox-app-jellyfin",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "secubox-app-jellyfin_1.0.0-r1_all.ipk",
|
"filename": "secubox-app-jellyfin_1.0.0-r1_all.ipk",
|
||||||
"size": 6185,
|
"size": 6178,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -846,7 +858,7 @@
|
|||||||
"name": "secubox-app-jitsi",
|
"name": "secubox-app-jitsi",
|
||||||
"version": "1.0.0-r1",
|
"version": "1.0.0-r1",
|
||||||
"filename": "secubox-app-jitsi_1.0.0-r1_all.ipk",
|
"filename": "secubox-app-jitsi_1.0.0-r1_all.ipk",
|
||||||
"size": 8914,
|
"size": 8915,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -858,7 +870,7 @@
|
|||||||
"name": "secubox-app-localai",
|
"name": "secubox-app-localai",
|
||||||
"version": "2.25.0-r1",
|
"version": "2.25.0-r1",
|
||||||
"filename": "secubox-app-localai_2.25.0-r1_all.ipk",
|
"filename": "secubox-app-localai_2.25.0-r1_all.ipk",
|
||||||
"size": 5720,
|
"size": 5711,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -882,7 +894,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": 7287,
|
"size": 7289,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -894,7 +906,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": 12099,
|
"size": 12094,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -906,7 +918,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": 9253,
|
"size": 9252,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -918,7 +930,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": 7572,
|
"size": 7571,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -930,7 +942,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": 13980,
|
"size": 13976,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -942,7 +954,7 @@
|
|||||||
"name": "secubox-app-mitmproxy",
|
"name": "secubox-app-mitmproxy",
|
||||||
"version": "0.5.0-r19",
|
"version": "0.5.0-r19",
|
||||||
"filename": "secubox-app-mitmproxy_0.5.0-r19_all.ipk",
|
"filename": "secubox-app-mitmproxy_0.5.0-r19_all.ipk",
|
||||||
"size": 22962,
|
"size": 22956,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -954,7 +966,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": 3975,
|
"size": 3979,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -966,7 +978,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": 2958,
|
"size": 2956,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -978,7 +990,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": 5739,
|
"size": 5737,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -990,7 +1002,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": 5540,
|
"size": 5537,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -1002,7 +1014,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": 9235,
|
"size": 9227,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -1014,7 +1026,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": 11722,
|
"size": 11720,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -1026,7 +1038,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": 7371,
|
"size": 7372,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -1050,7 +1062,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": 5510,
|
"size": 5508,
|
||||||
"category": "secubox",
|
"category": "secubox",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox backend service",
|
"description": "SecuBox backend service",
|
||||||
@ -1062,7 +1074,7 @@
|
|||||||
"name": "secubox-core",
|
"name": "secubox-core",
|
||||||
"version": "0.10.0-r11",
|
"version": "0.10.0-r11",
|
||||||
"filename": "secubox-core_0.10.0-r11_all.ipk",
|
"filename": "secubox-core_0.10.0-r11_all.ipk",
|
||||||
"size": 87975,
|
"size": 87973,
|
||||||
"category": "system",
|
"category": "system",
|
||||||
"icon": "box",
|
"icon": "box",
|
||||||
"description": "SecuBox core components",
|
"description": "SecuBox core components",
|
||||||
@ -1074,7 +1086,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": 12473,
|
"size": 12476,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -1086,7 +1098,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": 12456,
|
"size": 12454,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -1098,7 +1110,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": 11431,
|
"size": 11429,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -1110,7 +1122,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": 47677,
|
"size": 47674,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
@ -1122,7 +1134,19 @@
|
|||||||
"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": 9867,
|
"size": 9862,
|
||||||
|
"category": "utility",
|
||||||
|
"icon": "package",
|
||||||
|
"description": "SecuBox package",
|
||||||
|
"installed": false,
|
||||||
|
"luci_app": null
|
||||||
|
}
|
||||||
|
,
|
||||||
|
{
|
||||||
|
"name": "secubox-vortex-dns",
|
||||||
|
"version": "1.0.0-r1",
|
||||||
|
"filename": "secubox-vortex-dns_1.0.0-r1_all.ipk",
|
||||||
|
"size": 5445,
|
||||||
"category": "utility",
|
"category": "utility",
|
||||||
"icon": "package",
|
"icon": "package",
|
||||||
"description": "SecuBox package",
|
"description": "SecuBox package",
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user