Displaying 2 results from an estimated 2 matches for "try_password_authentication".
2007 Jan 05
1
No warning message is displayed for "none" cipher
...t "none" cipher usage.
try_challenge_response_authentication() {
....
if (options.cipher == SSH_CIPHER_NONE)
logit("WARNING: Encryption is disabled! "
"Response will be transmitted in clear text.");
}
try_password_authentication() {
...
if (options.cipher == SSH_CIPHER_NONE)
logit("WARNING: Encryption is disabled! Password will be transmitted in clear text.");
}
But "none" cipher is skipped during "invalid" cipher testing and the actual cipher for the connection is set...
2008 Aug 15
2
SSH Command Line Password Support
.../automation.
I understand the possibility of avoiding passwords altogether by generating keys, but such an implementation of password on the command line should not be too difficult.
sshconnect2.c, for example, prompts for this on line 273. sshconnect1.c also does something similar in the function try_password_authentication(char *prompt)
Would it be possible for you to include this?
I would do it myself, however I've had problems compiling openssh.
If you are willing to help me compile open ssh, I am willing to work on this issue, which I see required for many people.
Thank you for all your work.