From b2398afc8d2839123e7c0d479b95ec9cdc971b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Tammek=C3=A4nd?= Date: Wed, 18 Oct 2017 15:24:25 +0300 Subject: [PATCH] Update YARA to 3.6.3 --- bash/thuginstallation.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/thuginstallation.sh b/bash/thuginstallation.sh index 57f8a17..d619c1b 100644 --- a/bash/thuginstallation.sh +++ b/bash/thuginstallation.sh @@ -271,7 +271,7 @@ yara() { # Download YARA & Unzip it - echo "Downloading YARA..." && cd $DIR && wget https://github.com/VirusTotal/yara/archive/v3.5.0.tar.gz >> "$bootstrapLog" 2>&1 && tar xf v3.5.0.tar.gz && success && echo -e "Successfully downloaded and unzipped YARA\n" || { + echo "Downloading YARA..." && cd $DIR && wget https://github.com/VirusTotal/yara/archive/v3.6.3.tar.gz >> "$bootstrapLog" 2>&1 && tar xf v3.6.3.tar.gz && success && echo -e "Successfully downloaded and unzipped YARA\n" || { echo "Failed to download or unzip YARA. Skipping YARA installation" echo "See $bootstrapLog for more information" @@ -280,7 +280,7 @@ yara() { # Compile and install YARA - echo "Compiling and installing YARA..." && cd yara-3.5.0/ && ./bootstrap.sh >> "$bootstrapLog" 2>&1 && ./configure > /dev/null 2>> "$bootstrapLog" && make > /dev/null 2>> "$bootstrapLog" && sudo make install > /dev/null 2>> "$bootstrapLog" && ldconfig && success && echo -e "Successfully installed YARA\n" || { + echo "Compiling and installing YARA..." && cd yara-3.6.3/ && ./bootstrap.sh >> "$bootstrapLog" 2>&1 && ./configure > /dev/null 2>> "$bootstrapLog" && make > /dev/null 2>> "$bootstrapLog" && sudo make install > /dev/null 2>> "$bootstrapLog" && ldconfig && success && echo -e "Successfully installed YARA\n" || { echo "Failed to compile or install YARA" echo "See $bootstrapLog for more information"