Magento – Magento Plugin Password Policy

extensionsmagento2passwordSecurity

Is there any magento plugin that has the features below:

  1. force the user changed password in every 90 days.
  2. change password must required min 8 char

Best Answer

Password lifetime

This is a standard feature of Magento 2 (CE + EE). In the system configuration there is a section for "security" (see "Advanced" > "Admin") where you can define the Password Lifetime in days (for example 90) and set the password change behaviour (forced or recommended).

enter image description here See also: http://docs.magento.com/m2/ce/user_guide/stores/security-admin.html

Password length

The current minimum password length for admin users is 7 characters.

As far as I know there is currently no extension that sets the minimum password length to 8.

Related Topic