netcat ncat nc 常用功能介绍

梦想的初衷 提交于 2020-03-09 22:03:29

nc [选项] [主机] [端口(s)]

-l 开启 listen 模式

-c 执行命令

nc 与 netcat、ncat 同义。

当作服务器或客户端

<!-- lang: shell -->
$ nc -l 1234 # 服务器
$ nc 127.0.0.1 1234 # 客户端

端口扫描

<!-- lang: shell -->
$ nc -z www.baidu.com 80-81

端口转发

<!-- lang: shell -->
$ nc -l 80 -c "nc www.baidu.com 80" # 将发往本机 80 端口的数据转发给 google.com 的 80 端口

数据传输

文件从 client 传到 server;反过来也可以。

<!-- lang: shell -->
$ nc -l 1234 > filename.out
$ nc host.example.com 1234 < filename.in

参考

man nc

Forwarding ports using netcat

Netcat - Wikipedia

8 个实用的 Linux netcat 命令示例 比 man nc 多讲了些不常用的参数。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!