Disallow ASCII control characters in messages
This commit is contained in:
parent
2a8b94e26a
commit
484b695965
|
@ -116,7 +116,13 @@ ChatModule.prototype.handleChatMsg = function (user, data) {
|
|||
return;
|
||||
}
|
||||
|
||||
data.msg = data.msg.substring(0, 240);
|
||||
// Limit to 240 characters, disallow all ASCII control characters except tab (\t)
|
||||
data.msg = data.msg.substring(0, 240).replace(/[\x00-\x08\x0a-\x1f]+/g, " ");
|
||||
|
||||
// Disallow blankposting
|
||||
if (!data.msg) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!user.is(Flags.U_LOGGED_IN)) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue