How can you make SSH read the password from stdin, which it doesn't do by default?
|
You can't with most SSH clients. You can work around it with by using SSH API's, like Paramiko for Python. Be careful not to overrule all security policies. |
|||
|
|
|
An old post reviving... I found this one while looking for a solution to the exact same problem, I found something and I hope someone will one day find it useful:
This looks simple enough to be secure but did not check yet (just using in a local secure context). Here we are. |
||||
|
|
|
based on this post you can do: Create a command which open a ssh session using SSH_ASKPASS (seek SSH_ASKPASS on man ssh)
NOTE: To avoid ssh to try to ask on tty we use setsid Create a script which returns your password (note echo "echo)
Make them executable
try it
Keep in mind that ssh stands for secure shell, and if you store your user, host and password in plain text files you are misleading the tool an creating a possible security gap |
|||
|
|
|
FreeBSD mailing list recommends the expect library. If you need a programmatic ssh login, you really ought to be using public key logins, however -- obviously there are a lot fewer security holes this way as compared to using an external library to pass a password through |
|||
|
|