SQL InjectionWeakness · CWE-89

CVE-2026-48114

CRITICAL · 9.8 CVSS v3.1 Published 2026-06-15
Patch available
A vendor patch is available. No clean upgrade release — apply the published patch.
See remediation →
100/100
Remediation priority · Urgent
Remotely reachable No privileges Zero-click Patch available

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
Metacat is data repository software that helps researchers preserve, share, and discover data. Versions 2.0.0 and and above contain an unauthenticated SQL injection in the /harvesterRegistration endpoint. HarvesterRegistration.dbInsert() builds an INSERT against HARVEST_SITE_SCHEDULE via string concatenation, using a quoteString() helper that performs raw single-quote wrapping without escaping. Three request parameters reach the sink: unit, contactEmail, and documentListURL. The servlet does not verify a real LDAP identity. Allowing the vulnerable insert to proceed. Since the PostgreSQL backend permits stacked queries via Statement.executeUpdate(), this vulnerability allows full read/write/execute access in the Metacat database context. The vulnerability was remediated in Metacat 3.0.0.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

Unauthenticated SQL injection in Metacat's /harvesterRegistration endpoint where HarvesterRegistration.dbInsert() builds INSERT statements against HARVEST_SITE_SCHEDULE via string concatenation using a quoteString() helper that performs raw single-quote wrapping without escaping. The vulnerable parameters (unit, contactEmail, documentListURL) receive no LDAP authentication verification. Since PostgreSQL permits stacked queries via Statement.executeUpdate(), attackers achieve full read/write/execute access to the Metacat database.

MitigationUpgrade to Metacat 3.0.0 or later. If immediate upgrade is not feasible, block access to the /harvesterRegistration endpoint at the web server or WAF level until the patch can be applied.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Confirm Metacat installation and version
    Locate the Metacat web application directory (typically in <webapp>/metacat or similar) and check for a version file, build.properties, or pom.xml that specifies the Metacat version. Compare your installed version against the affected range (versions prior to 3.0.0).
    Affected if Metacat is installed and the version is prior to 3.0.0 or the version cannot be determined but the software is known to be older.
  2. Verify /harvesterRegistration endpoint exposure
    Review your web server (Tomcat, Jetty, etc.) configuration files (server.xml, web.xml) and the Metacat web.xml to confirm whether the /harvesterRegistration URL pattern is mapped to a servlet. Also check if reverse proxy rules expose this endpoint publicly.
    Affected if The /harvesterRegistration endpoint is mapped and accessible (not removed or restricted at the web server level).
  3. Check LDAP authentication enforcement on the endpoint
    Examine the Metacat security configuration (typically in web.xml or metacat.properties) for servlet security constraints and LDAP authentication settings. Look specifically for whether the /harvesterRegistration endpoint requires LDAP authentication - the vulnerability exists precisely because these parameters bypass LDAP verification.
    Affected if LDAP authentication is not enforced or is bypassed for the /harvesterRegistration endpoint, meaning unauthenticated requests can reach the dbInsert() method.
  4. Confirm PostgreSQL with executeUpdate in use
    Review Metacat database configuration files (db.cfg, database.properties, or context.xml) to verify that PostgreSQL is the database backend. The vulnerability relies on Statement.executeUpdate() which permits stacked queries in PostgreSQL.
    Affected if PostgreSQL is configured as the database backend and JDBC connection uses standard Statement objects (not prepared statements with parameterized queries).

You are affected if you are running Metacat prior to version 3.0.0, the /harvesterRegistration endpoint is accessible, and LDAP authentication is not properly enforced on that endpoint.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Patch available Apply the vendor patch
Vendor patch github.com →
Interim mitigation

Upgrade to Metacat 3.0.0 or later. If immediate upgrade is not feasible, block access to the /harvesterRegistration endpoint at the web server or WAF level until the patch can be applied.

Recommended fix High confidence

Metacat 3.0.0 or later

  1. Identify current Metacat version by checking the deployed WAR file or server configuration
  2. Review Metacat 3.0.0 release notes and migration guide for any required configuration or data migration steps
  3. Back up the existing Metacat database and configuration files
  4. Deploy Metacat version 3.0.0 or later to the target environment
  5. Verify the /harvesterRegistration endpoint is no longer vulnerable by attempting the previously malicious request parameters
  6. Confirm normal HarvesterRegistration functionality works as expected after upgrade
Caveat Major version upgrades may include breaking changes; review 3.0.0 release notes for migration requirements

Generated from the published advisory — verify against the referenced sources before acting.

Have this fixed Scoped from the published advisory
  • Consultation3.0 h
  • Implementation5.0 h
  • Testing4.0 h
  • Review / QA2.0 h
14.0 hours of engineering $2,460
Get the patch applied

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,936.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-48114 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-48114 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data