You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2024. It is now read-only.
timed/subscription/admin.py:27:38: S324 Probable use of insecure hash functions in hashlib: md5 | 25 | password = self.cleaned_data.get("password") 26 | if password is not None: 27 | self.instance.password = hashlib.md5(password.encode()).hexdigest() | ^^^^^^^^^^^ S324 28 | return super().save(commit=commit) |
classCustomerPassword(models.Model):
"""Password per customer used for login into SySupport portal. Password are only hashed with md5. This model will be obsolete once customer center will go live. """
I'm not 100% if this is still in use or not. It looks like it was part of the old SySupport portal and might have been replaced with a proper solution when the portal was migrated to being an Ember based frontend.
If this is in fact the case then we should create an issue to track the codes removal. Maybe @winged or @trowik know if it's still needed?
I'm also not 100% sure, but I'd say it's safe to remove it in another PR.
S324:
I'm also not 100% sure, but I'd say it's safe to remove it in another PR.
Originally posted by @trowik in #1049 (comment)
The text was updated successfully, but these errors were encountered: