Linux

如何在 Parrot OS Home 上安裝 Pentesting 工具?

  • January 25, 2021

我目前正在使用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

請幫幫我…

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
sudo apt-get install burpsuite

全新安裝需要更多的工作。您將需要驗證是否安裝了 Java 8。

java -version

如果不是,則安裝它:

sudo apt-get install openjdk-8-jre

引用自:https://unix.stackexchange.com/questions/630426