############################################################################### # # Copyright: OS2A and it's member companies # # $Revision: 1.1 $ # # $Log: os2a_DSA-1044-1_800425.nasl,v $ # Revision 1.1 2006/04/27 04:32:47 hpavithra # Debian Advisory scripts # # # ------------------------------------------------------------------------ # This program was written by OS2A and/or it's member companies and is # licensed under the GNU GPL license. Please see below for details. This # header contains information regarding licensing terms under the GPL, and # information regarding obtaining source code from the Author. Consequently, # pursuant to section 3(c) of the GPL, you must accompany the information # found in this header with any distribution you make of this Program. # ------------------------------------------------------------------------ ############################################################################## # The plugin text is copyright Debian, Inc. if(!defined_func("bn_random")) exit(0); if(description) { script_id(800425); script_cve_id("CVE-2006-1736,CVE-2006-1737,CVE-2006-1734,CVE-2006-1735,CVE-2006-1732,CVE-2006-1733,CVE-2006-1730,CVE-2006-1731,CVE-2006-1739,CVE-2005-4134,CVE-2006-1738,CVE-2006-0292,CVE-2006-0293,CVE-2006-0296,CVE-2006-1790,CVE-2006-0748,CVE-2006-0749,CVE-2006-1742,CVE-2006-1741,CVE-2006-1740,CVE-2006-1727,CVE-2006-1729,CVE-2006-1728"); script_version ("$Revision: 1.1 $"); name["english"] = "Debian update for mozilla-firefox: DSA-1044-1"; script_name(english:name["english"]); desc["english"] = " Overview and Solution : Several security related problems have been discovered in Mozilla Firefox. The Common Vulnerabilities and Exposures project identifies all the vulnerabilities. Follow the link given in reference section for more information. For the stable distribution (sarge) these problems have been fixed in version 1.0.4-2sarge6. For the unstable distribution (sid) these problems have been fixed in version 1.5.dfsg+1.5.0.2-2. We recommend that you upgrade your Mozilla Firefox packages. Affected Platforms : Debian 3.1 References : http://www.debian.org/security/2006/dsa-1044 Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Check for the version of mozilla-firefox package"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"Copyright (C) 2006 OS2A"); family["english"] = "Debian Local Security Checks"; script_family(english:family["english"]); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/Debian/dpkg-l", "Host/Debian/release"); exit(0); } include("debian_package.inc"); release = get_kb_item("Host/Debian/release"); if(release == NULL){ exit(0); } if(release == "3.1") { if(deb_check(prefix:"mozilla-firefox", release:"3.1", reference:"1.0.4-2sarge6")) { security_hole(0); exit(0); } if(deb_check(prefix:"mozilla-firefox-dom-inspector", release:"3.1", reference:"1.0.4-2sarge6")) { security_hole(0); exit(0); } if(deb_check(prefix:"mozilla-firefox-gnome-support", release:"3.1", reference:"1.0.4-2sarge6")) { security_hole(0); exit(0); } if(deb_pkg_exists(prefix:"mozilla-firefox", release:"3.1")) { set_kb_item(name:"DSA-1044-1", value:TRUE); exit(0); } if(deb_pkg_exists(prefix:"mozilla-firefox-dom-inspector", release:"3.1")) { set_kb_item(name:"DSA-1044-1", value:TRUE); exit(0); } if(deb_pkg_exists(prefix:"mozilla-firefox-gnome-support", release:"3.1")) { set_kb_item(name:"DSA-1044-1", value:TRUE); exit(0); } }