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
0answers
63 views
Can CakePHP use a passwd file for basic/digest http auth?
I want to restrict access to admin routing in my CakePHP app using digest HTTP auth based on an existing passwd file.
If the "admin" area actually resolved to a real directory, I could do this with a ...
0
votes
2answers
179 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: ...
0
votes
4answers
1k views
php - proc_open (or other function that works)
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>
...