Tagged Questions

3
votes
8answers
3k views

Using shell_exec('passwd') to change a user's password

I need to be able to change the users' password through a web page (in a controlled environment). So, for that, I'm using this code: <?php $output = shell_exec("sudo -u dummy passwd testUser ...
0
votes
2answers
180 views

PHP passwd error

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: ...