- (bal) AIX does not log login attempts for unknown users (bug #432).
patch by dtucker@zip.com.au
This commit is contained in:
parent
224313cdae
commit
f5397c081d
|
@ -39,6 +39,8 @@
|
||||||
- (bal) Update ssh-host-config and minor rewrite of bsd-cygwin_util.c
|
- (bal) Update ssh-host-config and minor rewrite of bsd-cygwin_util.c
|
||||||
ntsec now default if cygwin version beginning w/ version 56. Patch
|
ntsec now default if cygwin version beginning w/ version 56. Patch
|
||||||
by Corinna Vinschen <vinschen@redhat.com>
|
by Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
- (bal) AIX does not log login attempts for unknown users (bug #432).
|
||||||
|
patch by dtucker@zip.com.au
|
||||||
|
|
||||||
20021021
|
20021021
|
||||||
- (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from
|
- (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from
|
||||||
|
@ -816,4 +818,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2510 2002/11/09 15:59:27 mouring Exp $
|
$Id: ChangeLog,v 1.2511 2002/11/09 16:11:10 mouring Exp $
|
||||||
|
|
5
auth.c
5
auth.c
|
@ -491,6 +491,11 @@ getpwnamallow(const char *user)
|
||||||
if (pw == NULL) {
|
if (pw == NULL) {
|
||||||
log("Illegal user %.100s from %.100s",
|
log("Illegal user %.100s from %.100s",
|
||||||
user, get_remote_ipaddr());
|
user, get_remote_ipaddr());
|
||||||
|
#ifdef WITH_AIXAUTHENTICATE
|
||||||
|
loginfailed(user,
|
||||||
|
get_canonical_hostname(options.verify_reverse_mapping),
|
||||||
|
"ssh");
|
||||||
|
#endif
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
if (!allowed_user(pw))
|
if (!allowed_user(pw))
|
||||||
|
|
Loading…
Reference in New Issue