hairetz 2019-06-13
在网络工具中有“瑞士军刀”美誉的NetCat(以下简称nc),短小精悍,非常好用,同时有Windows和Linux版本。
主要用途有以下三种:
下载地址:https://eternallybored.org/misc/netcat/
解压到本地目录。
将上述路径添加到PATH环境变量中。
执行 nc -h 命令,显示 nc命令的参数列表。
参数格式
连接到某处:
nc [-options] hostname port[s] [ports]
监听端口等待连接:
nc -l -p port [-options] [hostname] [port]
比如命令:nc -l -p 9000
开启本机的 TCP 9000 端口并监听此端口的上传输的数据。