The vulnerability, CVE-2026-48726, occurs in Apache Airflow because JWT tokens were not being invalidated upon logout when using certain authentication managers. The provided patch in pull request #67289 clearly shows the fix. The analysis of the commit 4fecf73aba4c7925f4d6e21e044dfd31d45be37d reveals that the logout function in airflow/api_fastapi/core_api/routes/public/auth.py was modified. Previously, the function would check for an external logout URL and redirect immediately, skipping the token revocation step. This meant that for FabAuthManager and KeycloakAuthManager, which provide such a URL, the user's JWT token would remain active until its natural expiry. The patch corrects this by moving the token revocation logic to the beginning of the function, ensuring it is always executed. Therefore, the logout function is the direct location of the vulnerability.