标签: javascript node.js xss
每当我将input of a user发送回客户端时,我都会使用以下功能。
input of a user
var xss = function(text) { return text.replace(/&/g, '&'). replace(/</g, '<'). replace(/"/g, '"'). replace(/'/g, '''); }
现在,最近有人说我们很容易受到这些攻击。此功能安全吗?