masnmapscan-V1.0安装

https://github.com/hellogoldsnakeman/masnmapscan-V1.0

脚本集合masscan、nmap工具优势,运行在Python2的环境里。

# masnmapcan-V1.0.py

1:nmap安装:

rpm -ivh nmap-7.80-1.x86_64.rpm

2:首先pip install -r requirements.txt安装所需插件,然后将ip每行一个,保存到ip.txt,与本程序放在同一目录下,masscan安装完成后也与本程序放在同一目录下,运行程序即可。

3:目录下有3个文件:ip.txt(手动创建) masnamp-v1.0_1.py [masscan文件夹](masscan运行环境)

4:脚本运行启动:python masnmapcan-V1.0.py

最终会在当前目录下生成一个scan_url_port.txt的扫描结果

#############################################################

kali上安装顺利;在centos 7.6上遇到的问题,库文件需要自己下载,这里提供操作步骤:

如果运行脚本,报缺少libpcap,那就需要安装库文件:

前提:要有yum源

【挂载centOS 版本:7.6.1810

1. 通过上传iso文件挂载本地yum

建立ISO文件存放目录(/repo/iso)和ISO文件的挂载目录(/repo/rhel6)

# mkdir /repo   

# mkdir /repo/iso   

 # mkdir /repo/rhel6

2. 将iso镜像文件直接上传至/repo/iso目录下.

挂载ISO文件# mount -t iso9660 -o loop /repo/iso/CentOS-7-x86_64-DVD-1810.iso /repo/rhel6

(输出只读模式)

# df -h           

文件系统容量  已用  可用 已用%% 挂载点

/dev/sda5              97G  5.8G   86G   7% 

/dev/shm/dev/loop0            3.2G  3.2G     0 100% /repo/rhel6

3.编辑repo文件

# vi /etc/yum.repos.d/rhel6.repo

[Server]

name=rhel6server

baseurl=file:///repo/rhel6/

enable=1

gpcheck=1

gpgkey=file:///repo/rhel6/RPM-GPG-KEY-CentOS-7

4.测试 

#yum clean all    (清理yum缓存)

#yum list(显示所有rpm)

#yum grouplist(分组显示软件)

#yum groupinstall “Base” “Compatibility libraries” “Development tools”       (下载安装组包)

5.将mount命令写入fstab为方便,把这些mount写进/etc/fstab,以便开机就挂载:/repo/iso/rhel-server-6.0-x86_64-dvd.iso  /repo/rhel6  iso9660  loop  0  0

#########################################################

安装libpcap:

在挂载的目录里面直接查找是否有‘libpcap-1.5.3-11.el7.x86_64.rpm’

可以直接yum install libpcap-1.5.3-11.el7.x86_64.rpm  (yum安装它会自动解决依赖的问题),不要用rpm安装

后面软件包的安装就不需要了。

############################

安装libpcap:解压缩;进入PF_ring目录下的userland/lib/下编译安装,

编译安装三步骤:

./configure

make && make install

然后再到libpcap目录下编译安装。


如果报缺少‘pf_ring’模块:

加载模块:首先执行rmmod pf_ring 【卸载pf_ring】    然后再执行modprobe pf_ring【安装pf_ring】   

#######################################################################

库文件安装操作参考:

一、对应操作系统pip_2安装:

https://packaging.python.org/guides/installing-using-linux-tools/#installing-pip-setuptools-wheel-with-linux-package-managers

yum install git gcc make libpcap-dev

二、libpcap安装:

https://www.cnblogs.com/wawahaha/p/3821486.html      CentOS安装libpcap

yum -y install gcc-c++

yum -y install flex

wget -c http://www.tcpdump.org/release/libpcap-1.9.1.tar.gz

cd libpcap-1.9.1.tar.gz

tar zxvf libpcap-1.9.1.tar.gz

cd libpcap-1.9.1

./configure

make

make install

https://www.cnblogs.com/woshare/p/4796323.html    pcap的安装与配置

vi /etc/ld.so.conf

添加两行

/usr/local/lib

/usr/lib

:wq 保存退出

其它:

masscan下载、安装:

$ git clone https://github.com/robertdavidgraham/masscan

$ cd masscan

$ make

你可能感兴趣的:(masnmapscan-V1.0安装)