CVE-2026-25559
Received Received - Intake
Path Traversal and RCE in OpenBullet2 Wordlist Handler

Publication date: 2026-06-08

Last updated on: 2026-06-08

Assigner: VulnCheck

Description
OpenBullet2 through version 0.3.2 contains a path traversal vulnerability in the wordlist endpoint that allows authenticated attackers to perform arbitrary file read, write, and delete operations by supplying unsanitized absolute paths to the upload handler and wordlist functions. Attackers can chain the file write and delete primitives to achieve remote code execution by manipulating critical system files such as /etc/passwd, with full system impact since the application runs as root by default.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-08
Last Modified
2026-06-08
Generated
2026-06-09
AI Q&A
2026-06-08
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
openbullet2 openbullet2 0.3.2
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
Compliance Impact

The vulnerability in OpenBullet2 allows authenticated attackers to perform arbitrary file read, write, and delete operations, potentially leading to remote code execution with full system impact. Such a compromise can result in unauthorized access to sensitive data and critical system files.

This level of unauthorized access and potential data manipulation can negatively impact compliance with common standards and regulations such as GDPR and HIPAA, which require strict controls over data confidentiality, integrity, and system security.

Specifically, the ability to read or alter files arbitrarily could lead to exposure or tampering of personal or protected health information, violating data protection requirements and potentially resulting in legal and financial penalties.

Executive Summary

CVE-2026-25559 is a path traversal vulnerability in OpenBullet2 version 0.3.2 and earlier. It exists in the wordlist endpoint, where authenticated attackers can supply unsanitized absolute file paths to the upload handler and wordlist functions.

This flaw allows attackers to read, write, and delete arbitrary files on the system. Because the application runs with root privileges by default, attackers can manipulate critical system files such as /etc/passwd.

By chaining file write and delete operations, attackers can achieve remote code execution, gaining full control over the affected system.

Impact Analysis

This vulnerability can have severe impacts including unauthorized access to sensitive files, modification or deletion of critical system files, and full system compromise.

Since OpenBullet2 runs as root by default, exploitation can lead to remote code execution, allowing attackers to execute arbitrary commands with the highest system privileges.

Such an attack can disrupt system operations, lead to data loss, and potentially allow attackers to maintain persistent control over the system.

Detection Guidance

This vulnerability involves path traversal via the wordlist endpoint in OpenBullet2, allowing authenticated attackers to read, write, and delete arbitrary files by supplying unsanitized absolute paths.

To detect exploitation attempts on your system or network, monitor HTTP requests targeting the wordlist endpoint or upload handler for suspicious absolute path parameters.

You can use network monitoring tools or web server logs to identify such requests. For example, using grep on web server logs to find requests containing suspicious path traversal patterns like "../" or absolute paths:

  • grep -iE "wordlist|upload" /var/log/nginx/access.log | grep -E "\.\./|/etc/passwd|/absolute/path"
  • Use intrusion detection systems (IDS) with rules to detect path traversal attempts targeting OpenBullet2 endpoints.

Additionally, checking for unexpected file changes or creations in critical system files (e.g., /etc/passwd) can indicate exploitation.

Mitigation Strategies

Immediate mitigation steps include restricting access to the OpenBullet2 application, especially the wordlist and upload endpoints, to trusted users only.

Ensure that only authenticated and authorized users can access these endpoints, as the vulnerability requires authentication.

Apply input validation and sanitization to prevent unsanitized absolute paths from being processed by the application.

If possible, update OpenBullet2 to a version later than 0.3.2 where this vulnerability is fixed.

As a temporary measure, consider running the application with least privileges instead of root to limit the impact of potential exploitation.

Monitor logs for suspicious activity and consider blocking malicious IPs attempting to exploit the vulnerability.

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