-
Notifications
You must be signed in to change notification settings - Fork 3k
User password update via REST API is not hashed #14339
Copy link
Copy link
Closed
Labels
severity: mediumResults in substantial degraded or broken functionality for specfic workflowsResults in substantial degraded or broken functionality for specfic workflowsstatus: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application
Metadata
Metadata
Assignees
Labels
severity: mediumResults in substantial degraded or broken functionality for specfic workflowsResults in substantial degraded or broken functionality for specfic workflowsstatus: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application
Type
Fields
Give feedbackNo fields configured for issues without a type.
NetBox version
v3.6.5
Python version
3.11
Steps to Reproduce
{id}:Expected Behavior
The password stored on the database must be hashed, so user with the password updated is able to login on the Netbox instance.
Observed Behavior
The password stored on the database is not hashed, so user with the password updated is not able to login on the Netbox instance.
Connected on the database, do (where
{id}is the created user's id) :SELECT password FROM auth_user WHERE id={id}Result
"newpassword"