The user's passwords are stored in the database as plain text which could be the worst practice in the world. I should implement security hash algorithms to store the passwords in the database.
Upgrade interface.py.
Check this module for python: hashlib
The issue was closed in the following commi: 4bb09bb2e6a0081ee17c7db5dea9c187e7f708d6
This is a short youtube video about storing data in a database: https://youtu.be/fVYgM8MG-xY. It is pretty cool.
The user's passwords are stored in the database as plain text which could be the worst practice in the world. I should implement security hash algorithms to store the passwords in the database. Upgrade interface.py. Check this module for python: hashlib