Change Linux or UNIX system password using PHP script

by nixcraft · 62 comments

If you just wanted to change your own password or other user passwords use passwd command.

I was asked to setup a PHP based interface to change the password. Since my knowledge of php is limited. Here is what I did:

Required tools/setup:

You must have following tools/software installed

=> Shell script to change password

=> Sudo access

=> Apache or Lighttpd web server

=> PHP server side

Step # 1: Setup a shell script to change password

This shell script use expect tool to change the password (see more about expect tool here).

Sample shell script code

#!/bin/sh
# \
exec expect -f "$0" ${1+"$@"}
set password [lindex $argv 1]
spawn passwd [lindex $argv 0]
sleep 1
expect "assword:"
send "$password\r"
expect "assword:"
send "$password\r"
expect eof

You can execute this script as follows (dowload link):
$ chpasswd username password

Download script and copy to your webroot or location where webserver can read this script file:
$ cp chpasswd /var/www/

ALTERNATIVELY, if you are using Ligtttpd web server:
$ cp chpasswd /home/lighttpd

Step # 2: Setup sudo to execute a command as root user

Apache or Lighttpd web server drops root privileges as soon as they go into background. This makes changing password scenario difficult as passwd command needs root privileges to change other user account password.

Typically, Apache 2 use www-data user and Lighttpd use lighttppd username to drop privileges. Login as root user and type the following command:
# visudo

Now allow your web server to execute a script (chpasswd) w/o password. If you are using Apache web server, type the following command:
www-data ALL=NOPASSWD: /var/www/chpasswd

ALTERNATIVELY, if you are using Ligtttpd web server, type the following command:
lighttpd ALL=NOPASSWD: /home/lighttpd/chpasswd

Save and close the file.

Step # 3: Create a PHP based interface

Now you need to write a php script. Here is sample php script. This is a demo script. You should modify it according to your requirement or setup. At minimum, you need to setup correct shell script location so that it will work for you out of box. Open php script and locate line:
$shellscript = "sudo /home/lighttpd/chpasswd";

Change it to point to correct location. PHP Source code:

<?php
// change .. me! - shell script name
$shellscript = "sudo /home/lighttpd/chpasswd";
 
// Make sure form is submitted by user
if(!(isset($_POST['pwdchange']))) {
 // if not display them form
 writeHead("Change password");
 writeForm();
 writeFoot();
}
else {
 // try to change the password
 $callshell=true;
 // get username and password
 $_POST['username'] = stripslashes(trim($_POST['username']));
 $_POST['passwd'] = stripslashes(trim($_POST['passwd']));
 
// if user skip our javascript ...
// make sure we can only change password if we have both username and password
 if(empty($_POST['username'])) {
   $callshell=false;
 }
 if(empty($_POST['passwd'])) {
   $callshell=false;
 }
 if ( $callshell == true ) {
  // command to change password
  $cmd="$shellscript " . $_POST['username'] . " " . $_POST['passwd'];
  // call command
  // $cmd - command, $output - output of $cmd, $status - useful to find if command failed or not
   exec($cmd,$output,$status);
   if ( $status == 0 ) { // Success - password changed
   writeHead("Password changed");
   echo '
<h3>Password changed</h3>
 
Setup a new password';
   writeFoot();
   }
   else { // Password failed
      writeHead("Password change failed");
      echo '
<h3>Password change failed</h3>
 
';
      echo '
 
System returned following information:
 
';
      print_r($output);
      echo '
 
<em>Please contact tech-support for more info! Or try <a href='.$_SERVER['PHP_SELF'].'again</a></em>
 
';
      writeFoot();
   }
 }
 else {
   writeHead("Something was wrong -- Please try again");
   echo 'Error - Please enter username and password';
   writeForm();
   writeFoot();
 }
}
 
