validate wordpress user login from database using python validate wordpress user login from database using python wordpress wordpress

validate wordpress user login from database using python


Wordpress uses php crypt function and can be decrypted in Python using passlib.Here is the code:

from passlib.hash import phpassphpass.verify("password", "wordpress hash")

I've used it on Wordpress 2.8 and PHP 5.3.6 and it worked well.