CVE-2015-0235 – How to secure against Glibc Ghost Vulnerability
by
, 01-29-2015 at 10:13 AM (0 Views)
CVE-2015-0235 Ghost (glibc gethostbyname buffer overflow) Vulnerability is serious cause for all Linux servers. This vulnerability leveraged to execute remote and code execution on the victim Linux server. The vulnerability found By Qualys Researcher and patched in GNU.
What is the cause ?
The bug is in __nss_hostname_digits_dots() function of function of the GNU C Library (glibc), and location of the path is file for non-reentrant version is nss/getXXbyYY.c , which is used by the gethostbyname(). The vulnerability can be exploited both via locally and remotely. In order to trigger this vulnerability attacker needs to be able to feed specially crafted 'host name' to the service. And service needs to process it without validating it first.
Following are the potentially exploitable services
procmail
Exim
pppd
clockdiff
You can find the list of services which are rely on the GNU C libraries by executing following command
Fix for Centos/RHEL/Fedora 5,6,7Code:lsof | grep libc | awk '{print $1}' | sort | uni
Fix for UbuntuCode:yum update glibc sudo restart
For Quick test , you can run this codeCode:sudo apt-get update sudo apt-get dist-upgrade sudo restart
Reference :
http://www.openwall.com/lists/oss-security/2015/01/27/9
http://blog.securelayer7.net/cve-201...vulnerability/