Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-2qqc-p94c-hxwh

Опубликовано: 16 апр. 2026
Источник: github
Github: Прошло ревью
CVSS3: 5.6

Описание

Flowise: Weak Default Express Session Secret

Detection Method: Kolega.dev Deep Code Scan

AttributeValue
Locationpackages/server/src/enterprise/middleware/passport/index.ts:55
Practical ExploitabilityHigh
Developer Approverfaizan@kolega.ai

Description

Express session secret has a weak default value 'flowise' when EXPRESS_SESSION_SECRET is not set.

Affected Code

secret: process.env.EXPRESS_SESSION_SECRET || 'flowise'

Evidence

The default session secret 'flowise' is publicly visible and weak. Session cookies signed with this secret can be forged by attackers.

Impact

Session hijacking and forgery - attackers can create arbitrary session cookies to impersonate any user, bypassing all authentication mechanisms.

Recommendation

Require EXPRESS_SESSION_SECRET to be set with a strong random value. Throw an error on startup if not configured. Use cryptographically strong random strings (minimum 256 bits).

Notes

The Express session secret defaults to the string 'flowise' when EXPRESS_SESSION_SECRET is not set (line 55). This secret is used to sign session cookies via express-session middleware. Since 'flowise' is publicly visible in the source code, an attacker can forge valid session cookies to impersonate any user without authentication. The .env.example file has this commented out (# EXPRESS_SESSION_SECRET=flowise), implying it's optional, which compounds the risk. Unlike development-only defaults, this code path is active in production if the environment variable is not set. The application should require EXPRESS_SESSION_SECRET to be explicitly configured with a cryptographically strong random value and fail to start otherwise.

Пакеты

Наименование

flowise

npm
Затронутые версииВерсия исправления

<= 3.0.13

3.1.0

5.6 Medium

CVSS3

Дефекты

CWE-798

5.6 Medium

CVSS3

Дефекты

CWE-798