public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
@ 2012-04-01 20:16 nagle at sitetruth dot com
  2012-04-01 21:06 ` [Bug network/13935] " nagle at sitetruth dot com
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: nagle at sitetruth dot com @ 2012-04-01 20:16 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

             Bug #: 13935
           Summary: getaddrinfo NXDOMAIN hijack exploit for hosts with
                    two-component hostnames
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: network
        AssignedTo: unassigned@sourceware.org
        ReportedBy: nagle@sitetruth.com
    Classification: Unclassified


The default behavior of getaddrinfo results in a way to hijack failed
(NXDOMAIN) domain lookups. 

The man page for resolv.conf(5) says:


domain Local domain name.

Most queries for names within this domain can use short names relative to the
local domain. If no domain entry is present, the domain is determined from the
local hostname returned by gethostname(2); the domain part is taken to be
everything after the first '.'. Finally, if the hostname does not contain a
domain part, the root domain is assumed. 


Therein lies the problem.  The default case is exploitable.  If a server has a
domain name "companyname.com", the domain part, "everything after the first
'.'", is "com".  So failed a failed lookup of "xyz.com" is retried as
"xyz.com.com".  

The proprietors of "com.com" have chosen to exploit this by using a wildcard
DNS A record for "*.com.com", and redirecting the traffic thus captured to
(inevitably) an ad-heavy site.  Visit "gnu.com.com", for example.  

This problem is most visible when the hostname has two components, and the TLD
is ".com".  Most hosting services use long generated host names, such as
"gator123.hostgator.com", and so their default base domain is "hostgator.com". 
This is less exploitable.  There are "net.net" and "org.org" domains, but they
are not currently capturing undefined subdomains.  There may be other exploits
in the country

I suggest that the default behavior be changed.  Consider defaulting "ndots" to
0, or at least don't use the default domain for searches unless it has more
than a TLD.  

First reported in December 2011 at

http://serverfault.com/questions/341383/possible-nxdomain-hijacking

by a user who was puzzled that his two seemingly identical test and production
servers behaved differently.  For me, it's caused a web crawler to misidentify
nonexistent domains.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
@ 2012-04-01 21:06 ` nagle at sitetruth dot com
  2012-04-01 22:20 ` nagle at sitetruth dot com
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: nagle at sitetruth dot com @ 2012-04-01 21:06 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

John Nagle <nagle at sitetruth dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nagle at sitetruth dot com

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
  2012-04-01 21:06 ` [Bug network/13935] " nagle at sitetruth dot com
@ 2012-04-01 22:20 ` nagle at sitetruth dot com
  2012-04-02 17:35 ` ppluzhnikov at google dot com
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: nagle at sitetruth dot com @ 2012-04-01 22:20 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

--- Comment #1 from John Nagle <nagle at sitetruth dot com> 2012-04-01 22:20:09 UTC ---
See more details, including a strace log, at

http://centos.org/modules/newbb/viewtopic.php?topic_id=36693&forum=59

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
  2012-04-01 21:06 ` [Bug network/13935] " nagle at sitetruth dot com
  2012-04-01 22:20 ` nagle at sitetruth dot com
@ 2012-04-02 17:35 ` ppluzhnikov at google dot com
  2012-04-04  2:51 ` nagle at sitetruth dot com
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ppluzhnikov at google dot com @ 2012-04-02 17:35 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

Paul Pluzhnikov <ppluzhnikov at google dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppluzhnikov at google dot
                   |                            |com

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (2 preceding siblings ...)
  2012-04-02 17:35 ` ppluzhnikov at google dot com
@ 2012-04-04  2:51 ` nagle at sitetruth dot com
  2012-08-24 10:48 ` scorneli at redhat dot com
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: nagle at sitetruth dot com @ 2012-04-04  2:51 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

--- Comment #2 from John Nagle <nagle at sitetruth dot com> 2012-04-04 02:50:46 UTC ---
SOME HISTORY

This problem was addressed back in 1993 in RFC 1535, "A Security Problem and
Proposed Correction With Widely Deployed DNS Software".  Back then, DNS
resolution involved chopping off one element at a time of the local hosts'
domain and appending that to the query until a match was found.  This allowed
attacks on domains with more than two elements.  That's where the current
restrictions come from.   

RFC 1535 says "At a minimum, DNS resolvers must honor the BOUNDARY between
local and public administration, by limiting any search lists to locally-
administered portions of the Domain Name space."

It then goes on:

"DNS Name resolver software SHOULD NOT use implicit search lists in
attempts to resolve partial names into absolute FQDNs other than the
hosts's immediate parent domain.

Resolvers which continue to use implicit search lists MUST limit
their scope to locally administered sub-domains."

Those two statement are in conflict when a host has a name such as 
"example.com".  The "immediate parent domain" is "com", but it is not
a "locally administered subdomain".  Since the second sentence is a MUST,
while the first sentence is a SHOULD, the second sentence controls.
Thus, to conform to RFC 1535, the search path should never default to a TLD.
glibc is not in compliance.

That RFC was written in 1993, before domains were ever offered for sale. A
world in which most domains were second level was not envisioned at the time. 
That's probably why the authors of the RFC didn't think of this. 

WORKAROUNDS, FAILURE OF

This is a tough problem to work around without changing host names.  Adding
commands to /etc/resolv.conf tends to cause problems, because, in modern Linux
systems, that file is usually generated by system administration software.  

Editing /etc/resolv.conf is not particularly helpful, anyway. 
Adding a blank "search" command does not delete the implicit search path.
(That behavior comes from lines 267-268 in res_init.c, which, for a blank 
"search" line, does nothing.  The code in that area seems to be set up so that
there is always an alternate search path of some kind, either from SEARCH
statement in resolv.conf, a DOMAIN statement, an environment variable, or
the host name of the host.

Nor does setting "ndots:0" have that effect.  Setting "domain" in
/etc/resolv.conf to a value with an invalid TLD might work, but could confuse
other parts of the system.  "no_tld_query" only applies to inputs with no dots
(I think) so that doesn't help, either. 

EFFECT

The effect of all this is that you can't trust "getaddrinfo" or "gethostbyname"
to do an honest DNS lookup.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (3 preceding siblings ...)
  2012-04-04  2:51 ` nagle at sitetruth dot com
