-
-
Save ajhsu/a40c610f4c1e508ecf288fd73af1443e to your computer and use it in GitHub Desktop.
WebSocket traffic sniffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
WebSocket.prototype.realSendFunc = WebSocket.prototype.send; | |
WebSocket.prototype.send = function(data) { | |
this.realSendFunc(data); | |
this.addEventListener('message', function(msg) { | |
console.log('>> ' + msg.data); | |
}, false); | |
this.send = function(data) { | |
this.realSendFunc(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