diff --git a/CHANGELOG.md b/CHANGELOG.md index b083853..15d2ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## CHANGELOG: +* v8.2 - Added Kali XFCE start menu app & icon * v8.2 - Added check with insecure SSL/TLS connections * v8.2 - Added NMAP_OPTIONS setting in ~/.sniper.conf to configure optional NMap settings * v8.2 - Fixed issue with ManageEngine MSF exploit payload diff --git a/install.sh b/install.sh index 7186559..a3871ec 100755 --- a/install.sh +++ b/install.sh @@ -188,7 +188,9 @@ rm -f /usr/bin/dirsearch ln -s $INSTALL_DIR/sniper /usr/bin/sniper ln -s $PLUGINS_DIR/Goohak/goohak /usr/bin/goohak ln -s $PLUGINS_DIR/dirsearch/dirsearch.py /usr/bin/dirsearch -msfdb init - +msfdb init +echo -e "$OKORANGE + -- --=[ Adding start menu shortcuts... $RESET" +cp -f $INSTALL_DIR/sn1per.desktop /usr/share/applications/ 2> /dev/null +cp -f $INSTALL_DIR/sn1per.png /usr/share/pixmaps/ 2> /dev/null echo -e "$OKORANGE + -- --=[ Done!$RESET" echo -e "$OKORANGE + -- --=[ To run, type 'sniper'! $RESET" diff --git a/sn1per.desktop b/sn1per.desktop new file mode 100644 index 0000000..449e0a7 --- /dev/null +++ b/sn1per.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=sn1per +Encoding=UTF-8 +Exec=bash-wrapper "sudo sniper" +Icon=/usr/share/pixmaps/sn1per.png +StartupNotify=false +Terminal=true +Type=Application +Categories=08-exploitation-tools;02-vulnerability-analysis;01-info-gathering; +X-Kali-Package=sn1per +Comment= +Path= diff --git a/sn1per.png b/sn1per.png new file mode 100644 index 0000000..17d23ad Binary files /dev/null and b/sn1per.png differ