
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2026-53487 is an authenticated cluster RBAC bypass vulnerability in Kite, a Kubernetes management tool, affecting all versions up to and including v0.12.2. The flaw allows any authenticated Kite user with at least one role to access the /api/v1/overview endpoint for clusters they are not authorized to view by supplying an arbitrary cluster name via the x-cluster-name header. It was first published by the reporter (DavidCarliez) on May 31, 2026, and added to the GitHub Advisory Database on July 7, 2026. The vulnerability carries a CVSS v3.1 base score of 4.3 (Medium) (GitHub Advisory, Kite Advisory).
The root cause is a missing authorization check (CWE-862) caused by a route registration ordering error in routes.go. The /api/v1/overview route is registered at line 135 before the global middleware.RBACMiddleware() is applied at line 171, meaning the RBAC middleware never executes for this endpoint. The ClusterMiddleware in pkg/middleware/cluster.go accepts the target cluster name from the x-cluster-name header, query parameter, or cookie and injects the corresponding ClientSet without verifying whether the requesting user has permission to access that cluster. The GetOverview handler in pkg/system/handler.go only checks len(user.Roles) > 0 — rejecting users with zero roles — but does not call rbac.CanAccessCluster(user, cs.Name), which is the check correctly used by the /api/v1/clusters endpoint. A Go proof-of-concept test (TestOverviewAllowsUserWithoutTargetClusterRBAC) was developed and confirmed the bypass (GitHub Advisory, Kite Advisory).
The impact is limited to confidentiality. A low-privileged authenticated user can retrieve aggregate Kubernetes inventory and resource sizing data — including total node count, pod count, namespace count, service count, and CPU/memory allocations — for any cluster configured in the Kite instance, regardless of their assigned cluster permissions. The advisory explicitly states that Kubernetes mutation, individual pod names, secret values, kubeconfig contents, and bearer tokens are not exposed through this endpoint. In multi-tenant or multi-environment Kite deployments (e.g., separate dev and prod clusters), this could allow an attacker to enumerate the scale and resource posture of production infrastructure they should not have visibility into (GitHub Advisory).
dev-cluster)./api/v1/clusters endpoint to list clusters visible to your account, or guess/enumerate cluster names from naming conventions.GET /api/v1/overview HTTP request and add the header x-cluster-name: <target-cluster> (e.g., x-cluster-name: prod-cluster) where <target-cluster> is a cluster the authenticated user is not authorized to access.RBACMiddleware() and the handler only checks for a non-empty roles list, the server processes the request without performing a cluster authorization check.totalNodes, totalPods, totalNamespaces, totalServices, and CPU/memory resource values (GitHub Advisory, Kite Advisory)./api/v1/overview from authenticated users with an x-cluster-name header value that does not match any cluster in their assigned roles.GET /api/v1/overview requests from a single user account targeting multiple different cluster names in a short time window, particularly cluster names outside the user's normal scope.dev-cluster) making successful 200 OK requests to /api/v1/overview with x-cluster-name set to other clusters (e.g., prod-cluster, staging-cluster).Upgrade to Kite v0.12.3, which is the patched release that addresses this vulnerability. The recommended fix is to add an explicit rbac.CanAccessCluster(user, cs.Name) check in the GetOverview handler before any cluster data is queried, and to move all routes lacking complete per-handler authorization to be registered after api.Use(middleware.RBACMiddleware()) in routes.go. As a temporary workaround where upgrading is not immediately possible, restrict Kite access to trusted users only and audit role assignments to minimize the number of users with any assigned role. Adding per-handler authorization tests for all pre-RBAC routes is also recommended to prevent similar issues in the future (GitHub Advisory, Kite Advisory).
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."