Control Web Panel

WebPanel => Addons => Topic started by: become on May 30, 2017, 04:48:03 PM

Title: Change user password via API
Post by: become on May 30, 2017, 04:48:03 PM
I want to write API function for change user password.
I see php files are encrypted so I do not know how start with it.
Any help ?
Title: Re: Change user password via API
Post by: yokowasis on July 24, 2017, 06:00:07 PM
I want to write API function for change user password.
I see php files are encrypted so I do not know how start with it.
Any help ?

users password store in /etc/shadow



I think
Title: Re: Change user password via API
Post by: darkness on July 26, 2017, 05:33:20 AM
Yep. So you need to get the plain password, to crypt it the same way CentOS do, replace it in /etc/shadow and reload the password db of CentOS(this is by memory from FreeBSD, may be on Linux you don`t need to reload it after changes).