码迷,mamicode.com
首页 > 其他好文 > 详细

nc 命令

时间:2019-12-02 09:17:24      阅读:149      评论:0      收藏:0      [点我收藏+]

标签: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

nc 命令

标签:ssh   配置环境   netcat   exp   命令   php   下载地址   profile   webserver   

原文地址:https://blog.51cto.com/redone/2455065

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!