// display html head
function writeHead($title) {
echo '
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> ' .$title. '</title>
<style type="text/css" media="screen">
.passwdform {
	position: static;
	overflow: hidden;
}
 
.passwdleft {
	width: 25%;
	text-align: right;
	clear: both;
	float: left;
	display: inline;
	padding: 4px;
	margin: 5px 0;
}
 
.passwdright {
	width: 70%;
	text-align: left;
	float: right;
	display: inline;
	padding: 4px;
	margin: 5px 0;
}
 
.passwderror {
	border: 1px solid #ff0000;
}
 
.passwdsubmit {
}
</style>
 
</head>
 
<body>';
 
}
// display html form
function writeForm() {
echo '
<h3>Use following form to change password:</h3>
 
<script>
function checkForm() {
if (document.forms.changepassword.elements[\'username\'].value.length == 0) {
    alert(\'Please enter a value for the "User name" field\');
    return false;
}
if (document.forms.changepassword.elements[\'passwd\'].value.length == 0) {
    alert(\'Please enter a value for the "Password" field\');
    return false;
}
  return true;
}
</script>
<div class="contactform">
<form action="' . $_SERVER[PHP_SELF]. '" method="post" onSubmit="return checkForm()" name="changepassword">
<div class="passwdleft"><label for="lblusername">User Name: </label></div>
<div class="passwdright">
<input type="text" name="username" id="lblusername" size="30" maxlength="50" value="" /> (required)</div>
<div class="passwdleft"><label for="lblpasswd">Password: </label></div>
<div class="passwdright">
<input type="password" name="passwd" id="lblpasswd" size="30" maxlength="50" value="" /> (required)</div>
<div class="passwdright">
<input type="submit" name="Submit" value="Change password" id="passwdsubmit" />
<input type="hidden" name="pwdchange" value="process" /></div>
</form>
</div>
 
';
 
}
// display footer
function writeFoot(){
echo '</body>
</html>
';
}
?>

Step # 4: Run the script

Point a web browser to your server url - https://mydomain.com/changepassword.php. You should see a username and password form as follows:

changepassword php script output # 1

If a password is changed successfully, you should get confirmation as follows:

changepassword php script output # 2

For some reason if a password failed to change, you should get detailed error message as follows:

changepassword php script output # 3

Step # 5: Security

Note this is an example and not final solution as it is little insecure.

  • Never ever run this script over http session. Always run over https session.
  • Put script in a password protected directory (see how to setup Apache or Lighttpd web server password protected directory).
  • Never ever, trust user input. Above php script is just a sample, for real life production you should consider more powerful user input validation. Discussion regarding PHP programming security is beyond the scope of this article. You can consult a good PHP book or search a web using your favorite search engine :)

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 62 comments… read them below or add one }

1 prem 08.07.06 at 11:50 am

why we need this much pain you can use webmin for easy configuration or some other tools to do this

2 nixcraft 08.07.06 at 12:25 pm

Ready to use tools or webmin are not useful for custom-made control panel or other solution. Every situation is different hence; you need to develop your own methods.

No, it is not a pain. We simply call it hacks :P

3 pipacs 08.09.06 at 7:34 pm

The expect script proposed here is extremely dangerous. Any user monitoring commands with “ps” could capture user names and passwords.

4 nixcraft 08.09.06 at 8:20 pm

Pipacs,

Thanks for your concern. I agree with you. At the movement, this box can be access by admins only and other user change password using above solution.

But if you need to give shell access -
On FreeBSD with secure runlevel prevents other users from monitoring command/script arguments from ps, w, who, top etc commands.

On Linux system you need to apply a special patch to kernel (LINUX BSD LSM) or disable other user shell login all together

If you have any other, solution then please let me know…

Appreciate your post.

5 chadrick 08.09.06 at 8:22 pm

Hey, any idea why the expect scriptscript does not works if i remove sleep 1 command :/?

6 nixcraft 08.09.06 at 8:31 pm

Chadrick,

As name, suggest sleep command puts pause for NUMBER seconds (1 second). If you are using Debian Linux you need to use sleep to slow down few things. However, on RHEL or CentOS or FreeBSD it works w/o sleep command.

7 Sven 08.10.06 at 3:11 pm

passing the POST data straight to a shell is also dangerous. a semicolon in either field, and everything else is executed as a separate command..

See:
http://www.php.net/manual/en/function.escapeshellcmd.php
http://www.php.net/manual/en/function.escapeshellarg.php

8 Boo 08.10.06 at 6:50 pm

So, uh, I can just change anyone’s password that I want to? Am I missing something?

username: root
password: owned

Shouldn’t you also at least use SSL or something?

9 nixcraft 08.10.06 at 7:05 pm

@Boo, you ssl and Password protected directory is must

@Sven, thanks for link i will update my code!

As I said earlier, my knowledge of php is limited. At the movement, script is protected using SSL and a password-protected directory.

And I must add protection for root user… in php itself

Appreciate all of your posts.

10 dean 09.30.06 at 5:02 pm

I am very interested in doing this for a new production process.

Is it possible to have the current password vierified first?

11 Lars 10.02.06 at 1:44 pm

thx for the script, very close what i needed quick-and-dirty here, got it up and running for my purpose within 10 minutes.

And yep, its extremely dangerous, but the box running it isn’t designed to be overly safe or even public anyway ^^

12 elton 10.12.06 at 6:53 am

I am getting the following error:

spawn passwd
passwd: Only root can specify a user name.

Which makes sense, but how did you not get this?

13 nixcraft 10.12.06 at 8:26 am

You need give web server user to change password permission using sudo tool (see step # 2).

14 Chris 11.03.06 at 7:44 pm

How can I change this script to add new users ?

15 nixcraft 11.03.06 at 11:20 pm

Yes you can. You write a shell script and call same way.

16 elvis 11.06.06 at 6:13 pm

As written, this script allows any user’s password to be changed, which may not be a good thing. By placing this script in a secure, password-protected directory, you can avoid having to request the username on the form & instead use the $_SERVER['PHP_AUTH_USER'] variable to get the name of the currently-authenticated user. That will restrict password changes to the authenticated user only.

17 nixcraft 11.06.06 at 7:34 pm

elvis,

Good suggestion. I will try to implement them. Yes currently script runs in password protected directory over ssl session.

Appreciate your post.

18 Fer 11.07.06 at 6:04 pm

hi,
thank you for sharing your code with us.i want to do the samething but i have to confirm the password first.And this is not working at this point.I think confirming password first needs to edit the shell script at step one.And i dont know about shell scripts.If you have a solution for this problem or anyone knows,please share with us.
thank you again

19 Ahmad 12.20.06 at 9:42 am

what we have to do if we want script to match old password first then allow to change the password

20 jose alfredo 12.20.06 at 10:04 pm

it doesn`t work on my server,
i keep getting this error message and nothing works whenever i try to print the output array, i get nothig just “Array”, can you help me debug this, sorry about my french

21 nixcraft 12.20.06 at 10:41 pm

If you see an array that mean shell script is not working properly. You need to setup correct permission using sudo. What distor and webserver you are using?

22 jose alfredo 12.21.06 at 6:48 pm

i am using httpd 2.0.52-22 on a CentOS 4 and i gave both apache and www-data permission to run da script and passwd, but i keep getting nothig but “Array
(
)

23 Jay Dingenen 01.08.07 at 8:01 am

I’m having a problem with this script, sometimes if i execute it, it doesn’t return “passwd: all authentication tokens updated successfully.” but i can’t check this from my php so the password isn’t updated and my clients can’t use their ftp logins…
Is it possible to like expect “successfully.” or else restart the script? I haven’t got a clue how to do this so all ideas are welcome.

24 Herb Perkins-Frederick 02.28.07 at 10:07 pm

Thanks!

I have a serer running Fedora Core 3. I was having problems with an expect script that I wrote, so I found your site. The chpasswd script worked with one minor modification: instead of “\r” an the end of the send lines, it wanted “\r\n” on my system.

Thanks again!
Herb

25 Alex 03.27.07 at 7:33 am

My system is Redhat Linux9.
I try to execute chpasswd script to change password.
But the script didn’t change password successfully.

And I try to open the PHP file.
After I input username and password that also display error message.

=========
Password change failed
System returned following information…..:

Array
(
)

Please contact tech-support for more info! Or try

=========
What can I do and resolve his problem?

26 שדרך 05.18.07 at 7:57 pm

Alex,

Try putting the full path to sudo in the php script, that fixed the problem for me:

/usr/bin/sudo

27 Matt 06.01.07 at 1:28 pm

I am having the same problem as Alex and I have the full path to sudo in my php script. Any clue?

28 Matt 06.01.07 at 2:41 pm

I had to hardcode the command in the $cmd to get it to work

29 Dan 07.05.07 at 2:57 pm
30 vivek 07.05.07 at 3:13 pm

Dan,

Good finding.

Appreciate your posts!

31 Fabian 07.13.07 at 9:04 pm

Hello
I got this error when I try to run the php script

Parse error: parse error, unexpected T_STRING, expecting ‘,’ or ‘;’ in /srv/www/htdocs/changepassword.php on line 108

here you have line 108
if (document.forms.changepassword.elements['username'].value.length == 0) {

Thanks for your help

32 Mark 07.17.07 at 11:24 pm

Fabian — Don’t copy&paste from the site, but use the linked PHP file.

My own question is; where the heck is this spawn command located?! :)

33 daphne 09.11.07 at 11:16 am

Couldn’t get this to work using Apache or Lighttpd.

when I browser to localhost://changepassword.php
it just shows a text file of changepassword.php.

Am I doing something wrong?

34 Sergei 09.11.07 at 12:41 pm

Dan, http://changepassword.sourceforge.net/ has 35 open bugs and has been abandoned for couple of years now. I think I will stick with Vivek’s scripts

35 tekhawk 09.11.07 at 6:53 pm

Could something like this be used on mac server os x as a web based user password reset tool?

36 Eric 10.30.07 at 8:49 pm

I’m new to PHP, so don’t expect this to be perfect. It gives me a parse error with the following (very simple) code:

I’m using this to scare the guys in the server room (where we have a Mac Pro).

I don’t even think the syntax is correct either…

37 Eric 10.30.07 at 8:51 pm

Why isn’t my code showing?

38 Steve 01.08.08 at 8:54 am

This solution involves giving the web user full control over a script that can change any system user’s password, without verification. You might as well just run apache as root.

39 Liberty Dandira 01.28.08 at 6:36 pm

Alternatively, without including the shell script

after visudo

Replace www-data ALL=NOPASSWD: /var/www/chpasswd

with

www-data ALL=NOPASSWD: ALL

in your PHP script

just enter

40 Vijay 02.27.08 at 8:40 am

Hello everyone,

I need to know how to change linux system time zone using php script.

used this in shell,that is
$ export TZ=MST, then timezone changed to MST,
but i tried this using php script,
that is,

but this is not working.
can anyone tell me what is the reason for this

41 JimmyJam 03.11.08 at 2:24 am

When I run the PHP script, I get
sudo: unable to execute /var/www/chpasswd: No such file or directory

My /etc/sudoers contains the following entry
www-data ALL=NOPASSWD: /var/www/chpasswd

I have tested this with permission on /var/www/chpasswd set to 744 and 777 but with no luck.

I call the script from PHP using the following:

// set the user's password
$command = 'sudo /var/www/chpasswd'.
$user_info['username'].' '.
$user_info['password'];
shell_exec($command);

Any help would be greatly appreciated

42 Tomek Gruca 03.20.08 at 9:04 pm

pipacs: “The expect script proposed here is extremely dangerous. Any user monitoring commands with “ps” could capture user names and passwords.”

instead of executing “$ chpasswd username password” you can save the password in a tmp file, unreadable for users – that’s what I’ll do ;)

Great script!

43 Turn fun 04.16.08 at 3:41 pm

good tool for web server admins ! :)

44 kevin_cn 05.24.08 at 5:42 pm

hello
is anyone luck enough?
i have the same problem with 25f’s Alex on arch 27th, 2007 at 7:33 am
i am new to php ,how could i do?
please help!

45 Stephen W 07.14.08 at 10:52 pm

The script works with Fedora/CentOS but requires some edits.

As always read the logs!

Check the apache/httpd error logs.

If it states “sudo: sorry, you must have a tty to run sudo”

You will need to comment out “Defaults requiretty” using visudo.

This solution address kevin_cn and Alex’s posts.

46 arief 07.21.08 at 6:35 am

i’m trying to do the similar thing to access iptables. my shell script only contains iptables-L, but i still cant run it from my web.
i already change the visudo and adding the “www-data ALL=NOPASSWD: ALL” line.
all im seeing in the error_log is : Permission denied

47 Olav 08.25.08 at 5:49 pm

Congratulations on your high Google score with the keywords php+change+linux+password :)

Inspired by your script I decided to make this just a little bit safer by eliminating the need for sudo:

#!/bin/sh
# \
exec expect -f "$0" ${1+"$@"}

set name    [lindex $argv 0]
set curpass [lindex $argv 1]
set newpass [lindex $argv 2]
set chkpass [lindex $argv 3] 

spawn su $name -c passwd
sleep 0.5
expect "assword:"
sleep 0.25
send "$curpass\r"
expect "assword:"
sleep 0.25
send "$curpass\r"
expect "assword:"
sleep 0.25
send "$newpass\r"
expect "assword:"
sleep 0.25
send "$chkpass\r"
expect eof

Never mind the many sleep commands in there, but I found that at least it works this way.

48 Olav 08.25.08 at 5:50 pm

Err, something went wrong with the code tags there.

49 vivek 08.25.08 at 5:54 pm

Your comment has been updated. Thanks for contribution.

50 mangwantong 08.28.08 at 8:28 am

Hi
After I try to run Step 1 I have some problem
password show change ok but not change realy

I try run below on my sytem
[root@localhost Code]# sh chpasswd admin mvc123
spawn passwd admin
Changing password for user admin.
New UNIX password: mvc123

Retype new UNIX password: mvc123

[root@localhost Code]#

That finish I think it ok
I try to login by name = admin and newpass
login not ok but old password still work
I don’ know why?

my system ES3

51 dustro 08.30.08 at 8:55 am

thanks for the code it works for me.

52 mangwantong 09.04.08 at 3:15 am

If I use Solaris10 how can I do?
This code can run on solaris?

53 vinotha 09.29.08 at 7:23 am

I try to execute chpasswd script to change password.
But the script didn’t change password successfully.

whn i use sh chpassword test test123 its working.

And I try to open the PHP file.
After I input username and password that also display error message.

=========
Password change failed
System returned following information…..:

Array
(
)

Please contact tech-support for more info! Or try

=========
in my /var/log/messages error shown as

authentication failure; logname= uid=0 euid=0 tty= ruser= rhost= user=apache

What can I do to resolve this problem?

54 Bollywood 01.27.09 at 10:51 pm

very help full article keep it up i like it because its full of details….

55 Terry 02.04.09 at 5:27 am

I’ve written a function which doesn’t need an external script, and does not need sudo access. This eliminated the concern of someone capturing the password by monitoring ps, and allows everything to be done without the need for external files. A log file is created during the password change procedure, though this does not contain any passwords, it’s used to verify the password being successfully changed, and it’s deleted on completion.

Note: you may need to modify the expect strings, depending on your systems password chat.

function changePassword($user, $currpwd, $newpwd) {
	// Open a handle to expect in write mode
	$p = popen('/usr/bin/expect','w');

	// Log conversation for verification
	$log = '/tmp/passwd_' . $user . '_' . time();
	$cmd .= "log_file -a \"$log\"; ";

	// Spawn a shell as $user
	$cmd .= "spawn /bin/su $user; ";
	$cmd .= "expect \"Password:\"; ";
	$cmd .= "send \"$currpwd\\r\"; ";
	$cmd .= "expect \"$user@\"; ";

	// Change the unix password
	$cmd .= "send \"/usr/bin/passwd\\r\"; ";
	$cmd .= "expect \"(current) UNIX password:\"; ";
	$cmd .= "send \"$currpwd\\r\"; ";
	$cmd .= "expect \"Enter new UNIX password:\"; ";
	$cmd .= "send \"$newpwd\\r\"; ";
	$cmd .= "expect \"Retype new UNIX password:\"; ";
	$cmd .= "send \"$newpwd\\r\"; ";
	$cmd .= "expect \"passwd: password updated successfully\"; ";

	// Commit the command to expect & close
	fwrite($p, $cmd); pclose ($p);

	// Read & delete the log
	$fp = fopen($log,r);
	$output = fread($fp, 2048);
	fclose($fp); unlink($log);
	$output = explode("\n",$output);

	return (trim($output[count($output)-2]) == 'passwd: password updated successfully') ? true : false;
}
56 Derek 05.25.09 at 9:45 pm

Terry,

I’ve worked on combining your changePassword function with the original script. Unfortunately this expect script does not gracefully handle the case of a nonexistent user. I get the user’s typed-in password printed (in clear) in my http error_log:

send: spawn id exp16 not open
while executing
“send “xxx\r”"

57 Jason 08.25.09 at 9:55 pm

Set this up and it works but the PHP does not change to say that it has completed???

58 Simon 08.28.09 at 3:07 pm

Is there a way to get past the perceived risk of the script running as root ? i.e is there any way the script could be run as the connected user?

59 Corey 08.28.09 at 8:02 pm

Has anyone thought about adding a secret question onto the php webpage? That way, you could use this script as a backend password change once the user has answered the secret question properly.

With such a system in place, the user can change there own password…. using presetup authentication.

any ideas?

60 Edson Michel 12.29.09 at 8:39 pm

Thanks a lot
Your script help a lot but I have to do more configuration in linux for run it.
the aditional configuration is

use command chown in the script!!!
and watch the error_log of httpd

thanks again

61 tom 01.13.10 at 11:52 am

Apache error_log says password

any help ?

62 Aurangzeb 02.02.10 at 9:51 am

A unix sofrware is copied and installed on another hard drive but during booting it is protected, how to unprotect?

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post:

Next post: