Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-45288 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

Marten is a .NET Transactional Document DB and Event Store on PostgreSQL. Prior to 8.36.1, Marten's full-text search APIs interpolated the user-supplied regConfig parameter directly into the generated SQL without parameterization or validation, making every code path that exposes regConfig to untrusted input a SQL injection sink. This vulnerability is fixed in 8.36.1.

Metrics

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-89Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')[email protected]

Affected Products

ProductVersions
JasperFx Marten
<= 8.36

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • Upgrade: 8.37.0moderate effort
  • Workaround:low effort

    Hard-code the regConfig parameter to a compile-time constant value (e.g., "english" or "simple") and do not accept it from request input.

  • Workaround:low effort

    Validate any externally-sourced regConfig value before passing it to Marten. This can be done by matching it against the regex pattern ^[a-zA-Z_][a-zA-Z0-9_]*(\.[a-zA-Z_][a-zA-Z0-9_]*)?$ or against an allowlist of PostgreSQL configurations that the application actually uses.

  • Workaround:low effort

    Omit the regConfig argument from the call site so that Marten falls back to the safe default.

Change History

4 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-45288
NVD Published Date:
May 28, 2026
NVD Last Modified:
Jul 21, 2026
Source:
[email protected]
CVE-2026-45288 Details - Not Deferred