4

Trying to patch CVE-2014-0196 Vulnerability but yum can't find packages updates

CentOS 6.5 (Final) Panel version: 11.0.9 Update #61

# uname -r
2.6.32-358.11.1.el6.x86_64

# yum update kernel
Loaded plugins: fastestmirror
Determining fastest mirrors
epel/metalink                                                                   |  23 kB     00:00    
epel: mirror.fraunhofer.de
base                                                                            | 3.7 kB     00:00    
epel                                                                            | 4.4 kB     00:00    
epel/primary_db                                                                 | 6.2 MB     00:00    
extras                                                                          | 3.4 kB     00:00    
updates                                                                         | 3.4 kB     00:00    
updates/primary_db                                                              | 3.7 MB     00:00    
Setting up Update Process
No Packages marked for Update

EDIT 1

# rpm -q kernel
kernel-2.6.32-358.6.2.el6.x86_64
kernel-2.6.32-358.11.1.el6.x86_64
kernel-2.6.32-431.20.3.el6.x86_64

EDIT 2

# yum repolist all
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * epel: mirror.fraunhofer.de
repo id                        repo name                                                status
base                           CentOS-6 - Base                                          enabled:  6,367
epel                           Extra Packages for Enterprise Linux 6 - x86_64           enabled: 10,970
extras                         CentOS-6 - Extras                                        enabled:     14
updates                        CentOS-6 - Updates                                       enabled:  1,104
repolist: 18,455
hsands
  • 43

1 Answers1

5

It looks like you already have the most up-to-date kernel

kernel-2.6.32-431.20.3.el6.x86_64

on your system so yum is correct in that there is nothing to do. However this kernel is not active.

uname -r
2.6.32-358.11.1.el6.x86_64

You will need to reboot your system to make it active.

user9517
  • 117,122