一、安装及简单配置
1.安装:地址就不贴了,自己打一下就好
2.虚拟机中打开kali
3.替换包源
(1)使用指令打开/etc/apt/sources.list
mousepad /etc/apt/sources.list
(2)将内容替换成阿里云源
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb-src http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
(3)更新源
apt-get update
4.python pip使用国内代理
pip3 install pwntools -i https://mirrors.aliyun.com/pypi/simple/
二、一些常用指令
# 克隆github应用
git clone https://github.com/xxx/xxx.git
# 解压压缩包
unzip xxx.zip
#在运行某些py程序时,如提示Doyou want dirsearch to automaticay install then? [Y/n],最好选择n,然后自己指定包的下载源下载安装,否则将会自动使用国外源进行下载,速度非常慢
python3 xxx.py
Doyou want dirsearch to automaticay install then? [Y/n] n
pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
三、辅助工具
1.MobaXterm(ssh工具)
2.Burpsuite (抓包工具)