wscat icon indicating copy to clipboard operation
wscat copied to clipboard

Is there a way to send two separate messages?

Open grappas opened this issue 2 years ago • 2 comments

I need to send 2 messages (which first is the password) I've tried: wscat -c ws://127.0.0.1:33074/rcon -x "$(printf "secret\ncommand")" But string is treated as single command. In result pong is returned as bad password. I've also tried: wscat -c ws://127.0.0.1:33074/rcon -x $(printf "secret\ncommand") But in result command is ignored.

wscat -c ws://127.0.0.1:33074/rcon -x $(printf "secret\n") -x $(printf "command\n") Also returns bad password

grappas avatar Jun 08 '23 18:06 grappas

It doesn't seem to support sending two message with -x.

Why not just open the connection without -x and then send two separate messages? Or just combine two messages into single message and separate them at server side.

Lykr avatar Jul 10 '23 04:07 Lykr

It doesn't seem to support sending two message with -x.

Yes. I'm asking for support.

Why not just open the connection without -x and then send two separate messages?

I want to put it into the script. Now you see.

Or just combine two messages into single message and separate them at server side.

I'm not an author/owner. Project (server) is non-free.

grappas avatar Jul 10 '23 06:07 grappas