diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-09 20:32:12 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2016-01-11 15:21:46 +0100 |
commit | 81e80c4b876e8e68bb8b022c39d0941e2c1ccb56 (patch) | |
tree | a4563027598b84db3e86996b402e6d75ce5e6993 /modules/luci-base/root | |
parent | 6619e66fc9de32e7bf911b929e320ab17a414697 (diff) |
luci-base: properly handle ubus connections for non-root (#570, #571)
Instead of relying on the connect-before-setuid hack, ship a proper
acl definition file whitelisting the procedures that LuCI requires
on its non-root pages.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'modules/luci-base/root')
-rw-r--r-- | modules/luci-base/root/usr/share/acl.d/luci-base.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/luci-base/root/usr/share/acl.d/luci-base.json b/modules/luci-base/root/usr/share/acl.d/luci-base.json new file mode 100644 index 000000000..4d582366f --- /dev/null +++ b/modules/luci-base/root/usr/share/acl.d/luci-base.json @@ -0,0 +1,8 @@ +{ + "user": "nobody", + "access": { + "system": { + "methods": [ "board", "info" ] + } + } +} |