12345678910111213141516171819202122232425 |
- ##############
- Security
- ##############
- Security specific default settings.
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | Default Setting Subcategory | Default Setting Name | Default Setting Value | Default Setting Enabled | Default Setting Description |
- +=============================+======================+=======================+=========================+=====================================================================================================================================================================+
- | password_length | numeric | 15 | TRUE | Set the required length for the generated passwords. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | password_number | boolean | TRUE | FALSE | Set whether to require at least one number in passwords. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | password_uppercase | boolean | TRUE | FALSE | Set whether to require at least one uppercase letter in passwords. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | password_special | boolean | TRUE | FALSE | Set whether to require at least one special character in passwords. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | session_rotate | boolean | TRUE | TRUE | Whether to regenerate the session ID. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | password_lowercase | boolean | TRUE | TRUE | Set whether to require at least one lowecase letter in passwords. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | password_strength | numeric | 4 | TRUE | Set the default strength for generated passwords. Valid Options: 1 - Numeric Only, 2 - Include Lower Apha, 3 - Include Upper Alpha, 4 - Include Special Characters. |
- +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|