---
id: CVE-2026-69253
title: >-
  Flowise is a drag-and-drop user interface for building customized large
  language model (LLM) flows
summary: "Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to version 3.1.3, several custom-tool components — AgentAsTool, ChatflowTool, and ExecuteFlow — ran code in the in-process \_vm2\_ sa…"
severity: high
cvss: 8.8
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'
cwe:
  - CWE-95
vendor: flowiseai
product: flowise
affected:
  - flowise < 3.1.3
patched:
  - flowise 3.1.3
published: '2026-08-04'
updated: '2026-09-14'
sourceUpdated: '2026-09-14T19:59:58.067'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-69253'
references:
  - url: >-
      https://github.com/FlowiseAI/Flowise/commit/3f257bdc8196082a178da7134a075824401b13b9
    label: security-advisories@github.com
  - url: 'https://github.com/FlowiseAI/Flowise/pull/6417'
    label: security-advisories@github.com
  - url: 'https://github.com/FlowiseAI/Flowise/releases/tag/flowise@3.1.3'
    label: security-advisories@github.com
  - url: >-
      https://github.com/FlowiseAI/Flowise/security/advisories/GHSA-wg86-r78f-74mp
    label: security-advisories@github.com
  - url: 'https://github.com/advisories/GHSA-wg86-r78f-74mp'
tags:
  - nvd
  - ghsa
  - npm
epss: 0.00629
epssPercentile: 0.48781
aliases:
  - GHSA-wg86-r78f-74mp
ecosystem: npm
ingestedAt: '2026-08-04T15:40:25.244Z'
---

## Overview

Flowise is a drag-and-drop user interface for building customized large language model (LLM) flows. Prior to version 3.1.3, several custom-tool components — AgentAsTool, ChatflowTool, and ExecuteFlow — ran code in the in-process  vm2  sandbox. To build that code, they inserted a user-controlled  baseURL  value straight into the JavaScript source, for example  const url = "${baseURL}/..."; . The only check on  baseURL  was  isValidURL , but a valid-looking URL can still contain characters that break out of a code string. An authenticated user could craft a  baseURL  that passed this check, closed the surrounding string, and injected their own JavaScript into the sandboxed script (code injection, CWE-94). The  vm2  sandbox runs in the same Node.js process as Flowise and exposes risky dependencies. As a result, the injected code could escape the sandbox and run arbitrary code on the Flowise server as the Flowise process user. Exploitation only requires an authenticated session. The issue is fixed in version 3.1.3, which passes the URL to the sandbox as data instead of inserting it into code and adds stricter URL validation.

## Affected

- `flowise < 3.1.3`

## Remediation

Upgrade past the affected range:

- `flowise 3.1.3`

## Package advisory (CVE-2026-69253)

Affected packages:

- `flowise <= 3.1.2`
- `flowise-components <= 3.1.2`

Patched in:

- `flowise 3.1.3`
- `flowise-components 3.1.3`

Source: https://github.com/advisories/GHSA-wg86-r78f-74mp
