{"id":1467,"date":"2015-04-16T23:30:38","date_gmt":"2015-04-17T05:30:38","guid":{"rendered":"http:\/\/www.supportpro.com\/blog\/?p=1467"},"modified":"2026-06-19T04:03:30","modified_gmt":"2026-06-19T10:03:30","slug":"glibc-ghost-vulnerability-cve-2015-0235","status":"publish","type":"post","link":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/","title":{"rendered":"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers"},"content":{"rendered":"<h1>Introduction<\/h1>\n<p>Server security vulnerabilities can expose key services and applications to attacks. One of these vulnerabilities is the GHOST vulnerability (CVE-2015-0235). This flaw was found in the GNU C Library (glibc) and impacts many Linux distributions. Since several essential services, such as SSH, Bash, and DNS-related applications, rely on glibc, it is crucial for system administrators to check if their servers are vulnerable and implement the necessary fixes. This article outlines how to check for the GHOST vulnerability and decide if your Linux server is at risk.<\/p>\n<p>On Linux servers, more than 60 binaries and major services, such as SSH, Nmap, and Bash, rely on the glibc libraries. A heap-based buffer overflow was found in __nss_hostname_digits_dots(), and an attacker could use this flaw to execute arbitrary code with the privilege of the users running the application using the function gethostbyname()<\/p>\n<h2>Check if Your Server Is GHOST Vulnerable<\/h2>\n<p style=\"text-align: center;\"><a class=\"lightbox\" href=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/ghost-vulnerability-glibc.jpg\" data-rel=\"penci-gallery-image-content\" ><img fetchpriority=\"high\" decoding=\"async\" class=\"alignright size-full wp-image-3609\" src=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/ghost-vulnerability-glibc.jpg\" alt=\"\" width=\"856\" height=\"250\" srcset=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/ghost-vulnerability-glibc.jpg 856w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/ghost-vulnerability-glibc-300x88.jpg 300w, https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/ghost-vulnerability-glibc-768x224.jpg 768w\" sizes=\"(max-width: 856px) 100vw, 856px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>If the glibc version on your server is below 2.18, your server is most exposed to this vulnerability.<\/p>\n<p>You can check the glibc version on your server using the command given below.<\/p>\n<h3>Verify the Installed glibc Version<\/h3>\n<p><em>#ldd &#8211;version<!--more--><\/em><\/p>\n<h3>Using the Qualys Test Program<\/h3>\n<p>Also, you can check if your server is vulnerable to a GHOST attack by using a program released by Qualys.<\/p>\n<p>Note: Use this program at your own risk.<\/p>\n<p>============<\/p>\n<p><em>#include &lt;netdb.h&gt;<\/em><br \/>\n<em>#include &lt;stdio.h&gt;<\/em><br \/>\n<em>#include &lt;stdlib.h&gt;<\/em><br \/>\n<em>#include &lt;string.h&gt;<\/em><br \/>\n<em>#include &lt;errno.h&gt;<\/em><br \/>\n<em>#define CANARY &#8220;in_the_coal_mine&#8221;<\/em><br \/>\n<em>struct {<\/em><br \/>\n<em> char buffer[1024];<\/em><br \/>\n<em> char canary[sizeof(CANARY)];<\/em><br \/>\n<em>} temp = { &#8220;buffer&#8221;, CANARY };<\/em><br \/>\n<em>int main(void) {<\/em><br \/>\n<em> struct hostent resbuf;<\/em><br \/>\n<em> struct hostent *result;<\/em><br \/>\n<em> int herrno;<\/em><br \/>\n<em> int retval;<\/em><br \/>\n<em> \/*** strlen (name) = size_needed &#8211; sizeof (*host_addr) &#8211; sizeof (*h_addr_ptrs) &#8211; 1; ***\/<\/em><br \/>\n<em> size_t len = sizeof(temp.buffer) &#8211; 16*sizeof(unsigned char) &#8211; 2*sizeof(char *) &#8211; 1;<\/em><br \/>\n<em> char name[sizeof(temp.buffer)];<\/em><br \/>\n<em> memset(name, &#8216;0&#8217;, len);<\/em><br \/>\n<em> name[len] = &#8216;\\0&#8217;;<\/em><br \/>\n<em> retval = gethostbyname_r(name, &amp;resbuf, temp.buffer, sizeof(temp.buffer), &amp;result, &amp;herrno);<\/em><br \/>\n<em> if (strcmp(temp.canary, CANARY) != 0) {<\/em><br \/>\n<em> puts(&#8220;vulnerable&#8221;);<\/em><br \/>\n<em> exit(EXIT_SUCCESS);<\/em><br \/>\n<em> }<\/em><br \/>\n<em> if (retval == ERANGE) {<\/em><br \/>\n<em> puts(&#8220;not vulnerable&#8221;);<\/em><br \/>\n<em> exit(EXIT_SUCCESS);<\/em><br \/>\n<em> }<\/em><br \/>\n<em> puts(&#8220;should not happen&#8221;);<\/em><br \/>\n<em> exit(EXIT_FAILURE);<\/em><br \/>\n<em>}<\/em><\/p>\n<p>============<\/p>\n<ul>\n<li>Save the above program to a file named ghostcheck.c<\/li>\n<li>Compile the program using the command given below.<\/li>\n<\/ul>\n<p><em>#gcc ghostcheck.c -o ghostcheck<\/em><\/p>\n<ul>\n<li>Run the program using the command,<\/li>\n<\/ul>\n<p><em>.\/ghostcheck<\/em><\/p>\n<p>If your server is not exposed to risks, you will be notified with a message \u2018not vulnerable\u2019 and vice versa upon successful execution of this program.<\/p>\n<h2>Conclusion<\/h2>\n<p><span style=\"font-weight: 400;\">The GHOST vulnerability (CVE-2015-0235) underscores the importance of regularly monitoring and updating Linux servers. Glibc is a key part used by many applications and services. An unpatched vulnerability can lead to serious security risks. By checking your glibc version and testing your server for exposure, you can spot potential threats early and take action. Regular security updates and proactive server maintenance are crucial for keeping Linux environments secure and reliable.<\/span><\/p>\n<p>If you require help, <a href=\"https:\/\/www.supportpro.com\/requestquote.php\">contact SupportPRO Server Admin<\/a><\/p>\n<p style=\"text-align: center;\"><!--HubSpot Call-to-Action Code --><span id=\"hs-cta-wrapper-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-wrapper\"><span id=\"hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-node hs-cta-9d590242-d641-4383-94b4-8cfd62f0af6b\"><!-- [if lte IE 8]><\/p>\n\n\n\n\n\n<div id=\"hs-cta-ie-element\"><\/div>\n\n\n<![endif]--><a href=\"https:\/\/cta-redirect.hubspot.com\/cta\/redirect\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b\"><img decoding=\"async\" id=\"hs-cta-img-9d590242-d641-4383-94b4-8cfd62f0af6b\" class=\"hs-cta-img\" style=\"border-width: 0px;\" src=\"https:\/\/no-cache.hubspot.com\/cta\/default\/2725694\/9d590242-d641-4383-94b4-8cfd62f0af6b.png\" alt=\"Server not running properly? Get A FREE Server Checkup By Expert Server Admins - $125 Value\" \/><\/a><\/span><script charset=\"utf-8\" src=\"https:\/\/js.hscta.net\/cta\/current.js\"><\/script><script type=\"text\/javascript\"> hbspt.cta.load(2725694, '9d590242-d641-4383-94b4-8cfd62f0af6b', {}); <\/script><\/span><!-- end HubSpot Call-to-Action Code --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Server security vulnerabilities can expose key services and applications to attacks. One of these vulnerabilities is the GHOST vulnerability (CVE-2015-0235). This flaw was found in the GNU C Library&hellip;<\/p>\n","protected":false},"author":5,"featured_media":17573,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[4,3],"tags":[],"class_list":["post-1467","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-server-security","category-technical-articles"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Bella\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Server Management Tips | SupportPRO Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235\" \/>\n\t\t<meta property=\"og:description\" content=\"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-04-17T05:30:38+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-19T10:03:30+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#article\",\"name\":\"Glibc \\u2013 GHOST vulnerability \\u2013 CVE-2015-0235\",\"headline\":\"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers\",\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/jeslin-j\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/GHOST-Vulnerability-in-Linux-Servers.jpg\",\"width\":1920,\"height\":960,\"caption\":\"Check and Fix the Glibc GHOST Vulnerability\"},\"datePublished\":\"2015-04-16T23:30:38-06:00\",\"dateModified\":\"2026-06-19T04:03:30-06:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#webpage\"},\"articleSection\":\"Server Security, Technical Articles\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/#listItem\",\"name\":\"Server\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/#listItem\",\"position\":2,\"name\":\"Server\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/server-security\\\/#listItem\",\"name\":\"Server Security\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/server-security\\\/#listItem\",\"position\":3,\"name\":\"Server Security\",\"item\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/server-security\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#listItem\",\"name\":\"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/#listItem\",\"name\":\"Server\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#listItem\",\"position\":4,\"name\":\"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/category\\\/server\\\/server-security\\\/#listItem\",\"name\":\"Server Security\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\",\"name\":\"SupportPRO\",\"description\":\"SupportPRO Blog\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"telephone\":\"+18476076123\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/jeslin-j\\\/#author\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/jeslin-j\\\/\",\"name\":\"Bella\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3ec60f871b6d1ea5ee6a2feb8075ecca0c69b8da9dba65a45ba102b7359682ed?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Bella\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#webpage\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/\",\"name\":\"Glibc \\u2013 GHOST vulnerability \\u2013 CVE-2015-0235\",\"description\":\"Glibc \\u2013 GHOST vulnerability \\u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/jeslin-j\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/author\\\/jeslin-j\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/04\\\/GHOST-Vulnerability-in-Linux-Servers.jpg\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#mainImage\",\"width\":1920,\"height\":960,\"caption\":\"Check and Fix the Glibc GHOST Vulnerability\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/glibc-ghost-vulnerability-cve-2015-0235\\\/#mainImage\"},\"datePublished\":\"2015-04-16T23:30:38-06:00\",\"dateModified\":\"2026-06-19T04:03:30-06:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/\",\"name\":\"Server Management Tips\",\"description\":\"SupportPRO Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.supportpro.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235<\/title>\n\n","aioseo_head_json":{"title":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","description":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites","canonical_url":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#article","name":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","headline":"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers","author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/jeslin-j\/#author"},"publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg","width":1920,"height":960,"caption":"Check and Fix the Glibc GHOST Vulnerability"},"datePublished":"2015-04-16T23:30:38-06:00","dateModified":"2026-06-19T04:03:30-06:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#webpage"},"isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#webpage"},"articleSection":"Server Security, Technical Articles"},{"@type":"BreadcrumbList","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.supportpro.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/#listItem","name":"Server"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/#listItem","position":2,"name":"Server","item":"https:\/\/www.supportpro.com\/blog\/category\/server\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/#listItem","name":"Server Security"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/#listItem","position":3,"name":"Server Security","item":"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#listItem","name":"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/#listItem","name":"Server"}},{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#listItem","position":4,"name":"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers","previousItem":{"@type":"ListItem","@id":"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/#listItem","name":"Server Security"}}]},{"@type":"Organization","@id":"https:\/\/www.supportpro.com\/blog\/#organization","name":"SupportPRO","description":"SupportPRO Blog","url":"https:\/\/www.supportpro.com\/blog\/","telephone":"+18476076123"},{"@type":"Person","@id":"https:\/\/www.supportpro.com\/blog\/author\/jeslin-j\/#author","url":"https:\/\/www.supportpro.com\/blog\/author\/jeslin-j\/","name":"Bella","image":{"@type":"ImageObject","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/3ec60f871b6d1ea5ee6a2feb8075ecca0c69b8da9dba65a45ba102b7359682ed?s=96&d=mm&r=g","width":96,"height":96,"caption":"Bella"}},{"@type":"WebPage","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#webpage","url":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/","name":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","description":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.supportpro.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#breadcrumblist"},"author":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/jeslin-j\/#author"},"creator":{"@id":"https:\/\/www.supportpro.com\/blog\/author\/jeslin-j\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg","@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#mainImage","width":1920,"height":960,"caption":"Check and Fix the Glibc GHOST Vulnerability"},"primaryImageOfPage":{"@id":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/#mainImage"},"datePublished":"2015-04-16T23:30:38-06:00","dateModified":"2026-06-19T04:03:30-06:00"},{"@type":"WebSite","@id":"https:\/\/www.supportpro.com\/blog\/#website","url":"https:\/\/www.supportpro.com\/blog\/","name":"Server Management Tips","description":"SupportPRO Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.supportpro.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Server Management Tips | SupportPRO Blog","og:type":"article","og:title":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","og:description":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites","og:url":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/","og:image":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg","og:image:secure_url":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg","og:image:width":1920,"og:image:height":960,"article:published_time":"2015-04-17T05:30:38+00:00","article:modified_time":"2026-06-19T10:03:30+00:00","twitter:card":"summary","twitter:title":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","twitter:description":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites","twitter:image":"https:\/\/www.supportpro.com\/blog\/wp-content\/uploads\/2015\/04\/GHOST-Vulnerability-in-Linux-Servers.jpg"},"aioseo_meta_data":{"post_id":"1467","title":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235","description":"Glibc \u2013 GHOST vulnerability \u2013 CVE-2015-0235 - How to diagnose on your dedicated VPS or cloud server and how to fix the issue before it impacts your websites","keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"seo_analyzer_scan_date":"2026-06-19 10:03:47","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2021-12-10 16:12:48","updated":"2026-06-19 10:50:08"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/server\/\" title=\"Server\">Server<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/\" title=\"Server Security\">Server Security<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.supportpro.com\/blog"},{"label":"Server","link":"https:\/\/www.supportpro.com\/blog\/category\/server\/"},{"label":"Server Security","link":"https:\/\/www.supportpro.com\/blog\/category\/server\/server-security\/"},{"label":"How to Check and Fix the Glibc GHOST Vulnerability (CVE-2015-0235) in Linux Servers","link":"https:\/\/www.supportpro.com\/blog\/glibc-ghost-vulnerability-cve-2015-0235\/"}],"_links":{"self":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1467","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/comments?post=1467"}],"version-history":[{"count":7,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1467\/revisions"}],"predecessor-version":[{"id":17572,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/posts\/1467\/revisions\/17572"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media\/17573"}],"wp:attachment":[{"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/media?parent=1467"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/categories?post=1467"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.supportpro.com\/blog\/wp-json\/wp\/v2\/tags?post=1467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}