hpp-middleware-web-security
v1.0.0
Published
http parameter pollution prevention middleware
Downloads
2
Readme
hpp-middleware-cs5331
an HTTP pollution prevention middleware for express apps
Node JS middleware to protect against HTTP Parameter Pollution attacks
This is a module for node.js and is installed via npm:
npm install hpp-middleware-cs5331 --save
Getting Started
Add the HPP middleware like this:
// ...
const hpp = require('hpp-middleware-cs533');
const app = express();
app.use(bodyParser.json());
app.use(hpp);