0
votes
4answers
359 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>
…
1
vote
7answers
1k views
PHP - shell_execute -change user password
Hi,
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 …
