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
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