Linux下安装及简单使用nmap
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
随时随地阅读更多技术实战干货,获取项目源码、学习资料,请关注源代码社区公众号(ydmsq666)
from:https://blog.csdn.net/smilematch/article/details/50386927
nmap是一款非常实用的扫描工具,适用于linux、windows、mac三大主流平台。小编使用centos编译安装nmap-7.01版本。
下载包:
$wget http://nmap.org/dist/nmap-7.01.tar.bz2
如果下载不了,可以手动下载,然后解压
- 1
解压:
$tar -xvf nmap-7.01.tar.bz2
- 1
进入解压后的文件夹,取得root权限,执行#./configure
,若报错“configure: error: no acceptable C compiler found in $PATH”,说明未安装gcc,gcc安装命令为#yum install gcc
.
执行#make
若报错“-bash: make: command not found”,则执行#yum install g++
或#yum install gcc-c++
安装gcc。
执行#make install
安装软件。
检测是否安装成功:#nmap -v
至此,安装完成。下面,来讨论nmap软件的基本用法:
扫描特定主机:#nmap 192.168.1.2
扫描整个子网:#nmap 192.168.1.1/24
扫描多个目标:#nmap 192.168.1.2 192.168.1.5
扫描一个范围内主机:#nmap 192.168.1.1-100 (扫描IP地址为192.168.1.1-192.168.1.100内的所有主机)
向目标发送两个ping数据包:#nmap -sn -PE -c 2 --send-ip 192.168.1.1
END!
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献15条内容
所有评论(0)