CVE-2025-71275
Command Injection in Zimbra PostJournal via SMTP RCPT TO Parameter
Publication date: 2026-03-24
Last updated on: 2026-03-25
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| zimbra | collaboration_suite | 8.8.15 |
| zimbra | zimbra_collaboration_suite | 8.8.15 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-78 | The product constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': 'CVE-2025-71275 is a critical vulnerability in the Zimbra Collaboration Suite (ZCS) PostJournal service version 8.8.15. It allows unauthenticated attackers to execute arbitrary system commands remotely by exploiting improper sanitization of the SMTP "RCPT TO" parameter.'}, {'type': 'paragraph', 'content': 'Attackers can inject shell expansion syntax, such as $(COMMAND), into the RCPT TO parameter, which leads to command injection and remote code execution under the Zimbra service context without needing any authentication.'}, {'type': 'paragraph', 'content': 'This vulnerability is classified under CWE-78 (Improper Neutralization of Special Elements used in an OS Command) and has a very high severity score (CVSS v4 score of 9.3).'}] [1]
How can this vulnerability impact me? :
This vulnerability can have severe impacts as it allows attackers to remotely execute arbitrary system commands on affected Zimbra servers without any authentication.
Exploitation can lead to full remote code execution, which compromises the confidentiality, integrity, and availability of the affected system.
Attackers could potentially take control of the server, access sensitive data, disrupt services, or use the compromised system as a foothold for further attacks.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability can be detected by monitoring SMTP traffic for suspicious RCPT TO parameters that include shell expansion syntax such as $(COMMAND). Network intrusion detection systems (NIDS) or log analysis tools can be configured to flag SMTP RCPT TO commands containing unusual characters or patterns indicative of command injection attempts.'}, {'type': 'paragraph', 'content': 'A practical approach is to capture SMTP traffic on port 25 or 587 and search for RCPT TO commands with suspicious payloads. For example, using tcpdump or tshark to filter SMTP traffic and grep for suspicious patterns:'}, {'type': 'list_item', 'content': "tcpdump -i <interface> -A port 25 | grep -i 'RCPT TO'"}, {'type': 'list_item', 'content': 'tshark -i <interface> -Y \'smtp.req.command == "RCPT TO"\' -T fields -e smtp.req.parameter | grep -E \'\\$\\(|`\''}, {'type': 'paragraph', 'content': 'Additionally, reviewing Zimbra server logs for unusual RCPT TO entries containing shell expansion syntax can help detect exploitation attempts.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include upgrading the Zimbra Collaboration Suite PostJournal service to a version later than 8.8.15 where this vulnerability is fixed.
If an upgrade is not immediately possible, applying strict input validation or filtering on the SMTP RCPT TO parameter to block shell expansion syntax such as $(COMMAND) can reduce risk.
Additionally, restricting network access to the Zimbra SMTP service to trusted hosts and monitoring for suspicious SMTP commands can help mitigate exploitation.
Implementing intrusion detection/prevention systems with rules targeting this specific injection pattern is also recommended.