Merge pull request #193 from mikeprimm/master
Properly stringify chat inputs - prevents bad JSON input, potential security exposures
This commit is contained in:
commit
b2df79eb9c
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ componentconstructors['chat'] = function(dynmap, configuration) {
|
|||
if (dynmap.options.allowwebchat) {
|
||||
// Accepts 'sendchat'-events to send chat messages to the server.
|
||||
$(dynmap).bind('sendchat', function(event, message) {
|
||||
var data = '{"name":"'+ip+'","message":"'+message+'"}';
|
||||
var data = '{"name":'+JSON.stringify(ip)+',"message":'+JSON.stringify(message)+'}';
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'up/sendmessage',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue