security.rst 4.6 KB

12345678910111213141516171819202122232425
  1. ##############
  2. Security
  3. ##############
  4. Security specific default settings.
  5. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  6. | Default Setting Subcategory | Default Setting Name | Default Setting Value | Default Setting Enabled | Default Setting Description |
  7. +=============================+======================+=======================+=========================+=====================================================================================================================================================================+
  8. | password_length | numeric | 15 | TRUE | Set the required length for the generated passwords. |
  9. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  10. | password_number | boolean | TRUE | FALSE | Set whether to require at least one number in passwords. |
  11. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  12. | password_uppercase | boolean | TRUE | FALSE | Set whether to require at least one uppercase letter in passwords. |
  13. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  14. | password_special | boolean | TRUE | FALSE | Set whether to require at least one special character in passwords. |
  15. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  16. | session_rotate | boolean | TRUE | TRUE | Whether to regenerate the session ID. |
  17. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  18. | password_lowercase | boolean | TRUE | TRUE | Set whether to require at least one lowecase letter in passwords. |
  19. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | 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. |
  21. +-----------------------------+----------------------+-----------------------+-------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+