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
CVE-2026-73570 — Python proof-of-concept for testing SMTP command injection (CVE-2026-73570) by sending malformed RCPT TO addresses to detect shell command substitution in mail servers. | Kitploit
Tools/GitHubGitHub/byt3l0rd/cve-2026-73570
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingEmail Security
GitHubbyt3l0rd/cve-2026-73570

CVE-2026-73570

Python proof-of-concept for testing SMTP command injection (CVE-2026-73570) by sending malformed RCPT TO addresses to detect shell command substitution in mail servers.

View Repository
2h 28m 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

CVE-2026-73570 PoC - SMTP Command Injection Tester

A custom, low-level Python proof-of-concept (PoC) script for testing SMTP command injection vulnerabilities (CVE-2026-73570).

This tool sends a malformed RCPT TO address containing shell-style command substitution (e.g., $(command)) to determine if the target mail server or its downstream processing pipeline improperly passes the address through a shell without sanitization.

⚠️ DISCLAIMER: This tool is intended for educational purposes and authorized security testing ONLY. Ensure you have explicit permission to test the target infrastructure. Unauthorized scanning or exploitation of mail servers is illegal.

Repository

GitHub: https://github.com/byt3l0rd/CVE-2026-73570

Author: byt3l0rd0day

Bug Info (Targeting Zimbra)

Not every Zimbra box is vulnerable. All of these conditions must be true:

  1. The optional zimbra-snmp package is installed (often prompted at installation).
  2. SNMP trap notifications are enabled ().
snmp_notify
  • The swatchdog service is running (on by default).
  • Attack Surface: The attack does not need SNMP (UDP/161/162) exposed to the attacker. The malicious input arrives over standard SMTP.

    The Root Cause

    The swatchdog process tails /var/log/zimbra.log using configuration from /opt/zimbra/conf/swatchrc.in. It actively matches log entries using the following regular expressions:

    root@kitploit:~
    /: Service status change: (\S+) (.*) changed from stopped to running/
    /: Service status change: (\S+) (.*) changed from running to stopped/
    
    Download Tool