Nmap-Sublist3r-Hydra安装(Ubuntu环境)

BamB00 2018-11-18 16:27:22
Categories: Tags:

Nmap Sublist3r Hydra 三个常用文件在Ubuntu VPS上的安装

一,Nmap

– more –

文件下载地址👈可以找到最新的版本

wget http://nmap.org/dist/nmap-7.70.tar.bz2

在安装前先把环境配置好

apt-get install gcc g++ 

解压文件

tar -xvf nmap-7.70.tar-bz2

安装依次输入

bamboo@bamboo# cd nmap-7.70/
bamboo@bamboo# ./configure
bamboo@bamboo# make
bamboo@bamboo# make install
bamboo@bamboo# nmap -V

Dome

二,Sublist3r

git clone https://github.com/aboul3la/Sublist3r.git

环境安装

cd Sublist3r
pip install -r requirements.txt

Dome

三,Hydra

Hydra ubuntu 自带稳定版

pip install hydra 

开发者版本

git clone https://github.com/vanhauser-thc/thc-hydra
./configure
make
make install

Dome