wscat
wscat copied to clipboard
WebSocket cat
For example, on my $connect handler, I return ```json { statusCode: 200, body: 'Connected' } ``` But when I connect via `wscat`, I'm not seeing the body text in the...
Hello, I want to notify the reboot of a raspberry pi to another server using wscat. I wrote this script: ``` #!/bin/sh date >> reboot.log cmd="wscat -n -x reboot -c...
It is pretty common to send JSON over websockets, and it can be rather limiting to be forced to "minify" the JSON string, especially for local testing. The new '-j...
I'd like to formulate a shell command that opens the `wscat` interact shell and also runs a given command right after it connects. Currently, if I send a payload with...
This PR adds two options: `--hex-in` and `--hex-out`. If `--hex-in` is set, input is interpreted as space-separated bytes. E.g., `6a 61 7a 7a 70 69` is interpreted as `jazzpi`. If...
Is it possible to send null via wscat? I'm trying to debug a STOMP via WS connection and need to send `null` to finish the frame but the usual (ctrl+@...
I am cretaing a function to send the wscat to background and redirecting a FIFO file (mkfifo ppp) to drop the data to send by the streaming. ``` **sendToBackground**() {...
Added `--ping-interval` option to automatically send ping commands based on the interval.
- Can send multiple frames with the `-x` option - Can send frames with `-x`; yet still use the interactive console mode (useful to bootstrap a state in the connection)...