🔐Authentication
This repo contains all types of security best practices for handling authentication
1. How to handle secure password while connecting with the Database ?
Instead of hardcoding passwords, using env
variable would be much better . Let's take example with Django and python
Problem
Hard code passwords can lead to security vulnerability which is significant security risk
Flexibility issue : can't be modified password without modifying code or client side
Version control Issue : storing hardcoded password in VS repo, with multiple access can lead to security risk
Let's take another DB example for MySQL connection
References
Last updated