Lucene search

K
openvasCopyright (C) 2009 SecPodOPENVAS:900380
HistoryJun 26, 2009 - 12:00 a.m.

Google Chrome Web Script Execution Vulnerabilities - Jun09

2009-06-2600:00:00
Copyright (C) 2009 SecPod
plugins.openvas.org
13

0.004 Low

EPSS

Percentile

72.2%

This host has Google Chrome installed and is prone to buffer
overflow vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_google_chrome_bof_vuln_jun09.nasl 7585 2017-10-26 15:03:01Z cfischer $
#
# Google Chrome Browser Kernel Buffer Overflow Vulnerability - Jun09
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 SecPod, http://www.secpod.com
#
# 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_impact = "Successful exploitation will allow attacker to execute arbitrary code, and
  can cause Denial of Service or compromise a user's system.
  Impact Level: Application";
tag_affected = "Google Chrome version prior to 2.0.172.33 on Windows.";
tag_insight = "The flaw is due to an error when handling unspecified HTTP responses.
  This can be exploited to cause a buffer overflow via a specially crafted HTTP
  response received from an HTTP server.";
tag_solution = "Upgrade to version 2.0.172.33 or later
  http://www.google.com/chrome";
tag_summary = "This host has Google Chrome installed and is prone to buffer
  overflow vulnerability.";

if(description)
{
  script_id(900380);
  script_version("$Revision: 7585 $");
  script_tag(name:"last_modification", value:"$Date: 2017-10-26 17:03:01 +0200 (Thu, 26 Oct 2017) $");
  script_tag(name:"creation_date", value:"2009-06-26 07:55:21 +0200 (Fri, 26 Jun 2009)");
  script_tag(name:"cvss_base", value:"9.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_cve_id("CVE-2009-2121");
  script_bugtraq_id(35462);
  script_name("Google Chrome Web Script Execution Vulnerabilities - Jun09");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/35548");
  script_xref(name : "URL" , value : "http://code.google.com/p/chromium/issues/detail?id=14508");
  script_xref(name : "URL" , value : "http://googlechromereleases.blogspot.com/2009/06/stable-beta-update-security-fix.html");

  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"executable_version");
  script_copyright("Copyright (C) 2009 SecPod");
  script_family("Buffer overflow");
  script_dependencies("gb_google_chrome_detect_win.nasl");
  script_require_keys("GoogleChrome/Win/Ver");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  exit(0);
}


include("version_func.inc");

chromeVer = get_kb_item("GoogleChrome/Win/Ver");
if(!chromeVer){
  exit(0);
}

# Check for Google Chrome version < 2.0.172.33
if(version_is_less(version:chromeVer, test_version:"2.0.172.33")){
  security_message(0);
}