From 8a03e3a388eaa7a4f65a7ff8a6788e14848a33ce Mon Sep 17 00:00:00 2001 From: WP Engine Marketing Date: Sat, 10 Nov 2018 14:05:24 -0700 Subject: [PATCH] Sn1per Community Edition by @xer0dayz - https://xerosecurity.com --- CHANGELOG.md | 2 +- sniper | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4120c6..40cb043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## CHANGELOG: -* v5.10 - Removed iceweasel from install.sh to fix apt error +* v6.0 - Removed iceweasel from install.sh to fix apt error * v5.9 - Fixed issue with auto updates not notifying users of updates * v5.8 - Fixed issue with subfinder not working due to lack of wordlist switch * v5.8 - Fixed missing osint directory/file paths diff --git a/sniper b/sniper index 5f86ebe..ce91019 100755 --- a/sniper +++ b/sniper @@ -3,7 +3,7 @@ # + -- --=[https://xerosecurity.com # -VER="5.10" +VER="6.0" INSTALL_DIR="/usr/share/sniper" # LOAD SNIPER CONFIGURATION FILE @@ -123,7 +123,7 @@ function check_update { if [ "$ENABLE_AUTO_UPDATES" == "1" ] && [ "$ONLINE" == "1" ]; then LATEST_VER=$(curl --connect-timeout 3 -s https://api.github.com/repos/1N3/Sn1per/tags | grep -Po '"name":.*?[^\\]",'| head -1 | cut -c11-13) if [ "$LATEST_VER" != "$VER" ]; then - echo -e "$OKBLUE[$RESET${OKRED}i${RESET}$OKBLUE] sniper v$LATEST_VER is available to download... To update, type$OKRED \"sniper update\" $RESET" + echo -e "$OKBLUE[$RESET${OKRED}i${RESET}$OKBLUE] sniper v$LATEST_VER is available to download... To update, type$OKRED \"sniper -u\" $RESET" fi fi }