79166746

Date: 2024-11-07 13:54:11
Score: 1
Natty:
Report link

You can also try;

from django.contrib.auth.hashers import check_password

def post(request, *args, **kwargs):
     check_pass = check_password(new_password, request.user.password)
     print('#Check Pass: ', check_pass) ## This will return true or false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aytaç Göller