Error in oidc_util_create_symmetric_key #529
-
Hi, I am running mod_auth_openidc and today encountered the following error during authentication: src/util.c(2169): [client XXX] oidc_util_create_symmetric_key: key_len=30 free(): invalid pointer Before I did a system update yesterday, the module worked as intended, has this happened to anyone else? Cheers and thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 10 replies
-
which version are you on? also, please provide full server debug logs |
Beta Was this translation helpful? Give feedback.
-
Ok, I reproduced and fixed here: fdbd131 as an OAuth 2.0 client you're not supposed to access paths a that are configured as an OIDC RP (AuthType openid-connect), but you should only access paths configured with AuthType oauth20; if course a crash should prevented, so that is fixed, but basically your path was wrongly configured |
Beta Was this translation helpful? Give feedback.
-
As soon as I activate the module openidc even if not configured for any
virtual host I get a segfault on a particular route which is using guzzle
PHP ...
If I disable openidc all is working fine, any clue ?
Le sam. 30 janv. 2021 à 03:05, Hans Zandbelt <[email protected]> a
écrit :
… there's no need to install a version that contains the fix to prevent the
crash, you can just as wel fix your configuration
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#529 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB2NUS4XS6DB4V7ENHA54P3S4O4UZANCNFSM4WXBJAZA>
.
|
Beta Was this translation helpful? Give feedback.
Ok, I reproduced and fixed here: fdbd131
as an OAuth 2.0 client you're not supposed to access paths a that are configured as an OIDC RP (AuthType openid-connect), but you should only access paths configured with AuthType oauth20; if course a crash should prevented, so that is fixed, but basically your path was wrongly configured