Displaying 2 results from an estimated 2 matches for "tis_via_pam".
2001 Oct 09
1
TISviaPAM patch
Here is a patch that does TIS auth via PAM. It's controlled by a switch
in the sshd_config. You'd use it by having a PAM module that sets
PAM_PROMPT_ECHO_ON. eg, you could use it with pam_skey or pam_smxs.
The patch is against the 2.9.9p2 distribution.
I'm not on the list, a reply if this patch is accepted would be great.
(But not required, I know some folks have a distaste for
2002 Feb 15
0
[Bug 118] New: Implement TIS (protocol 1) via PAM
...ed(HAVE_OSF_SIA)
/* Do SIA auth with password */
authenticated = auth_sia_password(authctxt->user,
@@ -269,6 +270,15 @@
case SSH_CMSG_AUTH_TIS:
debug("rcvd SSH_CMSG_AUTH_TIS");
if (options.challenge_response_authentication == 1) {
+#ifdef USE_PAM
+ if (options.tis_via_pam == 1) {
+ authenticated = auth_pam_password(pw, "",
+ PAM_PROMPT_ECHO_ON);
+ break;
+ } else {
+#else
+ {
+#endif /* USE_PAM */
char *challenge = get_challenge(authctxt);
if (challenge != NULL) {
debug("sending challenge '%s'", c...