言归正传 接下来就是我们要安装一些日常要用的工具和框架了
首先 检查系统是否有python环境
python2 --verson
python3 --version
看样子这个版本系统只自带了一个Python3
那接下来继续检查 pip和git
pip3 --version (因为是python3 所以pip后面要带上3)
git --version
好的 接下来就是安装pip3了
apt install python3-pip
apt install git
emmm 完美!
接下来就是MSF 安装了
因为昨天的文章已经配置好了kali的源
所以apt install metasploit-framework 直接弄
安装nmap
apt install nmap
安装sqlmap
apt install sqlmap
安装whatweb
apt install whatweb
关于whatweb的介绍和另类的安装和使用链接可以参考我这个帖子 https://bbs.ichunqiu.com/thread-53421-1-1.html
安装web扫描器 nikto
apt install nikto
当然啦 我要下载的东西挺多的我 就不一一介绍并贴出安装截图了
安装dirmap 目录扫描
git clone https://github.com/H4ckForJob/dirmap.git
cd dirmap
python3 -m pip install -r requirement.txt
使用
cd dirmap
python3 dirmap.py -l url lcf
安装 dirsearch
git clone https://github.com/maurosoria/dirsearch.git
cd dirsearch
pip3 install -r requirements.txt