mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #31] MD5 should not be used for passwords #20
Labels
No labels
Feature
Feature
Is It Really an Issue?
Need More Info
Request
Security
bug
duplicate
enhancement
enhancement
help wanted
invalid
pull-request
question
suggestion
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tinyfilemanager#20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nickvellios on GitHub (Jan 15, 2018).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/31
MD5 is not encryption and is about as secure as just storing passwords as plaintext. Please use password_hash().
@Tha14 commented on GitHub (Sep 5, 2018):
I second this, using md5 was probably the worst idea...
@prasathmani commented on GitHub (Oct 10, 2018):
MD5 has been removed.
7c9ecf5@alecos71 commented on GitHub (Oct 13, 2018):
Now the user and pass are in clear text, without any hash checking... use instead password_verify and password_hash...
@prasathmani commented on GitHub (Oct 16, 2018):
@alecos71 - password_hash() has been implemented. thanks for your suggestion.