Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
prisma-rls
Advanced tools
🚧 The package is currently under active development, so it's not recommended for production
Row-Level Security (RLS) traditionally requires databases with native support and custom security policies for each table.
This library provides an alternative: a Prisma client extension that automatically adds "where" clauses to all model queries. This method works without database-side RLS support (e.g., in MySQL).
Note that this extension doesn't apply to raw queries. For those, you must handle them manually or choose database with built-in support.
Define shared types:
import { Prisma, User } from "@prisma/client";
import { PermissionsConfig } from "prisma-rls";
export type Role = "User" | "Guest";
export type PermissionsContext = { user: User | null };
export type RolePermissions = PermissionsConfig<Prisma.TypeMap, PermissionsContext>;
export type PermissionsRegistry = Record<Role, RolePermissions>;
Define permissions for each model in your schema, they also can be a function:
import { RolePermissions } from "./types";
export const User: RolePermissions = {
Post: {
read: { published: { equals: true } },
create: true,
update: (permissionContext) => ({
author: {
id: { equals: permissionContext.user.id },
},
}),
delete: (permissionContext) => ({
author: {
id: { equals: permissionContext.user.id },
},
}),
},
User: {
read: (permissionContext) => ({
id: { equals: permissionContext.user.id },
}),
create: false,
update: (permissionContext) => ({
id: { equals: permissionContext.user.id },
}),
delete: false,
},
}
In most cases, you will have multiple roles. To define them in a type-safe manner, follow this pattern:
import { guest } from "./guest";
import { user } from "./user";
import { PermissionsRegistry } from "./types";
export const permissionsRegistry = {
User: user,
Guest: guest,
} satisfies PermissionsRegistry;
Prisma extensions don't support dynamic contexts, so create an extension per context:
import { Prisma, PrismaClient } from "@prisma/client";
import Fastify, { FastifyRequest } from "fastify";
import { createRlsExtension } from "prisma-rls";
import { permissionsRegistry, PermissionsContext } from "./permissions";
(async () => {
const prisma = new PrismaClient();
const server = Fastify();
const resolveDb = async (request: FastifyRequest) => {
const user = await resolveUser(request.headers.authorization);
const userRole = user ? user.role : "Guest";
const permissionsContext: PermissionsContext = { user };
const rlsExtension = createRlsExtension({
dmmf: Prisma.dmmf,
permissionsConfig: permissionsRegistry[userRole],
context: permissionsContext,
});
return { db: prisma.$extends(rlsExtension) };
};
server.get("/user/list", async function handler(request, reply) {
const { db } = resolveRequestConext(request);
return await db.user.findMany();
});
await server.listen({ port: 8080, host: "0.0.0.0" });
})();
After that, all non-raw queries will be executed according to the defined permissions.
A known edge case involves all belongs-to mandatory relationships on the owner side (the entity containing the foreign key).
Prisma doesn't generate filters in that case due to potential referential integrity violations, which could lead to inconsistent query results. Because we can't apply RLS filters in this case, no additional "where" clauses are added.
When models have required foreign keys with restricted read access, you have three options:
null
valuesFAQs
Prisma client extension for row-level security on any database
The npm package prisma-rls receives a total of 306 weekly downloads. As such, prisma-rls popularity was classified as not popular.
We found that prisma-rls demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.