Webmin password enforcement options

SYSTEM INFORMATION
OS type and version ubuntu 22.04
Webmin version 2.105
Usermin version 2.005

Please assist with the correct expressions that will enforce the use of Caps, lowercase, numbers and special characters for passwords.

Regular expressions passwords must match

Human-readable description for regular expression

Thanks

There you go:

^(?=.*[A-Z])(?=.*[a-z])(?=.*\d)(?=.*[\W_]).{8,}$
1 Like

The last password I got was created by webmin. It does not contain these mentioned characters. Will they be available in all password creations from now on?

This is the custom regex that you can use to enforce password pattern in a module config.

1 Like

I would greatly appreciate the detailed information of which location, in the webmin settings, where you could insert :
^(?=.[A-Z])(?=.[a-z])(?=.d)(?=.[W_]). {8,}$
I searched through all the webmin documentation but I don’t feel safe for such an insertion.

Configuration
For module Users and Groups

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.