🛡️ CVE-2026-56277 — flowise

🟡 CVSS 6.5 — Medium ✅ No Known Exploit CWE-942 OSV
6.5
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Flowise: Hardcoded CORS wildcard on TTS endpoint enables cross-origin credential abuse from any webpage

Summary

The TTS generation endpoint sets Access-Control-Allow-Origin: * as a hardcoded response header, independent of the server's CORS configuration. This enables any webpage to make cross-origin requests to generate speech using stored credentials.

Root Cause

```typescript

// packages/server/src/controllers/text-to-speech/index.ts:83

res.setHeader('Access-Control-Allow-Origin', '*')

res.setHeader('Access-Control-Allow-Headers', 'Cache-Control')

```

Impact

  • Cross-origin credential abuse — any webpage can trigger TTS using stored credentials
  • Bypasses the server's CORS policy (getCorsOptions()) which is otherwise restrictive by default
  • Combined with Finding 3 (TTS credential abuse), enables drive-by credential abuse via malicious webpages

Suggested Fix

Remove the hardcoded CORS wildcard and let the server's CORS middleware handle the headers:

```typescript

// Remove these lines:

// res.setHeader('Access-Control-Allow-Origin', '*')

// res.setHeader('Access-Control-Allow-Headers', 'Cache-Control')

```

References

  • packages/server/src/controllers/text-to-speech/index.ts line 83

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. Rated impact: confidentiality low, integrity low, availability none.

Affected software

CVE-2026-56277 is recorded against 1 package.

  • flowise

Timeline and source

Published on 20 May 2026 and last revised on 8 July 2026. No public exploit is currently recorded for this entry. Record sourced from OSV.

References

github.com (Web)
github.com (Package)

Details

Severity MEDIUM
CVSS Score 6.5
CVSS Vector CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N
CWE CWE-942
Public Exploit ✅ No
Source OSV
Published 2026-05-20
Updated 2026-08-12
Modified 2026-07-08
Fix URL N/A

Affected Packages

Software From version Fixed in
flowise

Similar Threats

Vulnerability Monitoring

Track new vulnerabilities in flowise

CVE-2026-56277 is rated CVSS 6.5 Medium. BotEraser monitors your WordPress installation and notifies you when software you use appears in our vulnerability database.

Set Up Free Alerts →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.