Displaying 1 result from an estimated 1 matches for "pubkey_".
Did you mean:
pubkey
2014 Aug 04
1
Password authentication problem with 6.4p1 (and later) clients: An analysis
...artial success Boolean from the incoming message and will store it
into a variable called 'partial'. Then, in 6.4p1 and later,
'input_userauth_failure' will do the following:
if (partial != 0) {
logit("Authenticated with partial success.");
/* reset state */
pubkey_cleanup(authctxt);
pubkey_prepare(authctxt);
}
debug("Authentications that can continue: %s", authlist);
Before 6.4p1 the 'pubkey_cleanup' and 'pubkey_prepare' invocation were
missing. The undesirable behavior is introduced by 'pubkey_prepare'.
When invoked...