mike/backend
Aeon (aaronjmars) e261d2e4bd fix(security): scope tabular-review document_ids by access (CWE-639)
The tabular-review routes accept user-supplied document_ids in
request bodies (POST /tabular-review, PATCH /:reviewId) and stale
cell rows on byte-fetching paths (POST /:reviewId/regenerate-cell,
POST /:reviewId/generate). None of those paths checked whether the
caller can read those documents — a free-account attacker could plant
foreign UUIDs into their own review and have the server fetch the
bytes from R2 + run an LLM extraction over them, returning verbatim
text via the standard review GET.

Adds filterAccessibleDocumentIds(documentIds, userId, userEmail, db)
next to the existing access helpers (owner-of-doc OR project member),
and applies it at the four entry points:

- POST /tabular-review               drop unauthorised on insert
- PATCH /:reviewId                   drop newly-added unauthorised; keep
                                     already-attached cells so non-owner
                                     collaborators don't accidentally
                                     orphan rows they can't directly
                                     access
- POST /:reviewId/regenerate-cell    refuse byte fetch when caller has
                                     no access to the underlying doc
- POST /:reviewId/generate           filter docIds before parallel LLM
                                     fetch (defense-in-depth for legacy
                                     cells planted before this fix)

Fails closed silently rather than 403'ing so legacy clients that pass
stale ids don't error out the whole review.

Detected by Aeon + manual review.
Severity: high
CWE-639 (Authorization Bypass Through User-Controlled Key)
2026-05-10 04:50:21 +00:00
..
src fix(security): scope tabular-review document_ids by access (CWE-639) 2026-05-10 04:50:21 +00:00
.env.example Add local repo contents 2026-04-29 19:49:06 +02:00
.gitignore feat: add OpenAI model support and harden OSS security defaults 2026-05-09 14:55:51 +08:00
bun.lock Sync security and backend profile updates 2026-05-08 20:45:16 +08:00
nixpacks.toml Add local repo contents 2026-04-29 19:49:06 +02:00
package-lock.json Sync security and backend profile updates 2026-05-08 20:45:16 +08:00
package.json Sync security and backend profile updates 2026-05-08 20:45:16 +08:00
schema.sql feat: add OpenAI model support and harden OSS security defaults 2026-05-09 14:55:51 +08:00
tsconfig.json Sync security and backend profile updates 2026-05-08 20:45:16 +08:00