The vulnerability, CVE-2026-43000, is a privilege escalation in OpenStack Keystone that results from an incorrect authorization check when managing trusts. The exploit requires chaining two vulnerabilities. First, an attacker leverages an impersonation flaw (CVE-2026-42998) to obtain a token for a victim user (e.g., an administrator) by using an application credential they own. The core of CVE-2026-43000 lies in the trust management API, specifically in the keystone.api.trusts.TrustsResource.post method, which is used to create trusts. Before the patch, this endpoint, via the internal _check_unrestricted method, failed to block trust creation requests made with unrestricted application credentials. An attacker could therefore use their impersonated, high-privilege token to create a new trust that delegates the victim's administrative roles to the attacker. Because Keystone validated the roles being delegated against the victim's actual roles in the database, rather than the limited roles of the token making the request, the privilege escalation was successful. The patch addresses this by completely forbidding all trust management operations (create, list, get, delete) when authenticating with any type of application credential, thereby closing the exploit path.