I'm writing a C Shell program that will be doing su or sudo or ssh. They all want their passwords in console input rather than stdin.

Does anybody know a solution?

Setting up password-less sudo is not an option.

Expect could be an option, but it's not present on my stripped-down system.

link|improve this question

68% accept rate
feedback

13 Answers

up vote 12 down vote accepted

For sudo there is a -S option for accepting the password from standard input. Here is the man entry:

    -S          The -S (stdin) option causes sudo to read the password from
                the standard input instead of the terminal device.

This will allow you to run a command like:

echo myPassword | sudo -S ls /tmp

As for ssh, I have made many attempts to automate/script it's usage with no success. There doesn't seem to be any build-in way to pass the password into the command without prompting. As others have mentioned, the "expect" utility seems like it is aimed at addressing this dilemma but ultimately, setting up the correct private-key authorization is the correct way to go when attempting to automate this.

link|improve this answer
feedback

I wrote some Applescript which prompts for a password via a dialog box and then builds a custom bash command, like this:

echo <password> | sudo -S <command>

I'm not sure if this helps.

It'd be nice if sudo accepted a pre-encrypted password, so I could encrypt it within my script and not worry about echoing clear text passwords around. However this works for me and my situation.

link|improve this answer
feedback

The usual solution to this problem is setuiding a helper app that performs the task requiring superuser access: http://en.wikipedia.org/wiki/Setuid

Sudo is not meant to be used offline.

Later edit: SSH can be used with private-public key authentication. If the private key does not have a passphrase, ssh can be used without prompting for a password.

link|improve this answer
feedback

Hardcoding a password in an expect script is the same as having a passwordless sudo, actually worse, since sudo at least logs its commands.

link|improve this answer
nobody said anything about hard coding passwords anywhere – n-alexander Sep 21 '11 at 18:40
feedback

Take a look at expect linux utility.

It allows you to send output to stdio based on simple pattern matching on stdin.

link|improve this answer
feedback

When there's no better choice (as suggested by others), then man socat can help:

   (sleep 5; echo PASSWORD; sleep 5; echo ls; sleep 1) |
   socat - EXEC:'ssh -l user server',pty,setsid,ctty

          EXEC’utes an ssh session to server. Uses a pty for communication
          between socat and ssh, makes it ssh’s  controlling  tty  (ctty),
          and makes this pty the owner of a new process group (setsid), so
          ssh accepts the password from socat.

All of the pty,setsid,ctty complexity is necessary and, while you might not need to sleep as long, you will need to sleep. The echo=0 option is worth a look too, as is passing the remote command on ssh's command line.

link|improve this answer
feedback

Set SSH up for Public Key Authentication, with no pasphrase on the Key. Loads of guides on the net. You won't need a password to login then. You can then limit connections for a key based on client hostname. Provides reasonable security and is great for automated logins.

link|improve this answer
feedback

You can provide password as parameter to expect script.

link|improve this answer
feedback

su -c "Command" < "Password"

Hope it is helpful.

link|improve this answer
feedback
echo <password> | su -c <command> <user> 

This is working.

link|improve this answer
feedback

I've got

ssh user@host bash -c "echo mypass | sudo -S mycommand"

Works for me.

link|improve this answer
feedback

For ssh you can use sshpass -p "password" ssh user@host sshpass works for me. You need to download sshpass firs :)

link|improve this answer
feedback

maybe you can use expect command, example

expect -c 'spawn ssh root@your-domain.com;expect password;send "your-password\n";interact

that's command give password automatically.

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.