Flowise on current main allows an authenticated user with
documentStores:preview-process permission to trigger the S3 Directory
document loader with attacker-controlled S3 object keys. The loader joins
each returned S3 key with a temporary directory using path.join(tempDir, key)
and writes the object bytes to disk without validating traversal sequences
such as ../. Cleanup later removes only the original temporary directory,
so files written outside that directory persist on the host filesystem.
This yields arbitrary file write with the privileges of the Flowise
server process.
A related variant exists in the S3File loader when
fileProcessingMethod = unstructured (same root cause; its cleanup behavior
turns it into a mixed arbitrary write/delete/DoS primitive).
## Affected component
packages/components/nodes/documentloaders/S3Directory/S3Directory.ts
filePath = path.join(tempDir, key) (unsanitized) mkdirSync creates parent path writeFileSync writes attacker-controlled bytes tempDir, so escapedRelated (variant):
packages/components/nodes/documentloaders/S3File/S3File.ts
(lines 756, 780, 782, 817 — arbitrary write + recursive dirname delete)
Routes exposed:
packages/server/src/routes/documentstore/index.ts:41,45
(/api/v1/document-store/loader/preview,
/api/v1/document-store/loader/process/:loaderId)
documentStores:preview-process packages/server/src/services/documentstore/index.ts:588 passesdata.loaderConfig straight to the loader node with no pathS3Directory accepts a custom serverUrl, so the attacker does not
need access to an existing trusted AWS bucket — they can point Flowise
at a local MinIO or any S3-compatible endpoint they control
Authenticated arbitrary file write to any path writable by the Flowise
process
Deployment-dependent lift to RCE if the service account can modify
executable, startup, or interpreter-loaded files
(e.g. .bashrc, systemd units, cron files, require.resolve targets,
package.json postinstall scripts). This is not guaranteed
product-wide.
Flowise instance running (HTTP server mode)
documentStores:preview-process role No additional infrastructure required — serverUrl can point to
attacker-controlled S3-compatible endpoint
documentStores:preview-process../../../../tmp/flowise-poc.txt Observe that cleanup removes only the original temp directory; the escaped file persists
Local reproduction confirmed: writing a key containing
../../escape-target/poc.txt from a nested temp root created the file
outside the temp directory, and the cleanup removed only tempDir.
The loader trusts S3 object keys as safe local relative paths. It should
canonicalize the destination with path.resolve(...), verify the resolved
path remains within the intended temp directory, and reject traversal or
absolute-path patterns before any directory creation or file write.
The repository already has shared path validators that are not used here:
packages/components/src/validator.ts:35 defines traversal checkspackages/components/src/validator.ts:295 defines sanitizeFileName
Recommended fix:
path.join(tempDir, key) with a resolve-and-verify flow tempDir S3File loader (fileProcessingMethod = unstructured branch){
"github_reviewed_at": "2026-08-04T17:43:45Z",
"nvd_published_at": null,
"cwe_ids": [
"CWE-22",
"CWE-73"
],
"severity": "HIGH",
"github_reviewed": true
}