ScrollMe is an open-source eCommerce platform built with JavaScript, React, Styled Components, Node.js (Express), and MongoDB. It offers a modern shopping experience with a scalable backend, perfect for contributors or those learning modern web development.
Hey @saurabhbakolia In your website you are directly storing users password without encrypting it first.
This would an serious issue because users data is not secure.
anyone can see their passwords.
Screenshot
Solution
I can fix this issue by encrypting the password before storing it in database.
using Bcrypt, it will make your platform more secure.
Issue Report
Encrypt Passwords Before Storing Them
[Provide a concise title for the issue]
Description
Hey @saurabhbakolia In your website you are directly storing users password without encrypting it first. This would an serious issue because users data is not secure. anyone can see their passwords.
Screenshot
Solution
I can fix this issue by encrypting the password before storing it in database. using Bcrypt, it will make your platform more secure.