Displaying 5 results from an estimated 5 matches for "ochallengeresponseauthentication".
Did you mean:
challengeresponseauthentication
2001 Nov 04
2
OPIE patch for current CVS
...ISPLAY hack: $DISPLAY_HACK_MSG"
diff -x CVS -wNur ../cvs/other/openssh_cvs/readconf.c openssh_cvs/readconf.c
--- ../cvs/other/openssh_cvs/readconf.c Wed Oct 3 19:39:39 2001
+++ openssh_cvs/readconf.c Sun Nov 4 01:44:19 2001
@@ -141,6 +141,7 @@
{ "challengeresponseauthentication", oChallengeResponseAuthentication },
{ "skeyauthentication", oChallengeResponseAuthentication }, /* alias */
{ "tisauthentication", oChallengeResponseAuthentication }, /* alias */
+ { "opieauthentication", oChallengeResponseAuthentication }, /* alias */
#if defined(KRB4) || defined(KRB5)
{ &qu...
2015 Mar 19
0
[Bug 1604] SCTP support for openssh
...--------------------
CC| |Bert.Wesarg at googlemail.com
--- Comment #11 from Bert Wesarg <Bert.Wesarg at googlemail.com> ---
--- a/readconf.c
+++ b/readconf.c
@@ -130,6 +130,9 @@ typedef enum {
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward,
oLocalForward,
+#ifdef SCTP
+ oTransport,
+#endif
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP,...
2015 Sep 28
4
[Bug 2475] New: Login failure when PasswordAuthentication, ChallengeResponseAuthentication, and PermitEmptyPasswords are all enabled
...e failure.
Originally seen on an embedded Linux system running version 7.1p1, but
have reproduced on Ubuntu 14.04 / OpenSSH-6.6.1p1 and RHEL6.5 /
OpenSSH-5.3p1.
Used the following command lines to reproduce on the Linux systems:
Server:
/usr/sbin/sshd -Dddd -p 44444 -oPasswordAuthentication=yes
-oChallengeResponseAuthentication=yes -opermitemptypasswords=yes
debug1: PAM: establishing credentials
PAM: pam_setcred(): Failure setting user credentials
debug1: do_cleanup
debug3: PAM: sshpam_thread_cleanup entering
Client:
ssh -vvv localhost -oPubkeyAuthentication=no -p 44444 -l xxxx
debug1: Authentication succeeded (keyboa...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...har *user; /* User to log in as. */
int escape_char; /* Escape character; -2 = none */
Index: readconf.c
--- openssh-3.8p1.orig/readconf.c (.../.transvn:beginning) (revision 25)
+++ openssh-3.8p1/readconf.c (revision 25)
@@ -93,7 +93,8 @@
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
- oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+ oUser, oHost, oEscapeChar, oRhostsRSAAuthentication,
+ oOpenCommand, oCloseCommand, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownH...
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...47 ++++++++++++++++--
9 files changed, 375 insertions(+), 5 deletions(-)
create mode 100644 regress/ssh-cert.sh
diff --git a/readconf.c b/readconf.c
index f1c860b..b34213d 100644
--- a/readconf.c
+++ b/readconf.c
@@ -135,6 +135,7 @@ typedef enum {
oPasswordAuthentication, oRSAAuthentication,
oChallengeResponseAuthentication, oXAuthLocation,
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
+ oCertificateFile,
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oComp...