netcat ncat nc 常用功能介绍

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 多讲了些不常用的参数。

你可能感兴趣的:(netcat,nc,ncat)