Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Zimbra-CVE-2026-73570-Rules — Wazuh detection rules for CVE-2026-73570, an OS command injection in Zimbra Collaboration Suite, monitoring web access logs and zimbra.log for exploitation attempts. | Kitploit
Tools/GitHubGitHub/infokom-ki/zimbra-cve-2026-73570-rules
Vulnerability AnalysisWeb SecurityThreat IntelligenceIntrusion DetectionLog Analysis
GitHubinfokom-ki/zimbra-cve-2026-73570-rules

Zimbra-CVE-2026-73570-Rules

Wazuh detection rules for CVE-2026-73570, an OS command injection in Zimbra Collaboration Suite, monitoring web access logs and zimbra.log for exploitation attempts.

View Repository
6h 38m agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Wazuh Rules CVE-2026-73570 (Zimbra OS Command Injection)

Detection rules for CVE-2026-73570, an OS command injection in Zimbra Collaboration Suite via the SNMP trap notification parameter (snmp_notify).

Vulnerability

FieldDetail
CVECVE-2026-73570
TypeOS command injection
AffectedZimbra Collaboration Suite < 10.1.20
Endpoint/service/extension/backup/snmptrap (or /service/extension/backup)
Injected parametersnmp_notify
Executorswatchdog (runs the trap notification command)
Payload example127.0.0.1; id #

Files

FilePurpose
zimbra_cve_2026_73570_rules.xmlWazuh rules (910100–910103), no custom decoders required

Rules

IDLevelParentDetection
9101006-Request to /service/extension/backup[/snmptrap]
91010110910100snmp_notify= parameter present (exploit trigger)
91010215910101Shell metacharacters in snmp_notify value - exploitation attempt
91010315-Service status change: with shell metacharacters in /var/log/zimbra.log - command executed

MITRE ATT&CK: T1190 (Exploit Public-Facing Application), T1059 (Command and Scripting Interpreter).

Deployment

  1. Copy the rules file to the manager:

    root@kitploit:~
    cp zimbra_cve_2026_73570_rules.xml /var/ossec/etc/rules/
    
  2. Add the log sources to the agent ossec.conf (<ossec_config> block):

    root@kitploit:~
    <localfile>
      <log_format>apache</log_format>
      <location>/opt/zimbra/log/access_log.*</location>
    </localfile>
    
    <localfile>
      <log_format>syslog</log_format>
      <location>/var/log/zimbra.log</location>
    </localfile>
    

    Adjust /opt/zimbra/log/access_log.* to the actual Zimbra/nginx access log path if it differs.

  3. Restart the manager and agent:

    root@kitploit:~
    # manager
    systemctl restart wazuh-manager
    # agent
    systemctl restart wazuh-agent
    

Verify

Validate syntax and test against the manager's logtest:

root@kitploit:~
/var/ossec/bin/wazuh-logtest

Paste a sample access-log line (the injection payload) to confirm 910102 fires:

root@kitploit:~
1.2.3.4 - - [26/Feb/2026:10:00:00 +0000] "GET /service/extension/backup/snmptrap?snmp_notify=127.0.0.1%3B+id+%23&snmp_ip=127.0.0.1&snmp_port=162&task=notify HTTP/1.1" 200 1234 "-" "Mozilla/5.0"

Detection notes

  • 910100/910101/910102 fire on web access logs (raw text match, no decoder dependency). 910103 fires on /var/log/zimbra.log when swatchdog logs the executed Service status change line.
  • Encoded and literal shell metacharacters are both covered (%3B/;, %7C/|, %26/&, %24/$, %60/backtick, %0a/%0d, %23/#).
Download Tool