VYPR
High severityNVD Advisory· Published Mar 11, 2024· Updated Aug 26, 2024

Account Takeover via Session Fixation in Zitadel [Bypassing MFA]

CVE-2024-28197

Description

Zitadel is an open source identity management system. Zitadel uses a cookie to identify the user agent (browser) and its user sessions. Although the cookie was handled according to best practices, it was accessible on subdomains of the ZITADEL instance. An attacker could take advantage of this and provide a malicious link hosted on the subdomain to the user to gain access to the victim’s account in certain scenarios. A possible victim would need to login through the malicious link for this exploit to work. If the possible victim already had the cookie present, the attack would not succeed. The attack would further only be possible if there was an initial vulnerability on the subdomain. This could either be the attacker being able to control DNS or a XSS vulnerability in an application hosted on a subdomain. Versions 2.46.0, 2.45.1, and 2.44.3 have been patched. Zitadel recommends upgrading to the latest versions available in due course. Note that applying the patch will invalidate the current cookie and thus users will need to start a new session and existing sessions (user selection) will be empty. For self-hosted environments unable to upgrade to a patched version, prevent setting the following cookie name on subdomains of your Zitadel instance (e.g. within your WAF): __Secure-zitadel-useragent.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
github.com/zitadel/zitadelGo
< 2.44.32.44.3
github.com/zitadel/zitadelGo
>= 2.45.0, < 2.45.12.45.1

Affected products

1

Patches

2
e82cb51eb819

fix: set user agent cookie on host only (without subdomains) (#7297)

https://github.com/zitadel/zitadelLivio SpringFeb 15, 2024via ghsa
2 files changed · +5 1
  • internal/api/http/cookie.go+4 0 modified
    @@ -147,6 +147,10 @@ func (c *CookieHandler) httpSetWithSameSite(w http.ResponseWriter, name, host, v
     	secure := c.secureOnly || (sameSite == http.SameSiteNoneMode && domain == "localhost")
     	// prefix the cookie for secure cookies (TLS only, therefore not for samesite none on http://localhost)
     	prefixedName := SetCookiePrefix(name, c.secureOnly, c.prefix)
    +	// in case the host prefix is set, we need to make sure the domain is not set (otherwise the browser will reject the cookie)
    +	if secure && c.prefix == PrefixHost {
    +		domain = ""
    +	}
     	http.SetCookie(w, &http.Cookie{
     		Name:     prefixedName,
     		Value:    value,
    
  • internal/api/http/middleware/user_agent_cookie.go+1 1 modified
    @@ -46,7 +46,7 @@ func NewUserAgentHandler(config *UserAgentCookieConfig, cookieKey []byte, idGene
     	opts := []http_utils.CookieHandlerOpt{
     		http_utils.WithEncryption(cookieKey, cookieKey),
     		http_utils.WithMaxAge(int(config.MaxAge.Seconds())),
    -		http_utils.WithPrefix(http_utils.PrefixSecure),
    +		http_utils.WithPrefix(http_utils.PrefixHost),
     	}
     	if !externalSecure {
     		opts = append(opts, http_utils.WithUnsecure())
    
d4c553b75a21

fix: set user agent cookie on host only (without subdomains) (#7297)

https://github.com/zitadel/zitadelLivio SpringFeb 15, 2024via ghsa
2 files changed · +5 1
  • internal/api/http/cookie.go+4 0 modified
    @@ -147,6 +147,10 @@ func (c *CookieHandler) httpSetWithSameSite(w http.ResponseWriter, name, host, v
     	secure := c.secureOnly || (sameSite == http.SameSiteNoneMode && domain == "localhost")
     	// prefix the cookie for secure cookies (TLS only, therefore not for samesite none on http://localhost)
     	prefixedName := SetCookiePrefix(name, c.secureOnly, c.prefix)
    +	// in case the host prefix is set, we need to make sure the domain is not set (otherwise the browser will reject the cookie)
    +	if secure && c.prefix == PrefixHost {
    +		domain = ""
    +	}
     	http.SetCookie(w, &http.Cookie{
     		Name:     prefixedName,
     		Value:    value,
    
  • internal/api/http/middleware/user_agent_cookie.go+1 1 modified
    @@ -46,7 +46,7 @@ func NewUserAgentHandler(config *UserAgentCookieConfig, cookieKey []byte, idGene
     	opts := []http_utils.CookieHandlerOpt{
     		http_utils.WithEncryption(cookieKey, cookieKey),
     		http_utils.WithMaxAge(int(config.MaxAge.Seconds())),
    -		http_utils.WithPrefix(http_utils.PrefixSecure),
    +		http_utils.WithPrefix(http_utils.PrefixHost),
     	}
     	if !externalSecure {
     		opts = append(opts, http_utils.WithUnsecure())
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.