joomla password encryption

前端 未结 9 1868
借酒劲吻你
借酒劲吻你 2020-11-27 14:13

I need to access the joomla user table jos_users for login checking from external php script [codeignitor].

joomla storing password like this

         


        
9条回答
  •  时光说笑
    2020-11-27 14:42

    Joomla "understands" the passwords with "normal" md5.

    What I've done in the past (to test a user's login), was to save the original password, encrypt a new one in md5, replace it in the database, test it with the browser (and it works) and when I was done, paste the original password in the database.

提交回复
热议问题