search for: tisauthentication

Displaying 10 results from an estimated 10 matches for "tisauthentication".

Did you mean: otisauthentication
2000 Jun 11
0
Additions to UPGRADING?
...tExpireWarningDays, AllowForwardingPort, AllowForwardingTo, AllowHosts, AllowSHosts, AllowTcpForwarding, DenyForwardingPort, DenyForwardingTo, DenyHosts, DenySHosts, DenyTcpForwarding, ForcedEmptyPasswdChange, ForcedPasswdChange, IdleTimeout, IgnoreRootRhosts, PasswordExpireWarningDays, SilentDeny, TISAuthentication, and Umask options are not available in sshd_options. Similarly, the allowforwardingport, allowforwardingto, denyforwardingport, and denyforwardingto options are not available in authorized_keys. -- #include <disclaimer.h> /* Sten Drescher */ "This is the...
2000 Jan 01
3
OpenSSH protocol 1.6 proposal
On Sat, 1 Jan 2000, Brian Fundakowski Feldman wrote: > http://www.FreeBSD.org/~green/openssh.SHA-1.patch > MD5 (public_html/openssh.SHA-1.patch) = e21a896f59474a31ab3b9103acf44c35 > > P.S.: I realize other people may have proposed something very similar. > Indeed, markus's proposal may be something like this. However, > since it's impossible to work with anyone who
2001 Nov 04
2
OPIE patch for current CVS
.../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) { "kerberosauthentication", oKerberosAuthentication }, #endif diff -x CVS -wNur ../cvs/other/openssh_cvs/serv...
2001 Feb 19
1
Portable OpenSSH 2.5.1p1
...-t multiple -t force tty allocation b) Obsolete: DsaAuthentication (use PubkeyAuthentication instead) HostDsaKey (use HostKey) Identityfile2 (use Identityfile or -i) SkeyAuthentication (use ChallengeResponseAuthentication) TisAuthentication (use ChallengeResponseAuthentication) OpenSSH is brought to you by Markus Friedl, Niels Provos, Theo de Raadt, Kevin Steves, Damien Miller and Ben Lindstrom. -d -- | Damien Miler <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / dis...
2001 Feb 19
1
Portable OpenSSH 2.5.1p1
...-t multiple -t force tty allocation b) Obsolete: DsaAuthentication (use PubkeyAuthentication instead) HostDsaKey (use HostKey) Identityfile2 (use Identityfile or -i) SkeyAuthentication (use ChallengeResponseAuthentication) TisAuthentication (use ChallengeResponseAuthentication) OpenSSH is brought to you by Markus Friedl, Niels Provos, Theo de Raadt, Kevin Steves, Damien Miller and Ben Lindstrom. -d -- | Damien Miler <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / dis...
2003 Sep 21
11
[Bug 696] PAM modules getting bypassed when connecting from f-secure ssh client to openssh 3.7p1 or 3.7.1p1 servers
http://bugzilla.mindrot.org/show_bug.cgi?id=696 Summary: PAM modules getting bypassed when connecting from f- secure ssh client to openssh 3.7p1 or 3.7.1p1 servers Product: Portable OpenSSH Version: 3.7.1p1 Platform: Sparc OS/Version: Solaris Status: NEW Severity: minor Priority: P2
2000 Aug 25
1
[patch] configurable ssh_prng_cmds
...de "readconf.h" #include "match.h" +#include "entropy.h" #include "xmalloc.h" #include "compat.h" @@ -105,7 +106,8 @@ oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication, oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oIdentityFile2, - oGlobalKnownHostsFile2, oUserKnownHostsFile2, oDSAAuthentication + oGlobalKnownHostsFile2, oUserKnownHostsFile2, oDSAAuthentication, + oPrngCommandFile } OpCodes; /* Textual representations of the tokens. */ @@ -161...
2000 Mar 03
7
[PATCH] Add a Maximum Idle Time (1.2.2)
...EscapeChar ~ @@ -101,8 +102,8 @@ oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, - oCompressionLevel, oKeepAlives, oNumberOfPasswordPrompts, oTISAuthentication, - oUsePrivilegedPort, oLogLevel + oCompressionLevel, oKeepAlives, oTransmitInterlude, oNumberOfPasswordPrompts, + oTISAuthentication, oUsePrivilegedPort, oLogLevel } OpCodes; /* Textual representations of the tokens. */ @@ -148,6 +149,7 @@ { "compression", oCompression }, { &quot...
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...M_TIS + if (options->tis_authentication == -1) + options->tis_authentication = 1; +#endif if (options->permit_empty_passwd == -1) options->permit_empty_passwd = 0; if (options->use_login == -1) @@ -182,6 +189,9 @@ #ifdef SKEY sSkeyAuthentication, #endif +#ifdef PAM_TIS + sTISAuthentication, +#endif sPasswordAuthentication, sListenAddress, sPrintMotd, sPrintLastLog, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset, sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail, @@ -222,6 +232,9 @@ #ifdef SKEY { "skeyauthentication", sSkeyAuthentication }, #en...
2000 Dec 07
1
[PATCH] tis authserv support
...ho " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" diff -urN openssh-2.3.0p1/readconf.c openssh-2.3.0p1-tis/readconf.c --- openssh-2.3.0p1/readconf.c Sat Oct 14 07:23:12 2000 +++ openssh-2.3.0p1-tis/readconf.c Thu Dec 7 18:38:42 2000 @@ -313,7 +313,7 @@ goto parse_flag; case oTISAuthentication: - /* fallthrough, there is no difference on the client side */ + /* fallthrough */ case oSkeyAuthentication: intptr = &options->skey_authentication; goto parse_flag; diff -urN openssh-2.3.0p1/servconf.c openssh-2.3.0p1-tis/servconf.c --- openssh-2.3.0p1/servconf.c Mon Oct 16 03:14...