Last active
September 11, 2024 22:34
-
-
Save ShyftXero/f2cb738313b29206e6b8eafb53e8b7a6 to your computer and use it in GitHub Desktop.
install latest zeek nsm repo on kali 2020.1 (Debian Testing)
This file contains hidden or 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
sudo ls | |
if test $(lsb_release -c | grep -o kali); then | |
echo on kali; | |
echo 'deb http://download.opensuse.org/repositories/security:/zeek/Debian_Testing/ /' |sudo tee -a /etc/apt/sources.list.d/security:zeek.list; | |
wget -nv https://download.opensuse.org/repositories/security:zeek/Debian_Testing/Release.key -O Release.key; | |
else | |
echo not on kali; | |
# For ubuntu base system rather than Debian | |
echo 'deb http://download.opensuse.org/repositories/security:/zeek/xUbuntu_21.10/ /' |sudo tee -a /etc/apt/sources.list.d/security:zeek.list; | |
wget -nv https://download.opensuse.org/repositories/security:/zeek/xUbuntu_21.10/Release.key -O Release.key; | |
fi | |
sudo apt-key add - < Release.key | |
sudo apt-get update | |
sudo apt-get -y install zeek zeek-aux zkg | |
sudo ln -s /opt/zeek/bin/zeek /usr/bin/zeek | |
rm Release.key | |
zeek -v | |
wget https://github.com/brimdata/brim/releases/download/v0.28.0/Brim-0.28.0.deb | |
sudo dpkg -i Brim* | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment