Install Kali Linux tools in Ubuntu
Posted on April 22, 2024 • 1 minutes • 63 words
Table of contents
here is the command :
sudo sh -c "echo 'deb https://http.kali.org/kali kali-rolling main non-free contrib' > /etc/apt/sources.list.d/kali.list"
sudo apt install gnupg
wget 'https://archive.kali.org/archive-key.asc'
sudo apt-key add archive-key.asc
sudo sh -c "echo 'Package: *'>/etc/apt/preferences.d/kali.pref; echo 'Pin: release a=kali-rolling'>>/etc/apt/preferences.d/kali.pref; echo 'Pin-Priority: 50'>>/etc/apt/preferences.d/kali.pref"
sudo apt update
Now install any tools you want
sudo apt install -t kali-rolling [package_name]
Example :
sudo apt install -t kali-rolling burpsuite