-
Notifications
You must be signed in to change notification settings - Fork 0
Security Issues
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.
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
Encrypting all the data in our app will prevent hackers from using the data they may download from us.
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.