Thomas Darimont

Results 92 comments of Thomas Darimont

The user profile can be imported via the dedicated userProfile attribute: The following works for me with Keycloak 24.0.5, however the latest keycloak-config-cli (6.0.2) seems to have some issues with...

@daniel-shuy thank you for your contribution, we will discuss this with the maintainer. Would you mind rebasing your PR on the current main?

Thanks @akikoskinen for reporting this. Could you provide a reproducer for this similar to that one? https://github.com/adorsys/keycloak-config-cli/issues/623

How about creating a PR with a doc snippet for https://github.com/adorsys/keycloak-config-cli/blob/main/docs/FEATURES.md ?

This is similar to this issue https://github.com/keycloak/keycloak/issues/17277

How about creating a property `showPasswordQuality` in `themes.properties` with default to `false`? In register.ftl you could then write: ```` ```` in https://github.com/keycloak/keycloak/blob/main/themes/src/main/resources/theme/base/login/register.ftl#L3 You could then also move the loading of...

FYI I just tested the latest ubi9/openjdk-17-runtime via: `docker run --rm -it registry.access.redhat.com/ubi9/openjdk-17-runtime:1.17-1 bash` It contains openjdk "17.0.9" 2023-10-17 LTS ``` [default@27824e94beae ~]$ java -version openjdk version "17.0.9" 2023-10-17 LTS...

@Mindavi I build the pbkdf2 binaries myself with the Makefile contained in the contrib/slapd-modules/password folder. See: https://github.com/openldap/openldap/tree/master/contrib/slapd-modules/passwd/pbkdf2 The readme states that `slapd.conf` is not used by the docker container, see:...

Update, I think I got it working now: \o/ ``` $ slappasswd -o module-load=/usr/lib/ldap/pw-pbkdf2.la -h '{PBKDF2-SHA256}' -s secret {PBKDF2-SHA256}10000$0IHrGrBOhFpxzqpBwp12RA$HfSHBRSiVH5mGBdUSciZdKjgsMLi9fyd88E5Uip2IU4 $ slappasswd -o module-load=/usr/lib/ldap/pw-pbkdf2.la -h '{PBKDF2-SHA512}' -s secret {PBKDF2-SHA512}10000$niFbcFyjjYqXz3Due4F1Jw$DY20fDOvHyKsz0SHpy1xcGnUiMJ0rRGlMEPAt6S5IzuuwVKw77ZfSYiQU1RtF0PcTg0UBeE0mS60X6.cYJ9ITQ $ slappasswd...

Nice! Your build is quite handy, thanks :) Btw. you could also add support for customizing the PBKDF2 iteration count with a build arg, e.g. ``` ARG PBKDF2_ITERATION=27500 RUN sed...