udpsend is a simple udp sender tool written in C++ that allows to send a string or message via UDP to a specific IP and port.
- Windows: https://github.com/Flashdown/udpsend/releases/download/udpsend_v0.6/udpsend.exe
- Linux: https://github.com/Flashdown/udpsend/releases/download/udpsend_v0.6/udpsend_linux
- MacOS: https://github.com/Flashdown/udpsend/releases/download/udpsend_v0.6/udpsend_macos
you can enter the message interactivly by simply not passing the <message> argument:
udpsend <server> <port>
udpsend <server> <port> <message>
Example sending a string:
udpsend myinvalidserver.invalid 1234 HelloWorld
Example sending a message:
udpsend myinvalidserver.invalid 1234 "Hello World, does anyone read me?"
- server: IPv4, IPv6 address or FQDN
- port: Port number to send the message to
- message: Message to send via UDP