blob: f0b396a50c7661fc910be886a4275f7670357b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-response.c,v 1.2 2018/09/28 20:36:24 schmonz Exp $
Fix the security hole found by Matthew Dempsky.
From DJB in <https://marc.info/?l=djbdns&m=123613000920446&w=2>
--- response.c.orig 2001-02-11 16:11:45.000000000 -0500
+++ response.c
@@ -34,7 +34,7 @@ int response_addname(const char *d)
uint16_pack_big(buf,49152 + name_ptr[i]);
return response_addbytes(buf,2);
}
- if (dlen <= 128)
+ if ((dlen <= 128) && (response_len < 16384))
if (name_num < NAMES) {
byte_copy(name[name_num],dlen,d);
name_ptr[name_num] = response_len;
|