Skip to content

Instantly share code, notes, and snippets.

@ShyftXero
Last active February 15, 2022 17:27
Show Gist options
  • Save ShyftXero/f2cb738313b29206e6b8eafb53e8b7a6 to your computer and use it in GitHub Desktop.
Save ShyftXero/f2cb738313b29206e6b8eafb53e8b7a6 to your computer and use it in GitHub Desktop.
install latest zeek nsm repo on kali 2020.1 (Debian Testing)
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