Lucene search

K
openvasCopyright (C) 2008 Greenbone Networks GmbHOPENVAS:800064
HistoryNov 21, 2008 - 12:00 a.m.

Zope Python Scripts Local Denial of Service Vulnerability

2008-11-2100:00:00
Copyright (C) 2008 Greenbone Networks GmbH
plugins.openvas.org
10

EPSS

0.032

Percentile

91.3%

This host is running Zope, and is prone to Denial of Service
Vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_zope_python_scripts_dos_vuln_lin.nasl 5785 2017-03-30 09:19:35Z cfi $
#
# Zope Python Scripts Local Denial of Service Vulnerability
#
# Authors:
# Chandan S <[email protected]>
#
# Copyright:
# Copyright (c) 2008 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_solution = "Update Zope to higher version,
  http://www.zope.org/Products/Zope/
    or
  Apply available patch,
  http://www.zope.org/Products/Zope/Hotfix-2008-08-12/

  *****
  NOTE: Ignore this warning if above mentioned patch is already applied.
  *****";

tag_impact = "Successful exploitation allows remote authenticated users to cause
  denial of service or resource exhaustion.
  Impact Level: Application";
tag_affected = "Zope Versions 2.x - 2.11.2 on Linux.";
tag_insight = "Zope server allows improper strings to be passed via certain raise and
  import commands.";
tag_summary = "This host is running Zope, and is prone to Denial of Service
  Vulnerability.";

if(description)
{
  script_id(800064);
  script_version("$Revision: 5785 $");
  script_tag(name:"last_modification", value:"$Date: 2017-03-30 11:19:35 +0200 (Thu, 30 Mar 2017) $");
  script_tag(name:"creation_date", value:"2008-11-21 14:18:03 +0100 (Fri, 21 Nov 2008)");
  script_tag(name:"cvss_base", value:"4.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:S/C:N/I:N/A:P");
  script_cve_id("CVE-2008-5102");
  script_bugtraq_id(32267);
  script_name("Zope Python Scripts Local Denial of Service Vulnerability");
  script_xref(name : "URL" , value : "http://www.zope.org/advisories/advisory-2008-08-12");
  script_xref(name : "URL" , value : "http://www.zope.org/Products/Zope/Hotfix-2008-08-12/README.txt");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2008 Greenbone Networks GmbH");
  script_family("Denial of Service");
  script_require_ports("Services/www", 8080);
  script_dependencies("gb_get_http_banner.nasl");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name:"qod_type", value:"executable_version");
  script_tag(name:"solution_type", value:"VendorFix");
  script_mandatory_keys("zope/banner");
  exit(0);
}

include("http_func.inc");
include("version_func.inc");

port = get_http_port(default:8080);

banner = get_http_banner(port:port);
if(!banner) exit(0);

zopeVer = eregmatch(pattern:"Zope ([0-9.]+)", string:banner);
if(zopeVer != NULL)
{
  if(version_in_range(version:zopeVer[1], test_version:"2.0", test_version2:"2.11.2")){
    security_message(port);
  }
}

EPSS

0.032

Percentile

91.3%