Socket
Socket
Sign inDemoInstall

node-procexss

Package Overview
Dependencies
4
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-procexss

Middleware to help to prevent xss attacks in your Express/Connect apps


Version published
Weekly downloads
260
decreased by-12.16%
Maintainers
1
Install size
216 kB
Created
Weekly downloads
 

Readme

Source

node-procexss Build Status Coverage Status

NPM

Middleware to help to prevent XSS attacks in your Express/Connect apps

Install

$ npm install node-procexss

API

var procexss = require('node-procexss')

procexss(options)

This middleware sanitize req.body or req.query and adds a req.dirty flasg to identify.

Options
  • pattern String - Optional. A regex to check xss. Defaults to embedded!!
  • whiteList Array[String] - Optional. List of ignored urls. Defaults to []
  • sanitizeBody Boolean - Optional. If the req.body sanitize is enabled or not. Defaults to true
  • sanitizeQuery Boolean - Optional. If the req.query sanitize is enabled or not. Defaults to true
  • mode String -Optional. A flag to choose mode (sanitize | header)
  • sanitize: Works on request body or query and sanitize it if xss exist.
  • header: Adds X-XSS-Protection header to response.
  • header Options for header mode (enabled, mode)
  • enabled Boolean - Optional. If the header is enabled or not (see header docs). Defaults to 1.
  • mode String - Optional. Mode to set on the header (see header docs). Defaults to block. Defaults to sanitize

Example

Simple express example

The following is an example of some server-side code that shows basic setup.

var express = require('express')
var procexss    = require('node-procexss')

var app = express()

 app.use(function(req, res, next) {
        req.query = url.parse(req.url, true).query
        next()
})

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({
       extended: false
}))

// parse application/json
app.use(bodyParser.json())

app.use(procexss(opts))

//Whitelist
app.use(procexss({
            whiteList: ['/dashboard'] 
            }))
//Mode `header` default settings
app.use(procexss({
                mode: 'header'
            }))
//Mode `header` with custom mode
app.use(procexss({
                mode: 'header',
                header: {
                    enabled: 1,
                    mode: 'foo'
                }
            }))

License

MIT

Keywords

FAQs

Last updated on 02 Mar 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc