Lucene search

K
openvasCopyright (C) 2009 Greenbone Networks GmbHOPENVAS:800837
HistoryJul 15, 2009 - 12:00 a.m.

Apache 'mod_deflate' Denial Of Service Vulnerability - July09

2009-07-1500:00:00
Copyright (C) 2009 Greenbone Networks GmbH
plugins.openvas.org
16

0.003 Low

EPSS

Percentile

64.3%

This host is running Apache HTTP Server and is prone to Denial of Service
vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_apache_mod_deflate_dos_vuln_jul09.nasl 7176 2017-09-18 12:01:01Z cfischer $
#
# Apache 'mod_deflate' Denial Of Service Vulnerability - July09
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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 = "Fixed in the SVN repository.
  http://svn.apache.org/viewvc?view=rev&revision=791454

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

tag_impact = "Successful exploitation will allow remote attackers to cause Denial of Service
  to the legitimate user by CPU consumption.
  Impact Level: Application";
tag_affected = "Apache HTTP Server version 2.2.11 and prior";
tag_insight = "The flaw is due to error in 'mod_deflate' module which can cause a high CPU
  load by requesting large files which are compressed and then disconnecting.";
tag_summary = "This host is running Apache HTTP Server and is prone to Denial of Service
  vulnerability.";

if(description)
{
  script_id(800837);
  script_version("$Revision: 7176 $");
  script_tag(name:"last_modification", value:"$Date: 2017-09-18 14:01:01 +0200 (Mon, 18 Sep 2017) $");
  script_tag(name:"creation_date", value:"2009-07-15 13:05:34 +0200 (Wed, 15 Jul 2009)");
  script_tag(name:"cvss_base", value:"7.1");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:N/A:C");
 script_tag(name:"qod_type", value:"remote_banner_unreliable");
  script_cve_id("CVE-2009-1891");
  script_bugtraq_id(35623);
  script_name("Apache 'mod_deflate' Denial Of Service Vulnerability - July09");

  script_xref(name : "URL" , value : "http://secunia.com/advisories/35781");
  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2009/1841");
  script_xref(name : "URL" , value : "https://rhn.redhat.com/errata/RHSA-2009-1148.html");
  script_xref(name : "URL" , value : "https://bugzilla.redhat.com/show_bug.cgi?id=509125");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
  script_family("Denial of Service");
  script_dependencies("secpod_apache_detect.nasl");
  script_require_ports("Services/www", 80);
  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);
  exit(0);
}


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

httpdPort = get_http_port(default:80);
if(!httpdPort){
  exit(0);
}

httpdVer = get_kb_item("www/" + httpdPort + "/Apache");

if(httpdVer != NULL)
{
  if(version_is_less_equal(version:httpdVer, test_version:"2.2.11")){
    security_message(httpdPort);
  }
}