From 6e79c5c84179fd68c09e0e5167479ce6759f23df Mon Sep 17 00:00:00 2001 From: Hexagon Date: Fri, 24 Feb 2017 00:03:24 +0100 Subject: [PATCH] Session uuids managed by server --- package.json | 3 ++- public/css/default.css | 17 ++++++++++++++++- public/index.html | 16 +++++++++++----- public/js/lib/console.js | 18 ++++++++++++------ public/js/lib/host.js | 19 ++++++++++++------- server.js | 11 +++++++---- 6 files changed, 60 insertions(+), 24 deletions(-) diff --git a/package.json b/package.json index 3c47a7f..bab2740 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "bin" : "./server.js", "dependencies": { "node-static": "~0.7.9", - "socket.io": "~1.7.2" + "socket.io": "~1.7.2", + "uuid": "*" }, "os": [ "darwin", diff --git a/public/css/default.css b/public/css/default.css index f494b98..689ef9e 100644 --- a/public/css/default.css +++ b/public/css/default.css @@ -29,6 +29,21 @@ body, html { .info { color: #99FFFF; } .neutral { color: #eeeeee; } +/*------------------------------------*\ + PARTICIPANTS +\*------------------------------------*/ +#participants { + right: 0; + top: 0; + bottom: 0; + width: 200px; + position: absolute; + padding:0; + margin:0; + background-color: #282A2D; +} + + /*------------------------------------*\ CHAT \*------------------------------------*/ @@ -70,7 +85,7 @@ body, html { INPUT & LOADER \*------------------------------------*/ #input_wrapper { - right:0; + right:200px; bottom:0; left:0; position: absolute; diff --git a/public/index.html b/public/index.html index e8143c0..7f45379 100644 --- a/public/index.html +++ b/public/index.html @@ -18,22 +18,28 @@
  • SRV> Booting ...
  • + +
    + hey +
    + -
    +
    |
    + Yo
    - + + --> + + diff --git a/public/js/lib/console.js b/public/js/lib/console.js index 45661c3..b11a39d 100644 --- a/public/js/lib/console.js +++ b/public/js/lib/console.js @@ -106,7 +106,7 @@ define(['$', 'castrato', 'settings', 'templates', 'sounds', 'room', 'notificatio }, message: function (data) { - commands.post('message', data.message, data.nick); + commands.post('message', data.message, '[' + data.uuid.substring(0,8) + '] ' + data.nick); }, clearInput: function () { @@ -188,16 +188,22 @@ define(['$', 'castrato', 'settings', 'templates', 'sounds', 'room', 'notificatio return (!parameters.room) ? commands.post('error', templates.messages.msg_no_room) : commands.post('error', templates.messages.msg_no_key); } - // Before sending the message. - // Encrypt message using room UUID as salt and key as pepper. + var plainData = { + msg: buffer, + nick: parameters.nick ? parameters.nick : false + }, + + encData = $.AES.encrypt(JSON.stringify(plainData), parameters.room + parameters.key).toString(), + + hashRoom = $.SHA1(parameters.room); + mediator.emit( 'socket:emit', { data: 'message:send', payload: { - room: $.SHA1(parameters.room), - msg: $.AES.encrypt(buffer, $.SHA1(parameters.room) + parameters.key).toString(), - nick: parameters.nick ? $.AES.encrypt(parameters.nick, $.SHA1(parameters.room) + parameters.key).toString() : false + room: hashRoom, + data: encData } } ); diff --git a/public/js/lib/host.js b/public/js/lib/host.js index 5c5796c..e6aba58 100644 --- a/public/js/lib/host.js +++ b/public/js/lib/host.js @@ -146,14 +146,19 @@ define(['$', 'castrato','settings','templates','hosts','window'], function ($, m }) .on('message:send', function (data) { - var decrypted = $.AES.decrypt(data.msg, $.SHA1(parameters.room) + parameters.key), - sanitized = $.escapeHtml(decrypted), - nick = !data.nick ? templates.default_nick : $.escapeHtml($.AES.decrypt(data.nick, $.SHA1(parameters.room) + parameters.key)); - - if (!decrypted) { + // Do not trust incoming data + try { + var plain = $.AES.decrypt(data.data, parameters.room + parameters.key), + plainObj = JSON.parse(plain), + sanitized = $.escapeHtml(plainObj.msg), + nick = !plainObj.nick ? templates.default_nick : plainObj.nick; + if (!plain) { + mediator.emit('console:error', templates.messages.unable_to_decrypt); + } else { + mediator.emit('console:message', { message: sanitized, nick: nick, uuid: data.uuid } ); + } + } catch (e) { mediator.emit('console:error', templates.messages.unable_to_decrypt); - } else { - mediator.emit('console:message', { message: sanitized, nick: nick } ); } }) diff --git a/server.js b/server.js index ad99050..323abde 100644 --- a/server.js +++ b/server.js @@ -3,7 +3,8 @@ const files = require('node-static'), port = process.env.PORT || 8080, - path = require('path'); + path = require('path'), + uuid = require('uuid'); var file, @@ -28,6 +29,8 @@ server.listen(port, function(){ io.on('connection', function(socket) { + socket.uuid = uuid(); + socket.on('room:join', function(req) { if( req ) { socket.emit('room:joined',req); @@ -65,14 +68,14 @@ io.on('connection', function(socket) { if(req && req.room) { // Check that the message size is within bounds - var total_msg_size = (req.msg) ? req.msg.length : 0 + (req.nick) ? req.nick.length : 0; + var total_msg_size = (req.data) ? req.data.length : 0; if( total_msg_size <= 4096) { // Check that at least 100ms has passed since last message if( socket.last_message === undefined || new Date().getTime() - socket.last_message > 100 ) { - socket.broadcast.to(req.room).emit('message:send', { msg: req.msg, nick: req.nick} ); - socket.emit('message:send', { msg: req.msg, nick: req.nick} ); + socket.broadcast.to(req.room).emit('message:send', { data: req.data, uuid: socket.uuid } ); + socket.emit('message:send', { data: req.data, uuid: socket.uuid } ); socket.last_message = new Date().getTime();