I would like a way to update my password on a remote Ubuntu 10.4 box with fabric.

I would expect my fabfile.py would look something like this:

def update_password(old_pw, new_pw):
    # Connects over ssh with a public key authentication
    run("some_passwd_cmd --old %s --new %s" % (old_pw, new_pd))

Unfortunately the only command I know of that lets one change the password is passwd, and on Ubuntu 10.4 there doesn't seem to be any way to pass in the new (or old) password as an argument to passwd.

What command could one use to change a user's password on Ubuntu 10.4 via fabric?

EDIT: I've had a look at usermod -p, and that may work but it isn't recommended by the man page.

EDIT: For some reason usermod -p wasn't working either over fabric.

As well, I've tried a (somewhat insecure) variation on mikej's answer that did solve the problem:

# connecting & running as root.
from fabric.api import *
from fabric.contrib import files

files.append("%s\n%s" % (passwd, passwd), '.pw.tmp')
# .pw.tmp:
# PASSWD
# PASSWD

run("passwd %s < .pw.tmp" % user)

run("rm .pw.tmp")

It's not a very elegant solution, but it works.

Thank you for reading.

Brian

link|improve this question

Note that on Lucid, the argument to usermod -p is "The encrypted password, as returned by crypt(3)" using SHA-512 not the plaintext. The caveat in the usermod page is equivalent to saying "you'd be putting the (normally hidden) hashed content of /etc/shadow in the process table for a brief time", which depending on your security requirements, may not be all that revealing. – msw Jun 20 '10 at 21:33
feedback

4 Answers

up vote 4 down vote accepted

You could feed the new and old passwords into passwd using echo e.g.

echo -e "oldpass\\nnewpass\\nnewpass" | passwd

(the -e option for echo enables interpretation of backslash escapes so the newlines are interpreted as such)

link|improve this answer
@Mikej - thanks for the reply. I've been trying this, but I'm having what I think is trouble with escaping. In particular run("echo -e \"%s\\n%s\\n%s\" | /usr/bin/passwd" % (old_pw, new_pw, new_pw)) doesn't work (i.e. returns "UNIX password: passwd: Authentication token manipulation error") – Brian M. Hunt Jun 20 '10 at 19:33
You might need to double escape the \ (once for Python and once for echo) e.g. \\\\n for each newline – mikej Jun 20 '10 at 19:41
@Mikej: When I run this from the the command line, it works fine. However, when I run it over fabric, I get the following: UNIX password: Enter new UNIX password: Retype new UNIX password: passwd: Authentication token manipulation error – Brian M. Hunt Jun 20 '10 at 19:43
I've tried run("echo -e \"%s\\\\n%s\" | passwd %s" % (passwd, passwd, user), shell=False) results in the command echo -e "PASSWD\\nPASSWD" | passwd USER (for passwd=PASSWD, user=USER). Which, alas, results in 'UNIX password: passwd: Authentication token manipulation error'. When I run the echo command from the shell it works as expected. – Brian M. Hunt Jun 20 '10 at 20:05
Are there any characters in the new or old password that might also need escaping (try temporarily changing the password to a simple alphanumeric one.) Also, I presume you are including the new password confirmation as in your first comment even though you haven't included it in the most recent comment? – mikej Jun 20 '10 at 20:16
show 1 more comment
feedback

The trick is to use a combination of usermod and Python’s crypt to change your password:

from fabric.api import *
from crypt import crypt

def change_password(user):
    password = prompt('Enter a new password for user %s:' % user)
    crypted_password = crypt(password, 'salt')
    sudo('usermod --password %s %s' % (crypted_password, user), pty=False)
link|improve this answer
feedback

Out of interest, I have to do a similar task on a collection of Solaris boxes (add a whole lot of users, set their password). Solaris usermod doesn't have a --password option, so in the past I've used Expect to do this, but writing Expect scripts can be painful.

So this time I'm going to use Python's crypt.crypt, edit /etc/shadow directly (with backups, of course). http://docs.python.org/release/2.6.1/library/crypt.html

Commenters have suggested using various echo incantations piped to passwd. AFAIK this will never work, as passwd is programmed to ignore input from stdin and only accept input from an interactive tty. See http://en.wikipedia.org/wiki/Expect

link|improve this answer
feedback

I use chpasswd on Ubuntu 11.04

fabric.api.sudo('echo %s:%s | chpasswd' % (user, pass))

Note: Normally this pattern doesn't work:

$ sudo echo bla | restricted_command

because only the 'echo' gets elevated privileges, not the 'restricted_command'.

However, here it works because when fabric.api.sudo is caled with shell=True (the default), fabric assembles the command like this:

$ sudo -S -p <sudo_prompt> /bin/bash -l -c "<command>"

sudo spawns a new shell (/bin/bash), running with root privileges, and then that escalated shell runs the command.

Another way to pipe with sudo is to use sudo tee:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.