############################################################################## # # Copyright: OS2A and it's member companies # # $Revision: 1.1 $ # # $Log: os2a_FEDORA-2005-1037_810294.nasl,v $ # Revision 1.1 2005/12/07 09:12:11 hshreesha # SID changed from 700000 to 810000 series. # # Revision 1.1 2005/11/03 03:35:41 hshreesha # October Checks # # # ------------------------------------------------------------------------ # 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(810294); script_version ("$Revision: 1.1 $"); name["english"] = "Fedora Update for kernel:FEDORA-2005-1037"; script_name(english:name["english"]); desc["english"] = " Overview: This host doesn't have the update for fedora advisory FEDORA-2005-1037 Description : The kernel package contains the Linux kernel (vmlinuz), the core of any Linux operating system. The kernel handles the basic functions of the operating system: memory allocation, process allocation, device input and output, etc. Solution: Apply updated packages: http://download.fedora.redhat.com/pub/fedora/linux/core/updates/3 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 kernel"; 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:"kernel-2.6.12-1.1381_FC3", release:"FC3")) { security_hole(0); exit(0); } if(rpm_check(reference:"kernel-smp-2.6.12-1.1381_FC3", release:"FC3")) { security_hole(0); exit(0); } if(rpm_check(reference:"kernel-debuginfo-2.6.12-1.1381_FC3", release:"FC3")) { security_hole(0); exit(0); } if(rpm_check(reference:"kernel-doc-2.6.12-1.1381_FC3", release:"FC3")) { security_hole(0); exit(0); }