This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

nps-sql-injection

1.0.1 • Public • Published

NPS sql-injection

This express module detects sql injection attacks and stops them by sending 403 as response. The module checks the query string, route params, and body for any sql injection related content.

var app = express();
var sqlinjection = require("sql-injection");
app.use(sqlinjection);

Installation

$ npm install sql-injection

Usage

code example:

var express = require("express");
var sqlinjection = require("sql-injection");

var app = express();

app.configure(function () {
  app.use(sqlinjection); // add sql-injection middleware here
});

app.get("/route1", function (req, res) {
  res.send(200, {});
});
app.get("/route2/:uid", function (req, res) {
  res.send(200, {});
});
app.post("/route3", function (req, res) {
  res.send(200, {});
});
app.listen(3000);

Package Sidebar

Install

npm i nps-sql-injection

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

9.51 kB

Total Files

9

Last publish

Collaborators

  • ratanhegde