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 ...
2
votes
4answers
473 views
PHP sudo in shell_exec
I want to execute a command as root with shell_exec. Now I know this is dangerous, but believe me, you need to login with MOD_AUTH and have the right privilleges to come to this page. It's secure. How ...
1
vote
4answers
905 views
Zipping files through shell_exec in PHP: problem with paths
I'm working on a web backup service part of which allows the user to download a zip file containing the files they have selected from a list of what they have backed up.
The zipping process is done ...