How to see password on database

How to check the user password in database pls guide anyone

Thanks,
Jecintha

1 Like

Hi @Jecintha
For check user password you can use this function :
from frappe.utils.password import check_password
check_password(some_user,password_to_check)

But you can’t see the user password on database.

Hi antzforwork

Thanks for reply, I need a password value becoz i’m using my validation . check_password method return password correct or not. so pls tell me need password value

For what i belief you can’t get user password.
@adityahase said it can’t because of these reasons:

1 Like

ok antzforwork i will refer now