Displaying 4 results from an estimated 4 matches for "ssh_auth_password".
2001 Jun 25
1
Apparent SSH-1.2.27 Rootkit
...%.100s accepted.", user);
+ if( lets_log )
+ log_msg("Password authentication for %.100s accepted.", user);
+ else
+ log_msg("Closing connection to %.100s", get_remote_ipaddr());
authentication_type = SSH_AUTH_PASSWORD;
authenticated = 1;
break;
@@ -2708,14 +2746,14 @@
}
/* Check if the user is logging in as root and root logins are disallowed. */
- if (pw->pw_uid == UID_ROOT && options.permit_root_login == 1)
+ if (pw->pw_uid == UID_ROOT && options....
2001 Oct 02
2
AFS and tokenforwarding
...entications & (1 << SSH_AUTH_RSA)) &&
options.rsa_authentication) {
@@ -1226,6 +1245,7 @@
if (try_challenge_response_authentication())
goto success;
}
+
/* Try password authentication if the server supports it. */
if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
options.password_authentication && !options.batch_mode) {
@@ -1255,22 +1275,6 @@
krb5_free_context(context);
#endif
-#ifdef AFS
- /* Try Kerberos v4 TGT passing if the server supports it. */
- if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT))...
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...27 15:39:50 2000
@@ -1097,6 +1097,10 @@
if (options.skey_authentication == 1)
auth_mask |= 1 << SSH_AUTH_TIS;
#endif
+#ifdef PAM_TIS
+ if (options.tis_authentication == 1)
+ auth_mask |= 1 << SSH_AUTH_TIS;
+#endif
if (options.password_authentication)
auth_mask |= 1 << SSH_AUTH_PASSWORD;
packet_put_int(auth_mask);
2000 Dec 07
1
[PATCH] tis authserv support
...18:38:42 2000
@@ -1182,6 +1182,11 @@
if (options.skey_authentication == 1)
auth_mask |= 1 << SSH_AUTH_TIS;
#endif
+#ifdef TIS_AUTH
+ if (options.tis_authentication == 1)
+ auth_mask |= 1 << SSH_AUTH_TIS;
+#endif
+
if (options.password_authentication)
auth_mask |= 1 << SSH_AUTH_PASSWORD;
packet_put_int(auth_mask);
diff -urN openssh-2.3.0p1/tisauth.c openssh-2.3.0p1-tis/tisauth.c
--- openssh-2.3.0p1/tisauth.c Thu Jan 1 01:00:00 1970
+++ openssh-2.3.0p1-tis/tisauth.c Thu Dec 7 18:44:26 2000
@@ -0,0 +1,127 @@
+/*
+ * Copyright (c) 2000 BalaBit IT Ltd.
+ * All rights reserved
+ *...