@ 2012-08-24 10:48 ` scorneli at redhat dot com
  2012-08-24 16:46 ` nagle at sitetruth dot com
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: scorneli at redhat dot com @ 2012-08-24 10:48 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

Stefan Cornelius <scorneli at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |scorneli at redhat dot com

--- Comment #3 from Stefan Cornelius <scorneli at redhat dot com> 2012-08-24 10:47:35 UTC ---
Are there any plans to fix this soon?

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (4 preceding siblings ...)
  2012-08-24 10:48 ` scorneli at redhat dot com
@ 2012-08-24 16:46 ` nagle at sitetruth dot com
  2012-08-24 17:31 ` law at redhat dot com
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: nagle at sitetruth dot com @ 2012-08-24 16:46 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

--- Comment #4 from John Nagle <nagle at sitetruth dot com> 2012-08-24 16:46:14 UTC ---
This bug was filed before the vast expansion of TLDs.  There may be new
exploits possible once there are hundreds of new TLDs.  One implication of all
the new TLDs is that single-word domains (especially corporate domains, like
WALMART) may have to be resolved on a routine basis.  

This has been discussed in the browser community, but it has implications here,
too.  

I'm not sure what to do here, but someone needs to be coming up with a standard
solution to this.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (5 preceding siblings ...)
  2012-08-24 16:46 ` nagle at sitetruth dot com
@ 2012-08-24 17:31 ` law at redhat dot com
  2012-11-03 17:01 ` karme at karme dot de
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: law at redhat dot com @ 2012-08-24 17:31 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

law at redhat dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at redhat dot com

--- Comment #5 from law at redhat dot com 2012-08-24 17:30:50 UTC ---
John, one of the suggestions was to enhance glibc to have the option to avoid
appending domains to failed lookups.  I'd think a new resolv.conf option rather
than using something like an empty "search" specification would be better.

If anyone knows if Solaris or other systems have invented such a mechanism, now
would be a good time to know so we can try to be configuration file compatible.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (6 preceding siblings ...)
  2012-08-24 17:31 ` law at redhat dot com
@ 2012-11-03 17:01 ` karme at karme dot de
  2013-09-12  8:35 ` berend.de.schouwer at gmail dot com
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: karme at karme dot de @ 2012-11-03 17:01 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=13935

karme at karme dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |karme at karme dot de

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (7 preceding siblings ...)
  2012-11-03 17:01 ` karme at karme dot de
@ 2013-09-12  8:35 ` berend.de.schouwer at gmail dot com
  2014-02-16 19:42 ` jackie.rosen at hushmail dot com
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: berend.de.schouwer at gmail dot com @ 2013-09-12  8:35 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Berend <berend.de.schouwer at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |berend.de.schouwer at gmail dot co
                   |                            |m

--- Comment #6 from Berend <berend.de.schouwer at gmail dot com> ---
As a workaround you can try 'domain .'  WorksForMe(tm); but the file does get
overwritten by NetworkManager.

getdomainname(2) still returns the actual domainname, in my simplistic tests.

I stumbled across this from a slightly different angle:
- the corporate network sets the hostname.
- connecting over a non-corporate network then keeps the machine hostname, but
'search ...' is blank.
- externally the corporate network then ends up giving wildcards when there's a
failed lookup.

The end result is the same: typos result in answers rather than NXDOMAIN.

I'm for disabling implicit search lists if 'search ...' is blank.  I'll add
network-specific search lists as I connect.

