secubox-openwrt/package/secubox/luci-app-service-registry/root/usr/share/rpcd/acl.d/luci-app-service-registry.json
CyberMind-FR 9acab29c34 feat(v0.17): P2P Mesh Recovery, MITM Analytics, Swiss Army Knife
Major features:
- P2P Mesh distributed recovery infrastructure with blockchain catalog
- MITM analytics proxy for external access monitoring (IP, country, scans)
- SecuBox Swiss unified CLI tool for management & recovery
- Python remote management console (secubox-console)
- Multi-theme landing page generator (mirrorbox, cyberpunk, minimal, terminal, light)
- Service Registry enhancements with health check and network diagnostics
- Services page modernization with Service Registry API integration

New components:
- secubox-swiss: Swiss Army Knife unified management tool
- secubox-mesh: P2P mesh networking and sync
- secubox-recover: Snapshot, profiles, rollback, reborn scripts
- secubox-console: Python remote management app
- secubox_analytics.py: MITM traffic analysis addon

Fixes:
- Service Registry ACL permissions for secubox services page
- Port status display (firewall_open detection)
- RPC response handling for list_services

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 19:46:28 +01:00

65 lines
1.3 KiB
JSON

{
"luci-app-service-registry": {
"description": "Grant access to Service Registry",
"read": {
"ubus": {
"luci.service-registry": [
"list_services",
"get_service",
"list_categories",
"get_qr_data",
"get_certificate_status",
"check_service_health",
"check_all_health",
"get_network_info",
"get_landing_config"
],
"luci.haproxy": [
"status",
"list_vhosts",
"list_backends",
"list_certificates"
],
"luci.tor-shield": [
"status",
"hidden_services"
],
"luci.secubox": [
"get_services"
]
},
"uci": ["service-registry", "haproxy", "tor-shield"]
},
"write": {
"ubus": {
"luci.service-registry": [
"publish_service",
"unpublish_service",
"sync_providers",
"generate_landing_page",
"update_service",
"delete_service",
"save_landing_config",
"set_landing_theme"
],
"luci.haproxy": [
"create_vhost",
"create_backend",
"create_server",
"request_certificate",
"delete_vhost",
"delete_backend"
],
"luci.tor-shield": [
"add_hidden_service",
"remove_hidden_service"
]
},
"uci": ["service-registry"],
"file": {
"/www/secubox-services.html": ["write"]
}
}
}
}