标签:ssh 配置环境 netcat exp 命令 php 下载地址 profile webserver
CentOS6.9下netcat工具安装1.下载
下载地址:http://sourceforge.net/projects/netcat/files/netcat/0.7.1/
下载的是netcat-0.7.1.tar.gz版本
2.解压
tar -zxvf netcat-0.7.1.tar.gz -C /usr/local
3.安装
# ./configure --prefix=/usr/local/netcat
# make
# make install
4.配置环境变量
vim /etc/profile
export NETCAT_HOME=/usr/local/netcat
export PATH=$PATH:$NETCAT_HOME/bin
5.测试
# nc -help
nc 命令扫描服务存活的使用方式:
# nc -v -w 1 192.168.200.200 -z 1-100
node1 [192.168.200.200] 22 (ssh) open
node1 [192.168.200.200] 80 (http) open
nc 命令做为web客户端的使用方式:
nc WEBSERVER PORT
GET /index.html HTTP/1.1
Host: 192.168.200.201
Referer: http://www.ccxx/index.php?abc
User-Agent: IE11
标签:ssh 配置环境 netcat exp 命令 php 下载地址 profile webserver
原文地址:https://blog.51cto.com/redone/2455065