力能扛鼎的作业本 · 联想ThinkPad ...· 2 周前 · |
不敢表白的葫芦 · 如何将Chrome浏览器迁移到一台运行Win ...· 1 月前 · |
跑龙套的大脸猫 · 文化和旅游部副部长会见巴林工商大臣· 2 月前 · |
千杯不醉的跑步鞋 · 戴兵大使在安理会中非共和国问题公开会上的发言· 4 月前 · |
温暖的水煮鱼 · 打造一张自驾地图(1) - @Lenciel· 6 月前 · |
test netcat |
https://www.digitalocean.com/community/tutorials/how-to-use-netcat-to-establish-and-test-tcp-and-udp-connections |
淡定的葡萄
1 年前 |
跑龙套的大脸猫 · 文化和旅游部副部长会见巴林工商大臣 2 月前 |
千杯不醉的跑步鞋 · 戴兵大使在安理会中非共和国问题公开会上的发言 4 月前 |
温暖的水煮鱼 · 打造一张自驾地图(1) - @Lenciel 6 月前 |
127wexfordroad • July 22, 2014
Amazing. I’d heard of netcat and wanted to get started with it but did not know where to begin. This is a perfect intro, thanks!
64db8bc1c058488d86f21e12d0 • March 16, 2022
This comment has been deleted
64db8bc1c058488d86f21e12d0 • March 16, 2022
<strong>Nice</strong>
dav1243 • September 18, 2020
incredible article!
bearfish211 • October 9, 2018
Good article!!!
jemstar89 • March 25, 2017
Nice article. One point worth mentioning.
When using netcat as a simple web server, you have this command written: netcat -l 8888 < index.html
You actually need to specify the port in the command, or else it won’t work. Try this instead. netcat -lp 8888 < index.html I found this solution to work.
Keep up the good work!
SureshDH • August 26, 2016
nice article you covered lot of variants, can you please also show an example to listen( nc -lu <port_num>) on specific udp port. That could be helpful for the first readers.
jasonrhaas • September 14, 2015
great intro to
netcat
, thanks! I usenmap
for doing port scanning, but its nice to be able to do it withnetcat
as well, sincenmap
is often not included in the base linux packages.