secubox-openwrt/package/secubox/luci-app-mitmproxy/root/usr/share/rpcd/acl.d/luci-app-mitmproxy.json
CyberMind-FR 6c4257f950 feat: Add mitmproxy HTTPS interception proxy packages
New packages for full URL/cookie/header capture via MITM proxy:

secubox-app-mitmproxy:
- Downloads mitmproxy v11.1.2 binary for aarch64
- Transparent proxy mode with iptables integration
- mitmweb UI on port 8081
- Auto CA certificate generation
- mitmproxyctl CLI management tool

luci-app-mitmproxy:
- SecuBox themed dashboard with red color scheme
- Real-time request capture view
- Top hosts statistics
- CA certificate management
- Full UCI settings interface
- RPCD backend for ubus API

This enables full HTTP/HTTPS inspection including:
- Complete URLs (not just hostnames like nDPId)
- Cookies and headers
- Request/response bodies
- Flow recording for replay

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 14:25:12 +01:00

35 lines
507 B
JSON

{
"luci-app-mitmproxy": {
"description": "Grant access to mitmproxy LuCI app",
"read": {
"ubus": {
"luci.mitmproxy": [
"get_status",
"get_config",
"get_stats",
"get_requests",
"get_top_hosts",
"get_ca_info"
]
},
"uci": [
"mitmproxy"
]
},
"write": {
"ubus": {
"luci.mitmproxy": [
"service_start",
"service_stop",
"service_restart",
"set_config",
"clear_data"
]
},
"uci": [
"mitmproxy"
]
}
}
}