Lucene search

K
openvasThis script is Copyright (C) 2011 Greenbone Networks GmbHOPENVAS:103233
HistoryAug 30, 2011 - 12:00 a.m.

Squid Proxy Gopher Remote Buffer Overflow Vulnerability

2011-08-3000:00:00
This script is Copyright (C) 2011 Greenbone Networks GmbH
plugins.openvas.org
58

0.951 High

EPSS

Percentile

99.1%

Squid Proxy is prone remote buffer-overflow vulnerability affects the
Gopher-to-HTML functionality.

An attacker can exploit this issue to execute arbitrary code with the
privileges of the vulnerable application. Failed exploit attempts will
result in a denial-of-service condition.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_squid_49356.nasl 3386 2016-05-25 19:06:55Z jan $
#
# Squid Proxy Gopher Remote Buffer Overflow Vulnerability
#
# Authors:
# Michael Meyer <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 = "Squid Proxy is prone remote buffer-overflow vulnerability affects the
Gopher-to-HTML functionality.

An attacker can exploit this issue to execute arbitrary code with the
privileges of the vulnerable application. Failed exploit attempts will
result in a denial-of-service condition.";

tag_solution = "The vendor released an update. Please see the references for more
information.";

if (description)
{
 script_id(103233);
 script_version("$Revision: 3386 $");
 script_tag(name:"last_modification", value:"$Date: 2016-05-25 21:06:55 +0200 (Wed, 25 May 2016) $");
 script_tag(name:"creation_date", value:"2011-08-30 14:29:55 +0200 (Tue, 30 Aug 2011)");
 script_tag(name:"cvss_base", value:"6.8");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
 script_tag(name:"qod_type", value:"remote_banner_unreliable");
  script_cve_id("CVE-2011-3205");
 script_bugtraq_id(49356);

 script_name("Squid Proxy Gopher Remote Buffer Overflow Vulnerability");

 script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/49356");
 script_xref(name : "URL" , value : "http://www.squid-cache.org/");
 script_xref(name : "URL" , value : "http://www.squid-cache.org/Advisories/SQUID-2011_3.txt");

 script_summary("Determine if installed Squid version is vulnerable");
 script_category(ACT_GATHER_INFO);
 script_family("Web application abuses");
 script_copyright("This script is Copyright (C) 2011 Greenbone Networks GmbH");
 script_dependencies("secpod_squid_detect.nasl");
 script_require_ports("Services/www", 3128,8080);
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
 exit(0);
}

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

port = get_http_port(default:3128);
if(!get_port_state(port))exit(0);

if(vers = get_version_from_kb(port:port,app:"Squid")) {

  if(version_in_range(version: vers, test_version: "3.2.0", test_version2: "3.2.0.10") ||
     version_is_less(version: vers, test_version: "3.1.15")) {
      security_message(port:port);
      exit(0);
  }

}

exit(0);