Skip to content

Security Issues

Tatiana Washington edited this page Oct 31, 2022 · 3 revisions

The issues around security can be addressed by picking the correct hosting site that can handle DDOS attacks and the like. Users' personal information can be protected by properly configuring firewalls in our servers or by picking the right cloud hosting provider that can handle the security measures.

Input Validations

By validating the data entered by users, we can prevent hackers from entering damaging codes into our app. We will do this by ensuring the following:

  • Authorized characters ($&!*@...)
  • Data length
  • Minimum/Maximum characters

Data Encryption

Encrypting all the data in our app will prevent hackers from using the data they may download from us.

User Authentication

By making sure there are certain constraints to passwords our users create, we will prevent them from being at risk (i.e. Password: 12345). So there needs to be a validation condition for creating a password.

Clone this wiki locally