search for: monitor_reset_key_st

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

2002 Jun 25
0
[Bug 290] New: auth_method set incorrectly in mm_answer_keyverify()
...used). Hostbased authentication is disabled in my config file. Figuring this was a logging bug, I went hunting in the code. In mm_answer_keyverify() is the line: auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased"; But this line occurs *after* the call to monitor_reset_key_state(), which sets key_blobtype to MM_NOKEY. Moving the auth_method assignment before the call to monitor_reset_key_state() fixed the problem. I don't think anything else bad happens because of this bug, but I don't know the code well enough to be sure. I also don't think there are...
2002 Jun 22
2
[Bug 284] Hostbased authentication erroneously reported
...BSD_3_0: 1.11.0.2 OPENBSD_3_1: 1.9.0.2 OPENBSD_3_1_BASE: 1.9 keyword substitution: kv total revisions: 22; selected revisions: 1 description: ---------------------------- revision 1.17 date: 2002/06/22 23:09:51; author: stevesk; state: Exp; lines: +3 -3 save auth method before monitor_reset_key_state(); bugzilla bug #284; ok provos@ ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2006 Nov 15
11
OpenSSH Certkey (PKI)
...a); - auth_method = key_blobtype == MM_USERKEY ? "publickey" : "hostbased"; + if (key_blobtype == MM_CERTKEY) + auth_method = "certkey"; + else if (key_blobtype == MM_USERKEY) + auth_method = "publickey"; + else + auth_method = "hostbased"; monitor_reset_key_state(); Index: monitor_wrap.c =================================================================== RCS file: /cvs/src/usr.bin/ssh/monitor_wrap.c,v retrieving revision 1.54 diff -u -r1.54 monitor_wrap.c --- monitor_wrap.c 12 Aug 2006 20:46:46 -0000 1.54 +++ monitor_wrap.c 15 Nov 2006 14:14:35 -0000 @...