CVE-2026-55631
Deferred Deferred - Pending Action

Path Traversal in DataEase Prior to 2.10.24

Vulnerability report for CVE-2026-55631, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-07

Last updated on: 2026-07-08

Assigner: GitHub, Inc.

Description

DataEase is an open source data visualization and analysis tool. Prior to 2.10.24, the font management module allows authenticated users to submit an arbitrary fileTransName when creating a font record; when the record is later deleted, the backend concatenates that stored value with the font storage directory and passes it to FileUtils.deleteFile() without path traversal sanitization, allowing deletion of arbitrary writable files in the application container. This issue is fixed in version 2.10.24.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-07
Last Modified
2026-07-08
Generated
2026-07-11
AI Q&A
2026-07-08
EPSS Evaluated
2026-07-09
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
dataease dataease to 2.10.24 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-22 The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in DataEase, an open source data visualization and analysis tool, in versions prior to 2.10.24. It involves the font management module, where authenticated users can submit an arbitrary fileTransName when creating a font record.

When the font record is deleted, the backend concatenates the stored fileTransName value with the font storage directory and passes it to FileUtils.deleteFile() without sanitizing for path traversal. This allows an attacker to delete arbitrary writable files within the application container.

The issue is fixed in version 2.10.24.

Impact Analysis

This vulnerability can allow an authenticated user to delete arbitrary writable files in the application container.

Such unauthorized file deletions can lead to data loss, disruption of application functionality, and potential denial of service.

Mitigation Strategies

To mitigate this vulnerability, you should upgrade DataEase to version 2.10.24 or later, where the issue has been fixed.

Until the upgrade is applied, restrict authenticated users' permissions to prevent them from creating or deleting font records, as the vulnerability requires authenticated access.

Compliance Impact

The vulnerability allows authenticated users to delete arbitrary writable files in the application container due to a path traversal flaw in the font management module. This can lead to data loss or service disruption.

Such unauthorized file deletion could impact compliance with standards and regulations like GDPR or HIPAA, which require protection of data integrity and availability. If critical files containing personal or sensitive data are deleted, it may result in violations of these regulations.

Therefore, this vulnerability poses a risk to maintaining compliance with data protection and security requirements mandated by common standards.

Detection Guidance

This vulnerability involves an authenticated user submitting a crafted fileTransName value that leads to path traversal and arbitrary file deletion when a font record is deleted. Detection involves monitoring for suspicious or unexpected file deletion activities within the font storage directory or outside it.

To detect exploitation attempts, you can audit logs for deletion operations targeting files outside the expected font directory or containing path traversal patterns (e.g., ../).

Suggested commands to help detect potential exploitation attempts include:

  • Check recent deletions in the font directory and suspicious deletions outside it using filesystem audit tools or commands like: `find /path/to/font/storage -type f -mtime -7 -exec ls -l {} \;` to list recently modified or deleted files.
  • Search application logs for deletion requests containing suspicious fileTransName values with path traversal patterns: `grep -r "fileTransName" /path/to/dataease/logs | grep "\.\./"`
  • If auditd is enabled, review audit logs for file deletion events outside the font directory: `ausearch -f /path/to/font/storage` or `ausearch -f /etc/passwd` (or other critical files) to detect unauthorized deletions.

Since the vulnerability requires authentication, monitoring authenticated user actions related to font record deletions can also help detect exploitation.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-55631. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart