Mozilla Firefox, Thunderbird, Seamonkey: Multiple Vulnerabilities (Mar 2008) - Windows
🗓️ 17 Jun 2008 00:00:00Reported by Copyright (C) 2008 Greenbone AGType
openvas🔗 plugins.openvas.org👁 40 Views
| Reporter | Title | Published | Views | Family All 410 |
|---|---|---|---|---|
| mozilla -- multiple vulnerabilities | 26 Mar 200800:00 | – | freebsd | |
| Mozilla Thunderbird < 2.0.0.13 Multiple Vulnerabilities | 26 Mar 200800:00 | – | nessus | |
| Mozilla Firefox < 2.0.0.13 Multiple Vulnerabilities | 26 Mar 200800:00 | – | nessus | |
| SeaMonkey < 1.1.9 Multiple Vulnerabilities | 26 Mar 200800:00 | – | nessus | |
| Mozilla Thunderbird < 2.0.0.14 Multiple Vulnerabilities | 6 May 200800:00 | – | nessus | |
| CentOS 4 / 5 : firefox (CESA-2008:0207) | 28 Mar 200800:00 | – | nessus | |
| CentOS 3 / 4 : seamonkey (CESA-2008:0208) | 28 Mar 200800:00 | – | nessus | |
| CentOS 4 / 5 : thunderbird (CESA-2008:0209) | 17 Apr 200800:00 | – | nessus | |
| Debian DSA-1532-1 : xulrunner - several vulnerabilities | 31 Mar 200800:00 | – | nessus | |
| Debian DSA-1534-1 : iceape - several vulnerabilities | 31 Mar 200800:00 | – | nessus |
10
# SPDX-FileCopyrightText: 2008 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.90013");
script_version("2025-07-31T05:44:45+0000");
script_tag(name:"last_modification", value:"2025-07-31 05:44:45 +0000 (Thu, 31 Jul 2025)");
script_tag(name:"creation_date", value:"2008-06-17 20:22:38 +0200 (Tue, 17 Jun 2008)");
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-2008-1233", "CVE-2008-1234", "CVE-2008-1235", "CVE-2008-1236", "CVE-2008-1237",
"CVE-2008-1238", "CVE-2007-4879", "CVE-2008-1195", "CVE-2008-1240", "CVE-2008-1241");
script_name("Mozilla Firefox, Thunderbird, Seamonkey: Multiple Vulnerabilities (Mar 2008) - Windows");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2008 Greenbone AG");
script_family("General");
script_dependencies("gb_firefox_detect_portable_win.nasl", "gb_seamonkey_detect_win.nasl", "gb_thunderbird_detect_portable_win.nasl");
script_mandatory_keys("Mozilla/Firefox_or_Seamonkey_or_Thunderbird/Installed");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/known-vulnerabilities/firefox-2.0/#firefox2.0.0.13");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/known-vulnerabilities/seamonkey-1.1/#seamonkey1.1.9");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird-2.0/#thunderbird2.0.0.14");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-19/");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-18/");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-17/");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-16/");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-15/");
script_xref(name:"URL", value:"https://www.mozilla.org/en-US/security/advisories/mfsa2008-14/");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/28448");
script_tag(name:"summary", value:"Mozilla Firefox, Thunderbird and Seamonkey are prone to multiple
vulnerabilities.");
script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");
script_tag(name:"impact", value:"Mozilla contributors moz_bug_r_a4, Boris Zbarsky, and Johnny
Stenback reported a series of vulnerabilities which allow scripts from page content to run with
elevated privileges. moz_bug_r_a4 demonstrated additional variants of MFSA2007-25 and MFSA2007-35
(arbitrary code execution through XPCNativeWrapper pollution). Additional vulnerabilities reported
separately by Boris Zbarsky, Johnny Stenback, and moz_bug_r_a4 showed that the browser could be
forced to run JavaScript code using the wrong principal leading to universal XSS and arbitrary
code execution.");
script_tag(name:"solution", value:"All users should upgrade to the latest versions of Firefox,
Thunderbird or Seamonkey.");
script_tag(name:"qod_type", value:"registry");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("version_func.inc");
ffVer = get_kb_item("Firefox/Win/Ver");
if(ffVer)
{
if(version_is_less(version:ffVer, test_version:"2.0.0.13"))
{
report = report_fixed_ver(installed_version:ffVer, fixed_version:"2.0.0.13");
security_message(port: 0, data: report);
exit(0);
}
}
smVer = get_kb_item("Seamonkey/Win/Ver");
if(smVer)
{
if(version_is_less(version:smVer, test_version:"1.1.9"))
{
report = report_fixed_ver(installed_version:smVer, fixed_version:"1.1.9");
security_message(port: 0, data: report);
exit(0);
}
}
tbVer = get_kb_item("Thunderbird/Win/Ver");
if(tbVer)
{
if(version_is_less(version:tbVer, test_version:"2.0.0.14")){
report = report_fixed_ver(installed_version:tbVer, fixed_version:"2.0.0.14");
security_message(port: 0, data: report);
}
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
31 Jul 2025 00:00Current
9.9High risk
Vulners AI Score9.9
CVSS 29.3
EPSS0.06055