search for: auth_loop

Displaying 1 result from an estimated 1 matches for "auth_loop".

Did you mean: auth_log
2003 Oct 28
3
[Bug 749] Connection is dropped for invalid user
...al Priority: P2 Component: sshd AssignedTo: openssh-bugs at mindrot.org ReportedBy: Heinrich.Mislik at univie.ac.at If connecting to a server with an illegal userid und an rsa1 key, the connection is dropped immediatly. Normaly, a wrong username will stay in the auth_loop and keep requesting authentication from the user. The reason is in auth-rsa.c in line 293: /* no user given */ if (pw == NULL) return 0; Invalid users nolonger are passwd as NULL-pointers, a faked pw struct is used instead. This results in a call to temporarily_us...