mirror of git://anongit.mindrot.org/openssh.git
upstream commit
Remove "POSSIBLE BREAK-IN ATTEMPT!" from log message about forward and reverse DNS not matching. We haven't supported IP-based auth methods for a very long time so it's now misleading. part of bz#2585, ok markus@ Upstream-ID: 5565ef0ee0599b27f0bd1d3bb1f8a323d8274e29
This commit is contained in:
parent
57b4ee04ca
commit
e690fe8575
7
auth.c
7
auth.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: auth.c,v 1.114 2016/03/07 19:02:43 djm Exp $ */
|
/* $OpenBSD: auth.c,v 1.115 2016/06/15 00:40:40 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
*
|
*
|
||||||
|
@ -857,7 +857,7 @@ remote_hostname(struct ssh *ssh)
|
||||||
hints.ai_socktype = SOCK_STREAM;
|
hints.ai_socktype = SOCK_STREAM;
|
||||||
if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
|
if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
|
||||||
logit("reverse mapping checking getaddrinfo for %.700s "
|
logit("reverse mapping checking getaddrinfo for %.700s "
|
||||||
"[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop);
|
"[%s] failed.", name, ntop);
|
||||||
return strdup(ntop);
|
return strdup(ntop);
|
||||||
}
|
}
|
||||||
/* Look for the address from the list of addresses. */
|
/* Look for the address from the list of addresses. */
|
||||||
|
@ -872,8 +872,7 @@ remote_hostname(struct ssh *ssh)
|
||||||
if (ai == NULL) {
|
if (ai == NULL) {
|
||||||
/* Address not found for the host name. */
|
/* Address not found for the host name. */
|
||||||
logit("Address %.100s maps to %.600s, but this does not "
|
logit("Address %.100s maps to %.600s, but this does not "
|
||||||
"map back to the address - POSSIBLE BREAK-IN ATTEMPT!",
|
"map back to the address.", ntop, name);
|
||||||
ntop, name);
|
|
||||||
return strdup(ntop);
|
return strdup(ntop);
|
||||||
}
|
}
|
||||||
return strdup(name);
|
return strdup(name);
|
||||||
|
|
Loading…
Reference in New Issue