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.
create-express-auth-middleware
Advanced tools
Library to create Express JS authentication and authorization middlewares
Library to easily create Express JS authentication and authorization middlewares using predicate functions.
npm install create-express-auth-middleware
View samples folder for more specific examples
Make a API call from client, and include an Authorization header, e.g.
Authorization: Bearer <your-client-token>
Create Express app with predicate based authentication and authorization middlewares
const app = require("express")();
const { create_authn_middleware, create_authz_middleware } = require("create-express-auth-middleware");
// Make all routes in this express app to be authentication protected.
// Meaning all routes defined later can only be called if the request passes this predicate function
// This DOES NOT mean that routes are fully protected yet,
// as you need to ensure users have sufficient permission to access APIs using authorization middleware.
app.use(create_authn_middleware((req) => req.get("Authorization") === "some_JWT_Value"));
// The actual route that requires both authentication and authorization to run.
app.get(
"/data/:userID",
// Add authorization middleware to ensure users can only access their own data
// Uses an imaginary decodeJWT function
// Checks that the specified userID in the URL matches user's own userID value in their token.
create_authz_middleware((req) => decodeJWT(req.get("Authorization")).userID === req.params.userID),
// Uses an imaginary rate limiting function
// If the function fails, the error object is returned,
// The object can contain 'status' to override the error status code,
// and can have a 'error' string to override the default error message
create_authz_middleware((req) => isNotRateLimited(req) || { status: 429, error: "Too many requests" }),
// This request handler will only run if both predicate above returns true!
(req, res) => res.status(200).json({ data: "Protected user data" })
);
If authentication failed, you get a 401 code with the following response by default
{ "ok": false, "error": "Authentication Failed" }
If authorization failed, you get a 403 code with the following response by default
{ "ok": false, "error": "Authorization Failed" }
The only difference between authentication middlewares and authorization middlewares is their error HTTP status codes and their default error responses as shown above.
Instead of building your own authentication and authorization backend, you can use auth providers like Firebase Auth, Okta, Auth0 to provide auth services and just use this library to create authentication and authorization middlewares built on top of their API.
Integrations available
This project is made available under MIT LICENSE and written by JJ
FAQs
Library to create Express JS authentication and authorization middlewares
The npm package create-express-auth-middleware receives a total of 14 weekly downloads. As such, create-express-auth-middleware popularity was classified as not popular.
We found that create-express-auth-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.