Lucene search

K
openvasCopyright (C) 2010 SecPodOPENVAS:902142
HistoryMar 30, 2010 - 12:00 a.m.

Mozilla Products Denial Of Service Vulnerability (Windows)

2010-03-3000:00:00
Copyright (C) 2010 SecPod
plugins.openvas.org
15

0.065 Low

EPSS

Percentile

93.0%

The host is installed with Thunderbird/Seamonkey and is prone to
Denial Of Service vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_mozilla_prdts_dos_vuln_win_mar10.nasl 6444 2017-06-27 11:24:02Z santu $
#
# Mozilla Products Denial Of Service Vulnerability (Windows)
#
# Authors:
# Antu Sanadi <[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 will allow attackers to cause a denial of service
  or possibly execute arbitrary code via a crafted message, related to message
  indexing.
  Impact Level: Application";
tag_affected = "Seamonkey version prior to 1.1.19 and
  Thunderbird version prior to 2.0.0.24 on Windows.";
tag_insight = "The flaw exists when processing e-mail attachments with a parser that performs
  casts and line termination incorrectly, which allows remote attackers to crash
  the application.";
tag_solution = "Upgrade to Seamonkey version 1.1.19 or later
  http://www.seamonkey-project.org/releases
  Upgrade to Thunderbird version 2.0.0.24 or later
  http://www.mozillamessaging.com/en-US/thunderbird/all.html";
tag_summary = "The host is installed with Thunderbird/Seamonkey and is prone to
  Denial Of Service vulnerability.";

if(description)
{
  script_id(902142);
  script_version("$Revision: 6444 $");
  script_tag(name:"last_modification", value:"$Date: 2017-06-27 13:24:02 +0200 (Tue, 27 Jun 2017) $");
  script_tag(name:"creation_date", value:"2010-03-30 16:15:33 +0200 (Tue, 30 Mar 2010)");
  script_cve_id("CVE-2010-0163");
  script_bugtraq_id(38831);
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:N/A:P");
  script_name("Mozilla Products Denial Of Service Vulnerability (Windows)");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/56993");
  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2010/0648");
  script_xref(name : "URL" , value : "http://www.mozilla.org/security/announce/2010/mfsa2010-07.html");

  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"registry");
  script_copyright("Copyright (C) 2010 SecPod");
  script_family("Denial of Service");
  script_dependencies("gb_seamonkey_detect_win.nasl",
                      "gb_thunderbird_detect_win.nasl");
  script_mandatory_keys("Mozilla/Firefox_or_Seamonkey_or_Thunderbird/Installed");
  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");

# Seamonkey Check
smVer = get_kb_item("Seamonkey/Win/Ver");
if(smVer != NULL)
{
  # Grep for Seamonkey version prior to 1.1.19
  if(version_is_less(version:smVer, test_version:"1.1.19")){
     security_message(0);
     exit(0);
  }
}

# Thunderbird Check
tbVer = get_kb_item("Thunderbird/Win/Ver");
if(tbVer != NULL)
{
  # Grep for Thunderbird version prior to 2.0.0.24
  if(version_is_less(version:tbVer, test_version:"2.0.0.24")){
    security_message(0);
  }
}