Lucene search

K
nessusThis script is Copyright (C) 2002-2018 Tenable Network Security, Inc.BIND9_DOS.NASL
HistoryJul 22, 2002 - 12:00 a.m.

ISC BIND < 9.2.1 rdataset Parameter Malformed DNS Packet DoS

2002-07-2200:00:00
This script is Copyright (C) 2002-2018 Tenable Network Security, Inc.
www.tenable.com
16

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

0.112 Low

EPSS

Percentile

95.2%

The remote BIND server, according to its version number, is vulnerable to a remote denial of service attack.

An attacker may use this flaw to prevent this service from working properly.

#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if (description)
{
 script_id(11051);
 script_version("1.26");
 script_cvs_date("Date: 2018/06/27 18:42:25");

 script_cve_id("CVE-2002-0400");
 script_bugtraq_id(4936);
 
 script_name(english:"ISC BIND < 9.2.1 rdataset Parameter Malformed DNS Packet DoS");
 script_summary(english:"Checks the remote BIND version");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote name server is vulnerable to a denial of service attack.");
 script_set_attribute(attribute:"description", value:
"The remote BIND server, according to its version number, 
is vulnerable to a remote denial of service attack.

An attacker may use this flaw to prevent this service from working
properly." );
 script_set_attribute(attribute:"solution", value:
"Upgrade to bind 9.2.1 or later." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
 script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"false");
 script_set_attribute(attribute:"plugin_publication_date", value: "2002/07/22");
 script_set_attribute(attribute:"vuln_publication_date", value: "2002/06/05");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:isc:bind");
 script_end_attributes();

 script_category(ACT_GATHER_INFO);
 script_copyright(english:"This script is Copyright (C) 2002-2018 Tenable Network Security, Inc.");
 script_family(english: "DNS");
 script_dependencie("bind_version.nasl");
 script_require_keys("bind/version");
 exit(0);
}


vers = get_kb_item("bind/version");
if(!vers)exit(0);

if(ereg(string:vers, pattern:"^9\.[01]\..*"))
{
 security_hole(53);
 exit(0);
}

if(ereg(string:vers, pattern:"^9\.2\.(0[^0-9]|1rc.*)"))
{
 security_hole(53);
 exit(0);
}
VendorProductVersionCPE
iscbindcpe:/a:isc:bind

5 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

0.112 Low

EPSS

Percentile

95.2%