]> git.ipfire.org Git - thirdparty/glibc.git/commit
CVE-2023-4527: Stack read overflow with large TCP responses in no-aaaa mode
authorFlorian Weimer <fweimer@redhat.com>
Wed, 13 Sep 2023 12:10:56 +0000 (14:10 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Wed, 13 Sep 2023 12:15:22 +0000 (14:15 +0200)
commitb7529346025a130fee483d42178b5c118da971bb
tree23865d7e5bf3dcaa8fc8c4412151f18fc8c3b697
parent1a7cbe52c8955beae477cf9c6d88f4bc04f626c1
CVE-2023-4527: Stack read overflow with large TCP responses in no-aaaa mode

Without passing alt_dns_packet_buffer, __res_context_search can only
store 2048 bytes (what fits into dns_packet_buffer).  However,
the function returns the total packet size, and the subsequent
DNS parsing code in _nss_dns_gethostbyname4_r reads beyond the end
of the stack-allocated buffer.

Fixes commit f282cdbe7f436c75864e5640a4 ("resolv: Implement no-aaaa
stub resolver option") and bug 30842.

(cherry picked from commit bd77dd7e73e3530203be1c52c8a29d08270cb25d)
NEWS
resolv/Makefile
resolv/nss_dns/dns-host.c
resolv/tst-resolv-noaaaa-vc.c [new file with mode: 0644]