如何在 Parrot OS Home 上安装渗透测试工具?

如何在 Parrot OS Home 上安装渗透测试工具?

我目前正在使用这个操作系统Parrot OS xfce 4.10 amd64,并且我想在这个操作系统中安装一些工具。我已经尝试过了apt-get install burpsuit,它的输出是:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package burpsuit

请帮帮我...

答案1

sudo apt-get install burpsuite

全新安装需要更多工作。您需要验证是否已安装 Java 8。

java -version

如果不是,则安装它:

sudo apt-get install openjdk-8-jre

答案2

E:无法找到包 burpsuit

你的sources.list是空的(一种可能性)。

burpsuit不存在,确切名称是burpsuite

将以下行添加到您的/etc/apt/sources.list.d/parrot.list文件中:

deb https://deb.parrot.sh/parrot/ rolling main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling main contrib non-free

deb https://deb.parrot.sh/parrot/ rolling-security main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling-security main contrib non-free

然后 :

sudo apt update
sudo apt install burpsuite

相关内容