Lucene search

K
openvasCopyright (c) 2010 SecPodOPENVAS:902092
HistoryAug 02, 2010 - 12:00 a.m.

Google Chrome Multiple Unspecified Vulnerabilities - July 10

2010-08-0200:00:00
Copyright (c) 2010 SecPod
plugins.openvas.org
10

0.033 Low

EPSS

Percentile

90.3%

The host isnstalled with Google Chrome and is prone to multiple
unspecified vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_google_chrome_mult_unspecified_vuln_jul10.nasl 5394 2017-02-22 09:22:42Z teissa $
#
# Google Chrome Multiple Unspcified Vulnerabilities - July 10
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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 could allow the attackers to cause a denial of
  service (memory corruption) or possibly have unspecified other impact
  via unknown vectors.
  Impact Level: Application";
tag_affected = "Google Chrome version prior to 5.0.375.125";
tag_insight = "Multiple flaws are due to:
  - Not properly mitigate an unspecified flaw in the 'GNU C Library', which
    has unknown impact and attack vectors.
  - Not properly mitigate an unspecified flaw in the 'Windows kernel'.
  - An unspecified error exists related to large 'canvases'.
  - An unspecified error in the 'layout code' can be exploited to disclose
    memory content.
  - An unspecified error in the 'rendering code' and 'SVG handling' can be
    exploited to corrupt memory.
  - Unexpected truncation and improper eliding of hostnames.";
tag_solution = "Upgrade to the Google Chrome 5.0.375.125 or later,
  For updates refer to http://www.google.com/chrome";
tag_summary = "The host isnstalled with Google Chrome and is prone to multiple
  unspecified vulnerabilities.";

if(description)
{
  script_id(902092);
  script_version("$Revision: 5394 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-22 10:22:42 +0100 (Wed, 22 Feb 2017) $");
  script_tag(name:"creation_date", value:"2010-08-02 12:38:17 +0200 (Mon, 02 Aug 2010)");
  script_cve_id("CVE-2010-2898", "CVE-2010-2897", "CVE-2010-2900",
                "CVE-2010-2899", "CVE-2010-2901", "CVE-2010-2903",
                "CVE-2010-2902");
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_name("Google Chrome Multiple Unspecified Vulnerabilities - July 10");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/40743");
  script_xref(name : "URL" , value : "http://googlechromereleases.blogspot.com/2010/07/stable-channel-update_26.html");

  script_copyright("Copyright (c) 2010 SecPod");
  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"executable_version");
  script_family("General");
  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");

## Get the version from KB
chromeVer = get_kb_item("GoogleChrome/Win/Ver");
if(!chromeVer){
  exit(0);
}

## Check for Google Chrome Version less than 5.0.375.125
if(version_is_less(version:chromeVer, test_version:"5.0.375.125")){
  security_message(0);
}