Changes

Linux Remote Shell Notes

501 bytes removed, 16:51, 5 March 2018
The following lines were added (+) and removed (-):
The OpenSSH ssh utility doesn't accept a password on the command line or on its standard input. I believe this is a deliberate decision on the part of the OpenSSH developers. You have these options available to you:The OpenSSH ssh utility doesn't accept a password on the command line or on its standard input. The nanny mentality whereby the developer protects us from ourselves by preventing us from doing something that compromises security, even though the result may be worse.    Use an SSH key for authentication, instead of a password.OPTIONS FOR SSH AUTOMATED    Use sshpass, expect, or a similar tool to automate responding to the password prompt.# Use an SSH key for authentication, instead of a password.    (ab)Use the SSH_ASKPASS feature to get ssh to get the password by running another program, described here or here, or in some of the answers here.# Use sshpass, expect, or a similar tool to automate responding to the password prompt.    Get the SSH server administrator to enable host-based authentication and use that. Note that host-based authentication is only suitable for certain network environments. See additional notes here and here.# Use the SSH_ASKPASS feature to get ssh to get the password by running another program.    Write your own ssh client using perl, python, java, or your favorite language. There are ssh client libraries available for most modern programming languages, and you'd have full control over how the client gets the password.# Use the insecure host-based authentication, sometimes common on private networks.    Download the ssh source code and build a modified version of ssh that works the way you want.# Use a custom or modified ssh client adapted from source code, or one that allows for stored password.    Use a different ssh client. There are other ssh clients available, both free and commercial. One of them might suit your needs better than the OpenSSH client.
Bureaucrat, administrator
16,195
edits