Skip to content

Instantly share code, notes, and snippets.

@hthuong09
Forked from maskit/gist:2252422
Created September 26, 2016 01:57
Show Gist options
  • Save hthuong09/f9f124aef3cffa1b9aa723abfa1be4a6 to your computer and use it in GitHub Desktop.
Save hthuong09/f9f124aef3cffa1b9aa723abfa1be4a6 to your computer and use it in GitHub Desktop.
WebSocket traffic sniffer
(function () {
WebSocket.prototype._send = WebSocket.prototype.send;
WebSocket.prototype.send = function (data) {
this._send(data);
this.addEventListener('message', function (msg) {
console.log('>> ' + msg.data);
}, false);
this.send = function (data) {
this._send(data);
console.log("<< " + data);
};
console.log("<< " + data);
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment