[cas-user] use permitAll via HttpSecurity#authorizeHttpRequests

2022-08-30 Thread Noelette Stout
I just installed 6.6.0-RC5, and I am seeing a number of messages similar to this in the log: WARN [org.springframework.security.config.annotation.web.builders.WebSecurity] - Where do I find the setting for this? Thanks, Noelette -- - Website: https://apereo.github.io/cas - Gitter Chatroom

Re: [cas-user] Password does not match the password policy requirement.

2022-08-30 Thread Vincent Weber
I respond to myself to help other people in the future. In passwordMeter.js, policyPattern is used as a string in : var policyPatternRegex = new RegExp(policyPattern); So we need to double escape the "\", in my case it will be : ^(?=.{12,}$)(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*\\W).*$ (which