CVE-2026-19490NetScaler Gateway and AAA authentication bypass with SAML configured
What broke
Cloud Software Group disclosed two flaws in NetScaler ADC and NetScaler Gateway on August 19, 2026. CVE-2026-19490 (CVSS 9.3, improper authentication) is an authentication bypass. CVE-2026-19489 (CVSS 8.8) is a memory overflow shipped in the same bulletin.
The bypass reaches appliances configured as a Gateway virtual server (SSL VPN, ICA Proxy, CVPN, or RDP Proxy) or as an AAA virtual server. On the current builds the vendor scopes it further: exploitable when a SAML action is configured on that virtual server. Earlier builds in each branch are affected without the SAML prerequisite, so version matters more than configuration for anything not recently patched.
Affected: 14.1 before 14.1-73.32 and 13.1 before 13.1-63.21, plus the corresponding FIPS and NDcPP builds. Fixed in 14.1-73.32 and 13.1-63.21. No public exploitation at disclosure.
Why it matters
A NetScaler running Gateway or AAA is not a load balancer with a login page bolted on. It is the authentication boundary for remote access and, when AAA is in play, a policy decision point for the applications behind it. Bypass authentication there and the MFA policy, the device posture check, and the conditional access rules all become decorative, because the request arrives on the far side of the thing that was supposed to evaluate them.
The reason to treat this one with more urgency than its "no known exploitation" status suggests is the track record. CVE-2023-4966, CitrixBleed, turned into mass session hijacking and ransomware within weeks of disclosure, and the pattern repeated with CitrixBleed 2. Internet-facing identity appliances get exploited quickly because the payoff is a session rather than a shell, and a stolen session survives a password reset.
What to do
- Upgrade to 14.1-73.32 or 13.1-63.21. Version 12.1 and 13.0 are end of life and receive no fix; those need migration, not patching.
- If you cannot patch immediately, confirm whether a SAML action is bound to your Gateway or AAA virtual servers, and understand that removing it is a stopgap only on the newer builds.
- Do not expose the management interface (NSIP) to untrusted networks. It should not be reachable from the internet under any configuration.
After you patch
Patching an authentication bypass on a gateway does not evict anyone already through it, which is the step CitrixBleed taught the hard way.
- Terminate all active sessions, ICA and AAA alike, and invalidate persistent session cookies.
kill aaa session -allandkill icaconnection -allafter the upgrade, not before. - Rotate every credential the appliance holds: LDAP and RADIUS bind accounts, SAML signing keys and certificates, and any API keys in the configuration.
- Enumerate local appliance accounts and administrator sessions created during the exposure window.
- Hunt downstream. Look for authenticated activity in the applications behind the gateway from addresses that never completed a login, and for session cookie theft patterns in application logs.
Sources
Related identity CVEs
Related on Start with Identity
- CVEIvanti Connect Secure authentication bypass
Connect Secure and Policy Secure skipped authentication on a path that later chained with CVE-2024-21887 for unauthenticated RCE. CISA KEV. January 2024 disclos
- CVECheck Point Security Gateway information disclosure of password hashes
An unauthenticated read on Check Point Security Gateways leaked password hashes, including those used for VPN and local admin. CISA KEV. May 2024. Hash disclosu
- CVEruby-saml auth bypass, incomplete fix of CVE-2025-25292
The March 2025 ruby-saml patch did not close the parser differential. CVE-2025-54572 is the incomplete-fix follow-on: still a critical SSO impersonation if you
- BlogFortinet's January SSO bypass hit boxes already patched for December's SAML bug
CVE-2026-24858 is the follow-on FortiCloud SSO SAML bypass. Devices patched for CVE-2025-59718 and 59719 were still exploitable. Actively exploited. CISA guidan
- GlossaryIdentity Federation
A trust relationship between identity providers and service providers that lets users authenticate once at their home IdP and access applications at the other p
- GlossaryService Provider (SP)
The application that consumes identity assertions from an IdP to grant the user access. In SAML it's the SP; in OIDC the equivalent is the Relying Party. The se