Sensitive Data Exposure
Passwords are hashed using Argon2 before storing them in the database. This is a hard memory password hashing function that not only makes it computationally expensive, but also uses a lot of memory. This means that it is much more difficult to attack Argon2 hashes using graphics processors or special equipment
Using an insecure protocol to transport login credentials would allow an attacker to gain access to this information and impersonate the legitimate user.
It’s recommended to use secure protocols to transport user credentials. Using HTTPS to transport user data over the network prevents sensitive information from being exploited by a sniffing attack. Also, using the POST request method is a better approach for submitting login credentials since it sends data inside the request body instead of exposing it in the URL.
Comments
Post a Comment