Access some admin status pages without login

Is it possible that a user can see some admin status pages without login?
I thought maybe I just give some superuser permission to unauthenticated user by changing that to (just for testing):

root@knoten:/usr/share/rpcd/acl.d# cat unauthenticated.json 
{
        "unauthenticated": {
                "description": "Super user access role",
                "read": {
                        "ubus": {
                                "*": [ "*" ]
                        },
                        "uci": [ "*" ],
                        "file": {
                                "*": ["*"]
                        }
                },
                "write": {
                        "ubus": {
                                "*": [ "*" ]
                        },
                        "uci": [ "*" ],
                        "file": {
                                "*": ["*"]
                        },
                        "cgi-io": ["*"]
                }
        }
}

But this still gives me a 403 on admin status pages.

I think it has something to do with https://github.com/openwrt/luci/tree/master/modules/luci-base/luasrc/controller/admin files.
There is some access control and some context parsing. But I'm still not sure how to allow access to status pages.

Or maybe this line: https://github.com/openwrt/luci/blob/master/modules/luci-mod-rpc/luasrc/controller/rpc.lua#L36

Or this file: