Socket
Socket
Sign inDemoInstall

auto-sanitize

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    auto-sanitize

Implementation of google-caja to unify sanitize


Version published
Maintainers
1
Install size
155 kB
Created

Readme

Source

auto-sanitize

Implementation of google-caja, helps to sanitize objects by a single call of a function

Instalation

npm install auto-sanitize --save

Usage

// 'util' is just for you to see the contents of
// the objects, we don't actually need it to work
var util = require('util'),
sanitizer = require('auto-sanitize').sanitizeObject;

var dont_trust_object = 
	[{ 
      name:'<script>alert("alert")</script>Costa', 
      lastname:'Rica',
      provinces:[
        { id: 0, name:'San Jose', population:288054},
        { id: 1, name:'<script>alert("alert")</script>Cartago'},
        { id: 2, name:'Al<script>alert("alert")</script>ajuela'},
        { id: 3, name:'Heredia'},
        { id: 4, name:'<script>alert("alert")</script>Limon'},
        { id: 5, name:'<script>alert("alert")</script>Guanacaste<script>alert("alert")</script><script>alert("alert")</script>'},
        { id: 6, name:'Puntaren<script>alert("alert")</script>as'},
      ]
    },{ 
      name:'<script>alert("alert")</script>Costa', 
      lastname:'Rica'
    },{ 
      name:'<script>alert("alert")</script>Costa', 
      lastname:'Rica'
    }];
console.log('--should not trust in this: \n' + util.inspect(dont_trust_object, false, null));

var sanitized_object = sanitizer(dont_trust_object);

console.log('--should trust in this: \n' + util.inspect( sanitized_object,false, null));

Tests

npm test

Release History

  • 0.1.3 Initial release

Keywords

FAQs

Last updated on 23 Feb 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