Last active
November 26, 2023 19:04
-
-
Save vpnwall-services/c88231e86ea7cabb7cb667fae671b522 to your computer and use it in GitHub Desktop.
[Kali-Repo] Adds Kali Repository on Linux #linux #repo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update ; apt-get install -y dirmngr | |
grep -q -F 'deb http://http.kali.org/kali kali-rolling main contrib non-free' /etc/apt/sources.list || echo 'deb http://http.kali.org/kali kali-rolling main contrib non-free' >> /etc/apt/sources.list | |
apt-key adv --keyserver pgp.mit.edu --recv-keys ED444FF07D8D0BF6 | |
apt-get update | |
apt-get install -y -t kali-rolling |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment