GHSA-2rgp-f66f-4499

Suggest an improvement
Source
https://github.com/advisories/GHSA-2rgp-f66f-4499
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-2rgp-f66f-4499/GHSA-2rgp-f66f-4499.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-2rgp-f66f-4499
Aliases
  • CVE-2026-45083
Published
2026-05-13T15:33:24Z
Modified
2026-05-13T15:49:41.892620Z
Severity
  • 9.8 (Critical) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H CVSS Calculator
Summary
Goobi viewer - Core: Unauthenticated Solr Streaming Expression Proxy
Details

Summary

The Goobi viewer REST endpoint POST /api/v1/index/stream accepted an arbitrary Solr streaming expression from unauthenticated network clients and forwarded it to the backend Solr server without restriction. An attacker could read the complete Solr index and, in default Solr deployments, also modify or delete indexed records.

The API endpoint has now been removed.

Impact

  • Complete Solr index read without authentication. All documents indexed by the viewer including those protected by access conditions such as moving walls, licence requirements or IP restrictions - can be read in full.

  • Index data modification. update() streaming expressions overwrite indexed field values. An attacker can alter metadata, change ACCESSCONDITION values, or corrupt document structure.

  • Index data deletion. delete() streaming expressions permanently remove documents. A single expression can delete the entire collection, requiring a full re-index to recover.

Patches

The endpoint was removed in 326980f24c

Workarounds

Until an update can be deployed, the endpoint should be blocked by a reverse proxy or in the tomcat configuration.

For Apache httpd the following block can be used in the vhost configuration:

<LocationMatch ^.*api/v[12]/index/stream.*$>
    Require all denied
</LocationMatch>

Alternatively the following security constraint can be added in tomcat via the relevant web.xml:

<security-constraint>
      <web-resource-collection>
        <web-resource-name>blocked endpoint</web-resource-name>
        <url-pattern>/api/v1/index/stream</url-pattern>
        <url-pattern>/api/v1/index/stream/*</url-pattern>
      </web-resource-collection>
      <auth-constraint/>
</security-constraint>

References

Contact

If you have any questions or comments about this advisory:

Database specific
{
    "github_reviewed": true,
    "severity": "CRITICAL",
    "github_reviewed_at": "2026-05-13T15:33:24Z",
    "nvd_published_at": null,
    "cwe_ids": [
        "CWE-306"
    ]
}
References

Affected packages

Maven / io.goobi.viewer:viewer-core

Package

Name
io.goobi.viewer:viewer-core
View open source insights on deps.dev
Purl
pkg:maven/io.goobi.viewer/viewer-core

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.8.0
Last affected
26.04

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-2rgp-f66f-4499/GHSA-2rgp-f66f-4499.json"