0.1.1 • Published 8 years ago
sfn-xss v0.1.1
SFN-XSS
Safety Functions for Node.js XSS protection.
Install
npm i sfn-xssExample
const {
escapeTags,
escapeScriptHrefs,
escapeEventAttributes
} = require("sfn-xss");
var html = "<script>document.write('You are being hacked.')</script>";
var escaped = escapeTags(html);
console.log(escaped);
// <script>document.write('You are being hacked.')</script>
var html2 = `<a href="javascript:document.write('You are being hacked.');">`;
var escaped2 = escapeScriptHrefs(html2);
console.log(escaped2);
// <a data-href="jscript:document.write('You are being hacked.');">
var html3 = `<button onclick="document.write('You are being hacked.')">`;
var escaped3 = escapeEventAttributes(html3);
console.log(escaped3);
// <button data-onclick="document.write('You are being hacked.')">How they works?
Function escapeTags() will try to change matched tags into HTML entities,
function escapeScriptHrefs() will try to change matched href attributes
into data-href. and function escapeEventAttributes() will try to change
event attributes like onclick, onmouseover into data-onclick,
data-onmouseover, etc.