I'm doing this:

$user = 'kevin';
$pass = 'nivek';
shell_exec('echo -e "' . $pass . '\n' . $pass . '" | sudo passwd ' . $user);`

But when I execute this, I get this error:

Enter new UNIX password: Retype new UNIX password: Sorry, passwords do not match
passwd: Authentication token manipulation error
passwd: password unchanged

Why? How can I solve this and how can I hide the output from passwd?

link|improve this question

54% accept rate
Does the command work in console? – Álvaro G. Vicario Apr 8 '11 at 12:21
cyberciti.biz/tips/… – Wh1T3h4Ck5 Apr 8 '11 at 12:32
No, --stdin gives an error here. – Kevin Apr 8 '11 at 13:14
Thanks, Wh1T3h4Ck5 (what a name ;p). It's working!! :D – Kevin Apr 8 '11 at 14:01
feedback

2 Answers

up vote 1 down vote accepted

You can use the following code:

$user = 'kevin';
$pass = 'nivek';
shell_exec('echo -e "' . $pass . '" | sudo passwd --stdin ' . $user);

That appears to work for me (although tested without sudo, you may need the second).

I'm not sure that sudo would even work.

link|improve this answer
Sorry, wrong comment. Got this error: passwd: unrecognized option '--stdin' – Kevin Apr 8 '11 at 13:35
What distro are you using? This works fine on Red Hat (and derivatives) at least. – rudi_visser Apr 8 '11 at 14:22
I'm using Ubuntu. – Kevin Apr 8 '11 at 15:55
feedback

Use --stdin for passwd to read from standard input. Then you can pipe the password.

link|improve this answer
I'm a newbie in Linux, can you explain how this works? – Kevin Apr 8 '11 at 12:26
feedback

Your Answer

 
or
required, but never shown

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