vote up 0 vote down star

I need to do some command lines through a browser. What I need to do in a command-line would be:

$login
<login name>
<password>
$passwd
<old password>
<new password>
<retype new password>

So, how can I do this using the proc_open function? Or should I use another function to do this?

Thanks

flag

66% accept rate

4 Answers

vote up 1 vote down

Found this Change Linux or UNIX system password using PHP script in the internet.

A very detailed description on how to create a website where a user can change his own system password.

link|flag
vote up 0 vote down

Adam Wright, I've tried your example, but I just can't change users password. do I need to do any other things in the script (besides defining $user, $userPassword and $newPassword)?

Thanks

link|flag
vote up 1 vote down

http://pecl.php.net/package/PAM might be something you can use.
It has a function bool pam_chpass(string $username, string $oldpassword, string $newpassword [, string &$error ]).
But I've never used it.

link|flag
vote up 1 vote down

You don't need to issue login to change the password for a user, just give their name to passwd. Using popen (as we don't need to read in this tiny example), something like

$pp = popen("passwd ${user}", "w");
fwrite($pp, $oldPassword . '\n');
fwrite($pp, $newPassword . '\n');
fwrite($pp, $newPassword . '\n');
pclose($pp);

If you want to read the responses, use proc_open, and just read from the stdout handle you're given.

I hope this is all well secured, and that you have a lot of sanitisation on the username.

link|flag
This will only work when the php interpreter runs with superuser privileges (only root can change the passwd of an other user). If you don't care about security, you can either set the superuser bit of passwd or use sudo. – jk Sep 25 '08 at 12:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.