vote up 0 vote down star

I have an expect script that connects to a few routers through ssh. All these routers have the same password (I know, it's wrong), and the script needs to know that password in order to be able to connect to the routers. Currently, the password is passed to my script as an argument on the command line, but this means that there's a trace of that password in my .bash_history file as well as in the running processes. So instead I would like the user to be prompted for a password, if possible silently.

Do you know whether or not it's possible to prompt the user for a password with expect?

Thank you.

Edit: if I was connecting to servers instead of routers, I would probably use ssh keys instead of passwords. But the routers I'm using just support passwords.

flag

71% accept rate

1 Answer

vote up 1 vote down check

Use expect's stty command like this:

# grab the password
stty -echo
send_user -- "Password for $user@$host: "
expect_user -re "(.*)\n"
send_user "\n"
stty echo
set pass $expect_out(1,string)

#... later
send -- "$pass\r"

Note that it's important to call stty -echo before calling send_user -- I'm not sure exactly why: I think it's a timing issue.

expect programmers should all read the book: Exploring Expect by Don Libes

link|flag
Cool thanks! It's amazing how intolerant this language is: I wrote "set pass $expect_out(1, string)", with a space before the word "string", and it bombs. I can't find much documentation either. I wish there was some other solution than expect. Anyway, thanks a lot. – MiniQuark Mar 26 at 8:32
"can't find much documentation" ?!? There's a whole book, which is generally considered so well written that it has not needed a second edition. Seriously, check that book out. – glenn jackman Mar 30 at 13:10
Re: a space between "1," and "string" -- Tcl (and hence expect) does not have multidimensional arrays. The array key is just a string, and "1,string" and "1, string" are different. – glenn jackman Mar 30 at 13:10

Your Answer

Get an OpenID
or

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