You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Sumit Pandit (JIRA)" <ji...@apache.org> on 2012/07/10 11:58:33 UTC

[jira] [Commented] (OFBIZ-4958) Additional Validation for Password : Make password pattern driven

    [ https://issues.apache.org/jira/browse/OFBIZ-4958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13410194#comment-13410194 ] 

Sumit Pandit commented on OFBIZ-4958:
-------------------------------------

*Demo Password pattern requirement - *

* Only contains alphanumeric and the following special characters:!@#$%^&*
* Contains at least 1 of the special characters listed above
* The required special character can appear anywhere in the string (for example: !abc, a!bc, abc!)
* Minimum length 5 digit.

Based on above points; password pattern is as follows - 
{code:title=Password Pattern|borderStyle=solid}
^.*(?=.{5,})(?=.*[a-zA-Z])(?=.*[!@#$%^&*]).*$
{code}

Above pattern configuration exist in security.properties file so that user can change the pattern as per customize requirement.





                
> Additional Validation for Password  : Make password pattern driven
> ------------------------------------------------------------------
>
>                 Key: OFBIZ-4958
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-4958
>             Project: OFBiz
>          Issue Type: Sub-task
>          Components: ALL COMPONENTS
>    Affects Versions: SVN trunk
>            Reporter: Sumit Pandit
>             Fix For: SVN trunk
>
>
> Providing an additional validation for password  -
> Idea is to achieve following -
> * Insist user to provide a stronger login password for additional protection.
> * User's password need to match a pre-defined Pattern.
> * Password pattern can change any time.
> * Validation should applied for new user creation and update password processes.
> --
> Thanks And Regards
> Sumit Pandit

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira