Replies: 1 comment 2 replies
-
thanks for reporting; this was fixed in 7355470 and will be in 2.4.17.1 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There is an issue when configuring
OIDCSessionType
as a client cookie and combining bothpersistent
andstore_id_token
suffixes. The configuration parser is wrongly looking at a string that starts with the separator ":" heremod_auth_openidc/src/cfg/cfg.c
Lines 198 to 199 in 8a4fae5
when it was previously stripped away here
mod_auth_openidc/src/cfg/cfg.c
Lines 180 to 183 in 8a4fae5
I'm assuming the intention here is
I've managed to identify the issue by experimenting with both suffixes separately, and everything works just as intended. The cookie is either persistent per the
OIDCSessionInactivtyTimeout
or the ID token gets stored in the session, becoming usable. The combination of both yields an ephemeral session cookie and a missing ID token from the session.Beta Was this translation helpful? Give feedback.
All reactions