diff --git a/salt/common/tools/sbin/so-analyst-install b/salt/common/tools/sbin/so-analyst-install index 388345c0a..7ac8524dd 100755 --- a/salt/common/tools/sbin/so-analyst-install +++ b/salt/common/tools/sbin/so-analyst-install @@ -73,6 +73,7 @@ CANCURL=$(curl -sI https://securityonionsolutions.com/ | grep "200 OK") fi else echo "We were able to curl https://securityonionsolutions.com/." + sleep 3 fi # Install a GUI text editor @@ -88,39 +89,12 @@ unlink /etc/systemd/system/default.target; ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target; yum -y install file-roller -# NetworkMiner has a compatibility issue with Mono 6 right now -if ! grep -q "NetworkMiner has a compatibility issue with Mono 6 right now" /etc/yum/pluginconf.d/versionlock.list; then - -cat << EOF >> /etc/yum/pluginconf.d/versionlock.list - -# NetworkMiner has a compatibility issue with Mono 6 right now -0:mono-complete-4.2.1.102-0.xamarin.1.* -0:mono-core-4.2.1.102-0.xamarin.1.* -0:mono-data-4.2.1.102-0.xamarin.1.* -0:mono-data-oracle-4.2.1.102-0.xamarin.1.* -0:mono-data-sqlite-4.2.1.102-0.xamarin.1.* -0:mono-devel-4.2.1.102-0.xamarin.1.* -0:mono-extras-4.2.1.102-0.xamarin.1.* -0:mono-locale-extras-4.2.1.102-0.xamarin.1.* -0:mono-mvc-4.2.1.102-0.xamarin.1.* -0:mono-nunit-4.2.1.102-0.xamarin.1.* -0:mono-reactive-4.2.1.102-0.xamarin.1.* -0:mono-wcf-4.2.1.102-0.xamarin.1.* -0:mono-web-4.2.1.102-0.xamarin.1.* -0:mono-winforms-4.2.1.102-0.xamarin.1.* -0:mono-winfxcore-4.2.1.102-0.xamarin.1.* -EOF - -fi - # Install Mono - prereq for NetworkMiner -rpmkeys --import "http://pool.sks-keyservers.net/pks/lookup?op=get&search=0x3fa7e0328081bff6a14da29aa6a19b38d3d831ef"; -curl https://download.mono-project.com/repo/centos7-stable.repo | tee /etc/yum.repos.d/mono-centos7-stable.repo; yum -y install mono-core mono-basic mono-winforms expect # Install NetworkMiner yum -y install libcanberra-gtk2; -wget https://www.netresec.com/?download=NetworkMiner_2-4 -O /tmp/nm.zip; +wget https://www.netresec.com/?download=NetworkMiner -O /tmp/nm.zip; mkdir -p /opt/networkminer/ unzip /tmp/nm.zip -d /opt/networkminer/; rm /tmp/nm.zip;