sending username and password through email after user registration in web application

后端 未结 12 1040
夕颜
夕颜 2020-12-09 18:20

What is your opinion on sending the username and password to their email address when they register on our website..this way if they forget the password in the future, they

12条回答
  •  独厮守ぢ
    2020-12-09 19:11

    When you are sending any information via email, it won't be secure. There are too many ways someone can get it. It would be child's play for a skilled hacker looking to steal your information.

    Refrain from sending any personal information like passwords and income information via email as it can become VERY EMBARRASSING for you and your organization if such information was leaked or stolen. Think about security seriously. It just takes that one incident for all the bricks to fall.

    As for password retrieval, thoroughly read Forgot Password Best Practices.

    The bottom line is that an application following best practices should allow a user to reset his own password. Personal security questions should be used. The application should not send email, display passwords, nor set any temporary passwords.

    EDIT: Updated Link...

提交回复
热议问题