search for: mm_answer_pam_account

Displaying 3 results from an estimated 3 matches for "mm_answer_pam_account".

2006 Feb 12
1
sshd double-logging
...file: /usr/local/src/security/openssh/cvs/openssh_cvs/monitor.c,v retrieving revision 1.88 diff -u -p -r1.88 monitor.c --- monitor.c 5 Nov 2005 04:07:05 -0000 1.88 +++ monitor.c 12 Feb 2006 00:17:03 -0000 @@ -188,7 +188,7 @@ struct mon_table mon_dispatch_proto20[] {MONITOR_REQ_PAM_ACCOUNT, 0, mm_answer_pam_account}, {MONITOR_REQ_PAM_INIT_CTX, MON_ISAUTH, mm_answer_pam_init_ctx}, {MONITOR_REQ_PAM_QUERY, MON_ISAUTH, mm_answer_pam_query}, - {MONITOR_REQ_PAM_RESPOND, MON_ISAUTH, mm_answer_pam_respond}, + {MONITOR_REQ_PAM_RESPOND, MON_AUTH, mm_answer_pam_respond}, {MONITOR_REQ_PAM_FREE_CTX, M...
2005 Jun 09
0
[Bug 1053] The nonquery messages from PAM account aren't forwarded to user (privsep)
...#39;t forwarded to user when using privilege separation and the login succeeds. If the pam_acct_mgmt call fails the message is sent to user in the disconnect packet (proto 1) or as banner (proto 2) however it isn't sent at all if the call succeeds, because the loginmsg buffer is cleared in the mm_answer_pam_account call. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2004 Sep 07
0
Please review openssh patch for selinux
...penssh-3.9p1_selinux/monitor.c 2004-09-07 18:01:38.000000000 +0200 @@ -127,6 +127,10 @@ int mm_answer_sesskey(int, Buffer *); int mm_answer_sessid(int, Buffer *); +#ifdef WITH_SELINUX +int mm_answer_authrole(int, Buffer *); +#endif + #ifdef USE_PAM int mm_answer_pam_start(int, Buffer *); int mm_answer_pam_account(int, Buffer *); @@ -178,6 +182,9 @@ {MONITOR_REQ_AUTHSERV, MON_ONCE, mm_answer_authserv}, {MONITOR_REQ_AUTH2_READ_BANNER, MON_ONCE, mm_answer_auth2_read_banner}, {MONITOR_REQ_AUTHPASSWORD, MON_AUTH, mm_answer_authpassword}, +#ifdef WITH_SELINUX + {MONITOR_REQ_AUTHROLE, MON_ONCE, m...