packetsender(1) | Network utility for sending and receiving TCP, UDP, SSL packets | packetsender(1) |
packetsender - Network utility for sending and receiving TCP, UDP, SSL packets
packetsender [options] address port data
Packet Sender is a utility that sends and receives TCP, UDP and SSL (encrypted TCP) packets on the ports of your choosing. It supports IPv4 and IPv6 and provides a GUI for final users. However, is also possible use Packet Sender in text mode via command line.
Some features:
Some uses:
Arguments:
The following command line will send a TCP packet, with a mixed-ascii as payload, to example.com, port 22. The command will wait 500 ms for a reply.
Similar to last command, but the TCP packet will be sent to port 21. An anonymous authentication will be used.
$ packetsender -taw 500 example.com 22 "Hello\nWorld"
The command below uses SSL and will ignore SSL errors. The command will wait 500 ms for a reply.
$ packetsender -taw 500 example.com 21 "USER anonymous\r\nPASS chrome@example.com\r\n"
Other good example how to access a homepage:
$ packetsender -saw 500 expired.packetsender.com 443 "GET / HTTP/1.0\r\n\r\n"
Packet Sender command line also can bind to custom ports to force IPv4/6 modes or multiple NIC, as shown below:
$ packetsender -w 500 -a example.com 80 "GET / HTTP/1.1\r\nHost: example.com\r\n\r\n"
$ packetsender -taw 3000 fe80::c07b:d517:e339:5a08 5005 "Hello\r"
$ packetsender -taw 3000 192.168.0.201 5005 "Hello\r"
$ packetsender -B 192.168.0.200 -taw 3000 192.168.0.201 5005 "Hello\r"
$ packetsender -B fe80::a437:399a:3091:266a%ethernet_32769 -taw 3000 fe80::c07b:d517:e339:5a08 5005 "Hello\r"
$ packetsender -B fe80::a437:399a:3091:266a -taw 3000 fe80::c07b:d517:e339:5a08 5005 "Hello\r"
tcpdump(8), wireshark(1), https://packetsender.com/documentation
Packet Sender was written by Dan Nagle <dan@dannagle.com> and is available at https://packetsender.com
This manual page was written by Joao Eriberto Mota Filho <eriberto@debian.org> for the Debian project (but may be used by others).
02 Aug 2020 | packetsender-7.0.5 |