Graylog user session is still usable after logout
Low2.6CVE-2023-41041 · Published Jul 6, 2023 · updated Sep 10, 2026
### Summary In a multi-node Graylog cluster, after a user has explicitly logged out, a user session may still be used for API requests until it has reached its original expiry time. ### Details Each node maintains an in-memory cache of user sessions. Upon a cache-miss, the session is loaded from the database. After that, the node operates solely on the cached session. Modifications to sessions will update the cached version as well as the session persisted in the database. However, each node maintains their isolated version of the session. When the user logs out, the session is removed from the node-local cache and deleted from the database. The other nodes will however still use the cached session. These nodes will only fail to accept the session id if they intent to update the session in the database. They will then notice that the session is gone. This is true for most API requests originating from user interaction with the Graylog UI because these will lead to an update of the session's "last access" timestamp. If the session update is however prevented by setting the `X-Graylog-No-Session-Extension:true` header in the request, the node will consider the (cached) session ...
Affected versions
| Package | Affected | Fixed in |
|---|---|---|
| org.graylog2:graylog2-server Maven | >= 1.0, < 5.0.9 | 5.0.9 |
| >= 5.1.0, < 5.1.3 | 5.1.3 |
Details and references
### Summary In a multi-node Graylog cluster, after a user has explicitly logged out, a user session may still be used for API requests until it has reached its original expiry time. ### Details Each node maintains an in-memory cache of user sessions. Upon a cache-miss, the session is loaded from the database. After that, the node operates solely on the cached session. Modifications to sessions will update the cached version as well as the session persisted in the database. However, each node maintains their isolated version of the session. When the user logs out, the session is removed from the node-local cache and deleted from the database. The other nodes will however still use the cached session. These nodes will only fail to accept the session id if they intent to update the session in the database. They will then notice that the session is gone. This is true for most API requests originating from user interaction with the Graylog UI because these will lead to an update of the session's "last access" timestamp. If the session update is however prevented by setting the `X-Graylog-No-Session-Extension:true` header in the request, the node will consider the (cached) session valid until the session is expired according to its timeout setting. ### PoC In a 2-node setup, with both nodes behind a load balancer: 1. Log in 1. Extract the session ID from the cookie 1. Log out and close the browser 1. Perform the following API request repeatedly with curl (with `<session-id>` replaced with the session id from step 2 and `<lb-host>` replaced with the hostname of your load balancer): ``` curl -I -H X-Graylog-No-Session-Extension:true https://<session-id>:session@<lb-host>/api/system/cluster/nodes ``` 1. Notice that the request is sometimes rejected, but sometimes succeeds ### Impact No session identifiers are leaked. After a user has logged out, the UI shows the login screen again, which gives the user the impression that their session is not valid anymore. However, if the session becomes compromised later, it can still be used to perform API requests against the Graylog cluster. The time frame for this is limited to the configured session lifetime, starting from the time when the user logged out.
- CVSS 3.1
- CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:L/I:N/A:N
- Severity from
- GitHub (reviewed advisory)
- Weakness
- CWE-613
- Also known as
- CVE-2023-41041
- github.com/Graylog2/graylog2-server/security/advisories/GHSA-3fqm-frhg-7c85
- nvd.nist.gov/vuln/detail/CVE-2023-41041
- github.com/Graylog2/graylog2-server/commit/bb88f3d0b2b0351669ab32c60b595ab7242a3fe3
- github.com/Graylog2/graylog2-server/commit/ff90f3e2aa4ae2e0bb613d3236e52c40aa154b20
- github.com/Graylog2/graylog2-server
More Graylog advisories
All Graylog| Date | Advisory | Severity | Fixed in |
|---|---|---|---|
| Feb 72024 | Graylog session fixation vulnerability through cookie injection | Medium5.7 | 5.1.11+1 more |
| Feb 72024 | Graylog vulnerable to instantiation of arbitrary classes triggered by API request | High8.8 | 5.1.11+1 more |
| Jul 62023 | Graylog server has partial path traversal vulnerability in Support Bundle feature | Low3.3 | 5.1.3 |
| Jul 62023 | Graylog vulnerable to insecure source port usage for DNS queries | Low3.7 | 5.0.9+1 more |
| May 142022 | Cross-site Scripting in Graylog | Medium6.1 | 2.4.4 |
| May 142022 | Cross-site Scripting in Graylog Server | Medium6.1 | 2.4.4 |