Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
express-header-blocker
Advanced tools
Prohibit access for the particular header orders with auto training
A library that provides middleware to block requests based on the order of certain headers
npm install express-header-blocker
Import the middleware
const headerBlocker = require("express-header-blocker");
Apply the middleware to specific routes or globally to all routes
// Apply globally to all routes
app.use(headerOrderBlockerMiddleware());
// Apply to specific routes
app.post('/secure-route', headerOrderBlockerMiddleware(), (req, res) => {
...
});
The middleware accepts an options object with the following properties:
isModelLearningEnabled
: A boolean value that determines whether the middleware should enable model learning. When enabled, the middleware will learn and block new header orders that are not explicitly defined in the onlyAnalyzeHeaders
configuration but can be swapped to the memento. (Default: false
)
onlyAnalyzeHeaders
: An array of header names (case-insensitive) that should be analyzed by the middleware. If provided, only the specified headers will be considered for header order analysis. (Default: []
- meaning all headers will be considered)
sensitivity
: An integer that sets the sensitivity level of the header order analysis. The sensitivity determines how tolerant the middleware should be towards different header orders. Higher values make the middleware more permissive. (Default: 2
)
Configure the middleware when applying it if needed
const options = {
isModelLearningEnabled: true,
onlyAnalyzeHeaders: ["user-agent", "content-type"],
sensitivity: 3,
};
app.use(headerOrderBlockerMiddleware(options));
The middleware maintains a collection of blocked header orders. If a request's header order matches a blocked order or can be transformed into a blocked order within the specified sensitivity level, the request will be blocked.
To block a specific header order manually, you can use the req.block()
method within the route handler:
app.post("/block-custom-order", (req, res) => {
req.block();
res.send("request is blocked due to a custom order");
});
const options = {
onlyAnalyzeHeaders: ["authorization", "user-agent"],
sensitivity: 2,
};
app.use(headerOrderBlockerMiddleware(options));
The middleware will only analyze the 'Authorization' and 'User-Agent' headers for order anomalies and block requests that match a blocked order within a sensitivity of 2.
const options = {
isModelLearningEnabled: true,
onlyAnalyzeHeaders: ["accept", "content-type"],
};
app.use(headerOrderBlockerMiddleware(options));
With model learning enabled, the middleware will start learning from blocked headers, and if it encounters a new header order that requires blocking, it will add it to the blocked headers collection.
const express = require("express");
const headerBlocker = require("express-header-blocker");
const PORT = 3000;
const app = express();
app.use(
headerBlocker({
isModelLearningEnabled: false,
onlyAnalyzeHeaders: [
"host",
"accept",
"user-agent",
"accept-encoding",
"accept-language",
],
})
);
app.use("/", (req, res, next) => {
if (req.blocked) {
return res.send("blocked");
}
next();
});
app.get("/", (_, res) => {
res.send(
`<form method="post" action="/block"><button type="submit">Block me</button></form>`
);
});
app.post("/block", (req, res) => {
req.block();
return res.send("you are now blocked");
});
app.listen(PORT);
FAQs
Prohibit access for the particular header orders with auto training
The npm package express-header-blocker receives a total of 0 weekly downloads. As such, express-header-blocker popularity was classified as not popular.
We found that express-header-blocker 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.