1.0.0 • Published 4 years ago

hpp-middleware-web-security v1.0.0

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

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);