############################################################################### # # Copyright: OS2A and it's member companies # # $Revision: 1.1 $ # # $Log: os2a_FEDORA-2005-026_810476.nasl,v $ # Revision 1.1 2006/01/24 05:27:57 hshreesha # Jan 2006 Update Check # # # ------------------------------------------------------------------------ # 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 Red Hat, Inc. if ( ! defined_func("bn_random") ) exit(0); if(description) { script_id(810476); script_cve_id("CVE-2005-3624,CVE-2005-3625,CVE-2005-3626,CVE-2005-3627,CVE-2005-3191"); script_version ("$Revision: 1.1 $"); name["english"] = "Fedora Update for poppler:FEDORA-2005-026"; script_name(english:name["english"]); desc["english"] = " This host doesn't have the update for fedora advisory FEDORA-2005-026 Description : Poppler, a PDF rendering library, it's a fork of the xpdf PDF viewer developed by Derek Noonburg of Glyph and Cog, LLC. Solution: Apply updated packages: http://download.fedora.redhat.com/pub/fedora/linux/core/updates/4 This update can also be installed with the Update Agent; you can launch the Update Agent with the 'up2date' command. Risk factor: Critical"; script_description(english:desc["english"]); summary["english"] = "Check for package version of poppler"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"Copyright (C) 2005 OS2A"); family["english"] = "Fedora Local Security Checks"; script_family(english:family["english"]); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/RedHat/rpm-list"); exit(0); } include("rpm.inc"); if(rpm_check(reference:"poppler-0.4.4-1.1", release:"FC4")) { security_hole(0); exit(0); } if(rpm_check(reference:"poppler-devel-0.4.4-1.1", release:"FC4")) { security_hole(0); exit(0); } if(rpm_check(reference:"poppler-debuginfo-0.4.4-1.1", release:"FC4")) { security_hole(0); exit(0); } if(rpm_exists(rpm:"poppler-", release:"FC4")){ set_kb_item(name:"FEDORA-2005-026", value:TRUE); }