(I also want the corporate DNS to not do this -- and have queried that
internally, but DNS lookups end me on sedoparking eventually)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (8 preceding siblings ...)
  2013-09-12  8:35 ` berend.de.schouwer at gmail dot com
@ 2014-02-16 19:42 ` jackie.rosen at hushmail dot com
  2014-05-28 19:43 ` schwab at sourceware dot org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: jackie.rosen at hushmail dot com @ 2014-02-16 19:42 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Jackie Rosen <jackie.rosen at hushmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackie.rosen at hushmail dot com

--- Comment #7 from Jackie Rosen <jackie.rosen at hushmail dot com> ---
*** Bug 260998 has been marked as a duplicate of this bug. ***
Seen from the domain http://volichat.com
Page where seen: http://volichat.com/adult-chat-rooms
Marked for reference. Resolved as fixed @bugzilla.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (9 preceding siblings ...)
  2014-02-16 19:42 ` jackie.rosen at hushmail dot com
@ 2014-05-28 19:43 ` schwab at sourceware dot org
  2014-06-25 11:24 ` fweimer at redhat dot com
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: schwab at sourceware dot org @ 2014-05-28 19:43 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Andreas Schwab <schwab at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|jackie.rosen at hushmail dot com   |

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (10 preceding siblings ...)
  2014-05-28 19:43 ` schwab at sourceware dot org
@ 2014-06-25 11:24 ` fweimer at redhat dot com
  2020-06-22 13:40 ` fweimer at redhat dot com
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: fweimer at redhat dot com @ 2014-06-25 11:24 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fweimer at redhat dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (11 preceding siblings ...)
  2014-06-25 11:24 ` fweimer at redhat dot com
@ 2020-06-22 13:40 ` fweimer at redhat dot com
  2020-06-22 13:43 ` carlos at redhat dot com
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: fweimer at redhat dot com @ 2020-06-22 13:40 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |DUPLICATE
              Flags|                            |security-
             Status|NEW                         |RESOLVED

--- Comment #8 from Florian Weimer <fweimer at redhat dot com> ---
I'm closing this in favor of bug 25163. The challenge here is that many
Kubernetes deployments require the current flavor of search list processing.

*** This bug has been marked as a duplicate of bug 25163 ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (12 preceding siblings ...)
  2020-06-22 13:40 ` fweimer at redhat dot com
@ 2020-06-22 13:43 ` carlos at redhat dot com
  2020-06-22 13:44 ` fweimer at redhat dot com
  2020-06-22 13:58 ` schwab@linux-m68k.org
  15 siblings, 0 replies; 17+ messages in thread
From: carlos at redhat dot com @ 2020-06-22 13:43 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Carlos O'Donell <carlos at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://bugzilla.redhat.com
                   |                            |/show_bug.cgi?id=851671
         Resolution|DUPLICATE                   |FIXED
                 CC|                            |carlos at redhat dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (13 preceding siblings ...)
  2020-06-22 13:43 ` carlos at redhat dot com
@ 2020-06-22 13:44 ` fweimer at redhat dot com
  2020-06-22 13:58 ` schwab@linux-m68k.org
  15 siblings, 0 replies; 17+ messages in thread
From: fweimer at redhat dot com @ 2020-06-22 13:44 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://bugzilla.redhat.com
                   |                            |/show_bug.cgi?id=1761888

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug network/13935] getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames
  2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
                   ` (14 preceding siblings ...)
  2020-06-22 13:44 ` fweimer at redhat dot com
@ 2020-06-22 13:58 ` schwab@linux-m68k.org
  15 siblings, 0 replies; 17+ messages in thread
From: schwab@linux-m68k.org @ 2020-06-22 13:58 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=13935

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |DUPLICATE

--- Comment #9 from Andreas Schwab <schwab@linux-m68k.org> ---


*** This bug has been marked as a duplicate of bug 25163 ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2020-06-22 13:58 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-01 20:16 [Bug network/13935] New: getaddrinfo NXDOMAIN hijack exploit for hosts with two-component hostnames nagle at sitetruth dot com
2012-04-01 21:06 ` [Bug network/13935] " nagle at sitetruth dot com
2012-04-01 22:20 ` nagle at sitetruth dot com
2012-04-02 17:35 ` ppluzhnikov at google dot com
2012-04-04  2:51 ` nagle at sitetruth dot com
2012-08-24 10:48 ` scorneli at redhat dot com
2012-08-24 16:46 ` nagle at sitetruth dot com
2012-08-24 17:31 ` law at redhat dot com
2012-11-03 17:01 ` karme at karme dot de
2013-09-12  8:35 ` berend.de.schouwer at gmail dot com
2014-02-16 19:42 ` jackie.rosen at hushmail dot com
2014-05-28 19:43 ` schwab at sourceware dot org
2014-06-25 11:24 ` fweimer at redhat dot com
2020-06-22 13:40 ` fweimer at redhat dot com
2020-06-22 13:43 ` carlos at redhat dot com
2020-06-22 13:44 ` fweimer at redhat dot com
2020-06-22 13:58 ` schwab@linux-m68k.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).