CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
11–20 of 254 posts
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#12I'm glad the moderator removed GHOST from the subject line. CVEs don't need a media friendly handle. Edit: Its back again. Booooo.
We disagree on that, especially when they're widespread (and you don't get much more widespread than glibc) and "drop everything and patch"-level severity. Having a shorthand to refer to the bug makes it more easy (and therefore more likely) that it will get referenced and discussed.
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#13Is this serious? Does this mean if I have an app, Java, PHP or whatever, which eventually calls glibc's gethostbyname gethostbyaddr, my machine is owned? That somebody could just craft a special hostname or ip address to lookup? So all those websites where you enter hostname o IP address to lookup something like whois info or ping other machines, could be owned?
Mail servers in particular generally make it pretty easy to trigger both forward and reverse lookups.
The test case seems to have it looking up an ip address as if it were a name, but it's using the reentrant version of the function - maybe only those are affected?
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#14 lsof | grep libc | awk '{print $1}' | sort | uniq
[1] http://ma.ttias.be/critical-glibc-update-cve-2015-0235-getho...Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#15I'm glad the moderator removed GHOST from the subject line. CVEs don't need a media friendly handle. Edit: Its back again. Booooo.
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#16I'm glad the moderator removed GHOST from the subject line. CVEs don't need a media friendly handle. Edit: Its back again. Booooo.
In this case, it looks the name is probably not warranted.
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#17Details on this one appear to be quite sparse - under what use cases would a remote user be able to craft invalid IP addresses?
It seems it was made public by accident, so it is not totally surprising that information is sparse :(
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#18When the patches are available, you need to update, and likely reboot. Mattias Geniar talks about using the following command to find processes depending on libc, any of which could be running the vulnerable code, these are core processes that you probably cannot just cycle without a reboot [1]. For me the listing looks something like this: agetty, auditd, dbus-daem, dhclient, init, master, mysqld, rsyslogd, sshd, ud…
Re: CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow
#19When the patches are available, you need to update, and likely reboot. Mattias Geniar talks about using the following command to find processes depending on libc, any of which could be running the vulnerable code, these are core processes that you probably cannot just cycle without a reboot [1]. For me the listing looks something like this: agetty, auditd, dbus-daem, dhclient, init, master, mysqld, rsyslogd, sshd, ud…
If would be nice if package managers would let us know when this is necessary, I expect that might be a hard thing to get right though.