Skip to content

Commit

Permalink
Sn1per Community Edition by @xer0dayz - https://xerosecurity.com
Browse files Browse the repository at this point in the history
  • Loading branch information
1N3 committed Feb 21, 2020
1 parent 1cb3f7a commit 8dba8cf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions install_debian_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# Install script for Sn1per
# Crated by @xer0dayz - https://xerosecurity.com

if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi

OKBLUE='\033[94m'
OKRED='\033[91m'
OKGREEN='\033[92m'
Expand Down Expand Up @@ -34,6 +39,7 @@ cp -a /run/user/1000/gdm/Xauthority /root/.Xauthority 2> /dev/null
cp -a /home/user/.Xauthority /root/.Xauthority 2> /dev/null
chown root /root/.Xauthority
XAUTHORITY=/root/.Xauthority
rm -Rf /tmp/Sn1per 2> /dev/null
git clone https://github.com/1N3/Sn1per /tmp/Sn1per
cd /tmp/Sn1per
bash install.sh
2 changes: 1 addition & 1 deletion sniper
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [[ $EUID -ne 0 ]]; then
exit 1
fi

VER="8.1"
VER="8.2"
INSTALL_DIR="/usr/share/sniper"
LOOT_DIR="$INSTALL_DIR/loot/$TARGET"
SNIPER_PRO=$INSTALL_DIR/pro.sh
Expand Down
5 changes: 5 additions & 0 deletions uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# Uninstall script for Sn1per
# Created by @xer0dayz - https://xerosecurity.com

if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi

# VARS
OKBLUE='\033[94m'
OKRED='\033[91m'
Expand Down

0 comments on commit 8dba8cf

Please sign in to comment.