Lucene search

K
openvasThis script is Copyright (C) 2010 Greenbone Networks GmbHOPENVAS:100858
HistoryOct 19, 2010 - 12:00 a.m.

Apache 'mod_proxy_http' 2.2.9 for Unix Timeout Handling Information Disclosure Vulnerability

2010-10-1900:00:00
This script is Copyright (C) 2010 Greenbone Networks GmbH
plugins.openvas.org
52

0.003 Low

EPSS

Percentile

65.6%

Apache is prone to an information-disclosure vulnerability that
affects the ‘mod_proxy_http’ module.

Attackers can leverage this issue to gain access to sensitive
information that may aid in further attacks.

Apache 2.2.9 on Unix is vulnerable.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_apache_42102.nasl 7835 2017-11-20 15:03:10Z cfischer $
#
# Apache 'mod_proxy_http' 2.2.9 for Unix Timeout Handling Information Disclosure Vulnerability
#
# Authors:
# Michael Meyer <[email protected]>
#
# Copyright:
# Copyright (c) 2010 Greenbone Networks GmbH
#
# 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_summary = "Apache is prone to an information-disclosure vulnerability that
affects the 'mod_proxy_http' module.

Attackers can leverage this issue to gain access to sensitive
information that may aid in further attacks.

Apache 2.2.9 on Unix is vulnerable.";

tag_solution = "Updates are available. Please see the references for more information.";

if (description)
{
 script_id(100858);
 script_version("$Revision: 7835 $");
 script_tag(name:"last_modification", value:"$Date: 2017-11-20 16:03:10 +0100 (Mon, 20 Nov 2017) $");
 script_tag(name:"creation_date", value:"2010-10-19 12:49:22 +0200 (Tue, 19 Oct 2010)");
 script_bugtraq_id(42102);
 script_tag(name:"cvss_base", value:"5.0");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:N/A:N");
 script_tag(name:"qod_type", value:"remote_banner_unreliable");
  script_cve_id("CVE-2010-2791");

 script_name("Apache 'mod_proxy_http' 2.2.9 for Unix Timeout Handling Information Disclosure Vulnerability");


 script_category(ACT_GATHER_INFO);
 script_family("Web Servers");
 script_copyright("This script is Copyright (C) 2010 Greenbone Networks GmbH");
 script_dependencies("os_detection.nasl","secpod_apache_detect.nasl");
 script_require_ports("Services/www", 80);
 script_mandatory_keys("apache/installed", "Host/runs_unixoide");
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
 script_xref(name : "URL" , value : "https://www.securityfocus.com/bid/42102");
 script_xref(name : "URL" , value : "http://httpd.apache.org/security/vulnerabilities_22.html");
 script_xref(name : "URL" , value : "http://httpd.apache.org/");
 script_xref(name : "URL" , value : "http://permalink.gmane.org/gmane.comp.security.oss.general/3243");
 script_xref(name : "URL" , value : "http://svn.apache.org/viewvc?view=revision&revision=699841");
 script_xref(name : "URL" , value : "http://support.avaya.com/css/P8/documents/100109771");
 exit(0);
}

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

httpdPort = get_http_port(default:80);

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

if(httpdVer != NULL)
{
  if(version_is_equal(version:httpdVer, test_version:"2.2.9")){
    security_message(port:httpdPort);
    exit(0);
  }
}

exit(0);