CVE Catalog

CVE-2026-88892

MediumCVSS 5.0
Published: Updated: Translated: NVD NIST

Summary

OpenPanel's data importer fetches a caller-supplied URL using plain fetch() instead of the project's existing SSRF guard (safe-fetch.ts). Validation is limited to z.string().url(), so addresses such as http://127.0.0.1:9911/ or http://169.254.169.254/latest/meta-data/ are accepted. An authenticated organization member, including a default 'member' with no project access, can make the server connect to any reachable address, and the resulting HTTP status and status text are persisted and returned to that user.

Risk Assessment

The vulnerability enables scanning of internal hosts, ports, and paths (SSRF) and potential retrieval of data from internal services if the response is parsed as Umami CSV. This can lead to leakage of internal infrastructure information and unauthorized data access.

Recommendation

Apply the patch as soon as it becomes available; until then, restrict or disable the data import feature and enforce use of the existing safe-fetch.ts mechanism. Also verify that users without project access cannot invoke the importer.

Other vulnerabilities in OpenPanel

See all
Original NVD description (English source)

OpenPanel is an analytics platform. In all versions (no patched release available at time of publication), the data importer fetches a caller-supplied URL with plain fetch instead of the project's existing SSRF guard (apps/api/src/utils/safe-fetch.ts). In packages/importer/src/providers/umami.ts, parseRemoteFile calls fetch() on config.fileUrl, which is validated only by z.string().url(), so values such as http://127.0.0.1:9911/ or http://169.254.169.254/latest/meta-data/ are accepted; the shared createFileImportConfig factory gives the plausible provider the same field. An authenticated organization member — including a default 'member' with no project_access rows, for whom the intended access-level check is skipped because getProjectAccess returns boolean true rather than a level object — can therefore make the server connect to any address reachable from it. The resulting HTTP status and status text are persisted as Import.errorMessage and returned by import.get to the same user, providing a scanning oracle for internal hosts, ports and paths; if an internal response parses as Umami CSV, its rows are ingested as events and become readable in the attacker's analytics views.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS