
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
middleware-async
Advanced tools
A handy tool to write async/promise style middleware for express, connect-like.
Lets check at this code
app.use(async (req, res, next) => {
req.user = await User.findById(req.params.id).exec()
next()
})
The next()
will be executed after User.findById(...).exec()
is fulfilled because express allow handler returning Promise.
However, express does not support if promise returned by the handler is rejected. The following handlers will never be called.
Solution is simple by wrapping the handler with
import {asyncMiddleware} from 'middleware-async'
app.use(asyncMiddleware(async (req, res, next) => {
req.user = await User.findById(req.params.id).exec()
next()
}))
Note that once the next
function is called, following errors will not be thrown, and vice versa.
Example:
import {asyncMiddleware} from 'middleware-async'
app.use(asyncMiddleware(async (req, res, next) => {
next()
throw new Error('my error')
}))
the error new Error('my error')
will not be thrown because the next
function is called.
Or
import {asyncMiddleware} from 'middleware-async'
app.use(asyncMiddleware((req, res, next) => {
return Promise((resolve, reject)=> {
reject()
setTimeout(() => next(new Error('next error')), 0)
})
}))
the new Error('next error')
error will not be thrown because the promise is already rejected
Install it via npm or yarn
npm install --save middleware-async
#or
yarn add middleware-async
middlewaareAsync(middlware)
: returns a handler that covers error thrown or error that is rejected by handler via the next
function. The next function is called at most once.combineMiddlewares(list of handlers or list of list of handlers with any depth)
: combine many handlers into one handler. Very useful for testing
You can combine your handlers like combineMiddlewares([mdw1, mdw2], [[mdw3], [mdw4, [mdw5, mdw6]], mdw7], mdw8)
. The function will take care of expanding parameters.middlewareToPromise
: convert express-style handler into Promise by appending the next handler to the input handler.combineToAsync
: combination of middleewareToPromise
and combineMiddlewares
import {asyncMiddleware, combineMiddlewares, combineToAsync, middlewareToPromise} from 'middleeware-async'
describe('combineMiddlwares', () => {
test('should go through all middlewares', async () => {
const req = {val: 0}
await combineToAsync([
async (req, res, next) => {
await Promise.resolve()
req.val += 1
next()
},
(req, res, next) => {
req.val++
next()
},
])(req)
expect(req.val).toBe(2)
})
})
FAQs
A handy tool to work with async/promise express middleware
The npm package middleware-async receives a total of 1,318 weekly downloads. As such, middleware-async popularity was classified as popular.
We found that middleware-async 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.