
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
auto-sanitize
Advanced tools
Implementation of google-caja, helps to sanitize objects by a single call of a function
npm install auto-sanitize --save
// '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));
npm test
FAQs
Implementation of google-caja to unify sanitize
We found that auto-sanitize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.