Creating a webpage with user accounts, what do I need to keep in mind?

后端 未结 4 607
一向
一向 2021-01-31 23:17

I am trying to write a website that has user accounts. There isn\'t much sensitive information other than the password and email address. But I don\'t really understand what I\'

4条回答
  •  不要未来只要你来
    2021-01-31 23:50

    You should:

    • encrypt sensitive data
    • avoid:
      • avoid sql injection
      • Session hijacking
      • Session fixation

    Recommended Reading:

    PHP Security Guide

提交回复
热议问题