PT-2026-55846 · Npm · Neotoma
Publicado
2026-06-25
·
Atualizado
2026-06-25
CVSS v4.0
0.6
Baixa
| Vetor | AV:N/AC:L/AT:P/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:U |
Summary
The
/list relationships and /retrieve graph neighborhood endpoints call getAuthenticatedUserId (confirming a valid session exists) but do not pass the resolved user ID into the Supabase query as an .eq("user id", userId) filter. As a result, queries return rows from all users rather than scoping to the authenticated caller's data.Affected code
/list relationships (src/actions.ts):- Calls
getAuthenticatedUserIdbut does not apply.eq("user id", userId)to the relationships query - Uses
.or()string interpolation for entity ID matching without input validation
/retrieve graph neighborhood (src/actions.ts):- Same pattern: auth resolved, user ID not applied to query filter
Affected versions
v0.13.0
Prerequisites
- A valid authentication token for the Neotoma instance (attacker must have a legitimate account on the same instance)
- A known entity ID belonging to another user (~96 bits of entropy — brute-force not practical)
An unauthenticated caller is rejected at the auth middleware layer. The gap requires a second user account on the instance.
Impact
An authenticated user with a known cross-user entity ID can retrieve relationship edges and graph neighborhood data belonging to another user. No write capability is exposed.
Severity
Low under current conditions — no multi-tenant deployments exist. Escalates to Medium the moment two or more user accounts share an instance.
Remediation
- Add
.eq("user id", userId)to all Supabase queries in both handlers - Validate entity ID inputs with
isNeotomaEntityIdbefore query construction - Replace
.or()string interpolation with separate scoped.eq()calls
Fix tracked in #365 (list relationships) and #366 (retrieve graph neighborhood). Gate gap tracked in #372.
Correção
Encontrou algum problema na descrição? Tem algo a acrescentar? Fique à vontade para nos escrever 👾
Enumeração de Fraquezas
Identificadores relacionados
Produtos afetados
Neotoma