Lucene search

K
nessusCopyright (C) 2005-2018 Josh Zlatin-AmishavVENTRILO_DOS.NASL
HistorySep 19, 2005 - 12:00 a.m.

Ventrilo Server Malformed Status Query Remote DoS

2005-09-1900:00:00
Copyright (C) 2005-2018 Josh Zlatin-Amishav
www.tenable.com
26

CVSS2

5

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

EPSS

0.087

Percentile

94.5%

A malicious user can crash the remote version of Ventrilo due to a vulnerability in the way the server handles malformed status queries.

#
# Josh Zlatin-Amishav and Boaz Shatz
# GPLv2
#


include("compat.inc");

if(description)
{
 script_id(19757);
 script_version ("1.17");

 script_cve_id("CVE-2005-2719");
 script_bugtraq_id(14644);

 name["english"] = "Ventrilo Server Malformed Status Query Remote DoS";
 script_name(english:name["english"]);

 script_set_attribute(attribute:"synopsis", value:
"The remote Ventrilo service can be disabled remotely." );
 script_set_attribute(attribute:"description", value:
"A malicious user can crash the remote version of Ventrilo due to a 
vulnerability in the way the server handles malformed status queries." );
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/fulldisclosure/2005/Aug/760");
 script_set_attribute(attribute:"solution", value:
"Unknown at this time." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"true");
 script_set_attribute(attribute:"plugin_publication_date", value: "2005/09/19");
 script_set_attribute(attribute:"vuln_publication_date", value: "2005/08/23");
 script_cvs_date("Date: 2018/11/15 20:50:21");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();


 summary["english"] = "Sends malformed status query requests";
 script_summary(english:summary["english"]);

 script_category(ACT_GATHER_INFO);

 script_copyright(english:"Copyright (C) 2005-2018 Josh Zlatin-Amishav");
 family["english"] = "Denial of Service";
 script_family(english:family["english"]);
 script_dependencie("ventrilo_detect.nasl");
 script_require_keys("Ventrilo/version");
 script_require_ports("Services/ventrilo");

 exit(0);
}

# Make sure we're really looking at a Ventrilo server.
version = get_kb_item("Ventrilo/version");
if ( ! version ) exit(0);

port = get_kb_item("Services/ventrilo");
if (!port) exit(0);

if ( ereg(pattern:"^2\.(1\.[2-9]|2\.|3\.0($|[^0-9.]))", string:version) )
{
    security_warning(port:port, proto:"udp");
}

CVSS2

5

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

EPSS

0.087

Percentile

94.5%

Related for VENTRILO_DOS.NASL