blackmate/blackmate.sh

220 lines
7.0 KiB
Bash

#!/bin/bash
#
# Blackmate v0.43.1
#
# Description : BlackMate is a menu generator for the BlackArch Linux os tools, unified for all Desktops.
# It will fetch the latest database of BlackArch and create an entry for each of them in the menu.
# You may run the script as often as new tools are available.
#
#
# Author : Dimitri Mader -> dimitri@linux.com / byReqz -> https://byreqz.de/contact
# Url : https://github.com/byReqz/blackmate
# Gnu / GPL v3
#Check if the script have the root permission
if [[ $EUID -ne 0 ]]; then
echo -e "\033[31m[ERROR]\e[0m Blackmate must run with root permission (use sudo or the script will fail)";
exit 1;
fi
#Check if gtk-murrine engine is installed, if not, purpose to install it
if [[ ! -f /usr/share/gtk-engines/murrine.xml ]]; then
echo -e "\033[31m[Warning]\e[0m gtk murrine engine is not installed, it is highly recommanded to install it in order to have a proper display of the categories icons, do you want to install it now ?";
select yn in "Yes" "No"; do
case $yn in
Yes ) pacman -S --noconfirm gtk-engine-murrine; break;;
No ) break;;
esac
done
fi
echo -e "\033[32m[*]\e[0m Creating the new menu entry";
#Clean any previous application entry and categorie entry
rm /usr/share/applications/ba-*.desktop 2> /dev/null || true
rm /usr/share/desktop-directories/BlackArch*.directory 2> /dev/null || true
#Update X.BlackArch.menu
cp /usr/share/blackmate/X-BlackArch.menu /etc/xdg/menus/applications-merged/X-BlackArch.menu
#Copy the directory file BlackArch (Blackarch -> categorie -> tools...)
cp /usr/share/blackmate/BlackArch.directory /usr/share/desktop-directories/
#Generate the new categorie entry menu
for u in $( ls --color=auto /usr/share/blackmate/menu-i/ | sort ); do
c=`echo $u | sed 's/BlackArch-//' | sed 's/\.png//'`;
cat /usr/share/blackmate/dfdir | sed 's/^Name=.*/Name='$c'/' |
sed 's/^Icon=.*/Icon=BlackArch-'$c'/' > /usr/share/desktop-directories/BlackArch-$c.directory
done
# NEEDS FIXING
#Delete any cache icons of the current theme
# rm /usr/share/icons/$thic/icon-theme.cache 2> /dev/null || true
#Copy the extra icons into the icons theme
# cp /usr/share/blackmate/menu-i/* /usr/share/icons/$thic/32x32/apps/ 2> /dev/null || true
#Set the correct chmod
# chmod 755 /usr/share/icons/$thic/32x32/apps/ -R 2> /dev/null || true
#Download and generate the latest tools list
echo -e "\033[32m[*]\e[0m Download the tools list, please wait...";
#Check if the directory exist, if true, delete it (Fix any previous abort before the end...)
if [[ -d "/usr/share/blackmate/tmp" ]]; then
rm -rf /usr/share/blackmate/tmp 2> /dev/null || true
fi
#Create temporary directory to store the tools list
mkdir /usr/share/blackmate/tmp 2> /dev/null || true
wget -q -P /usr/share/blackmate/ https://ftp.halifax.rwth-aachen.de/blackarch/blackarch/os/x86_64/blackarch.db
tar -zxf /usr/share/blackmate/blackarch.db.tar.gz -C /usr/share/blackmate/tmp
#Terminal to use for the blackarch entry
terminal=`echo konsole`;
echo -e "\033[32m[*]\e[0m Generating the menu, please wait...";
#Start to loop each tools, set $subc as subcategorie and $tname as name of the tool
for u in $( ls --color=auto /usr/share/blackmate/tmp/ | sort ); do
#Subcategorie
subc=`cat /usr/share/blackmate/tmp/$u/desc | sed 's/blackarch//' |
sed '/^\s*$/d' | sed -n '/%GROUPS%/{n;p}' | sed 's/-//'`;
#Check the group of the current tool, if empty, go to the next iteration
if [[ -z "$subc" ]]; then
continue;
fi
#Name of the tool
tname=`cat /usr/share/blackmate/tmp/$u/desc | sed 's/blackarch//' |
sed '/^\s*$/d' | sed -n '/%NAME%/{n;p}'`;
#Check if the tool is installed on the system, otherwise skip to the next
command -v $tname >/dev/null 2>&1 || { continue; }
#Set categorie of the subcategorie tool branche
if [[ $subc == "code-audit" ]] || [[ $subc == 'decompiler' ]] ||
[[ $subc == 'disassembler' ]] || [[ $subc == 'reversing' ]]; then
namecat=`echo X-BlackArch-Audit;`;
elif [[ $subc == 'automation' ]]; then
namecat=`echo X-BlackArch-Automation;`;
elif [[ $subc == 'backdoor' ]] || [[ $subc == 'keylogger' ]] ||
[[ $subc == 'malware' ]]; then
namecat=`echo X-BlackArch-Backdoor;`;
elif [[ $subc == 'binary' ]]; then
namecat=`echo X-BlackArch-Binary;`;
elif [[ $subc == 'bluetooth' ]]; then
namecat=`echo X-BlackArch-Bluetooth;`;
elif [[ $subc == 'cracker' ]]; then
namecat=`echo X-BlackArch-Cracker;`;
elif [[ $subc == 'crypto' ]]; then
namecat=`echo X-BlackArch-Crypto;`;
elif [[ $subc == 'defensive' ]]; then
namecat=`echo X-BlackArch-Defensive;`;
elif [[ $subc == 'dos' ]]; then
namecat=`echo X-BlackArch-Dos;`;
elif [[ $subc == 'exploitation' ]] || [[ $subc == 'social' ]] ||
[[ $subc == 'spoof' ]] || [[ $subc == 'fuzzer' ]]; then
namecat=`echo X-BlackArch-Exploitation;`;
elif [[ $subc == 'forensic' ]] || [[ $subc == "anti-forensic" ]]; then
namecat=`echo X-BlackArch-Forensic;`;
elif [[ $subc == 'honeypot' ]]; then
namecat=`echo X-BlackArch-Honeypot;`;
elif [[ $subc == 'mobile' ]]; then
namecat=`echo X-BlackArch-Mobile;`;
elif [[ $subc == 'networking' ]] || [[ $subc == 'fingerprint' ]] ||
[[ $subc == 'firmware' ]] || [[ $subc == 'tunnel' ]] ; then
namecat=`echo X-BlackArch-Networking;`;
elif [[ $subc == 'scanner' ]] || [[ $subc == 'recon' ]] ; then
namecat=`echo X-BlackArch-Scanning;`;
elif [[ $subc == 'sniffer' ]]; then
namecat=`echo X-BlackArch-Sniffer;`;
elif [[ $subc == 'voip' ]]; then
namecat=`echo X-BlackArch-Voip;`;
elif [[ $subc == 'webapp' ]]; then
namecat=`echo X-BlackArch-Webapp;`;
elif [[ $subc == 'windows' ]]; then
namecat=`echo X-BlackArch-Windows;`;
elif [[ $subc == 'wireless' ]]; then
namecat=`echo X-BlackArch-Wireless;`;
else
namecat=`echo X-BlackArch-Misc;`;
fi
#For each tools of the target category
for i in $tname; do
#Parse the default launcher and set his name
cat /usr/share/blackmate/dfdesk | sed 's/^Name=.*/Name='$i'/' |
#Set the bash command to execute
sed 's/^Exec=.*/Exec='bash' -c "\/usr\/bin\/'$i'; exec bash"/' |
#Set the category to the launcher && Set the name file to ba-`toolsname`.desktop
sed 's/Categories=.*/Categories='$namecat';/' > /usr/share/blackmate/ba-$i.desktop
#End of the current tool
done
#End of the current category
done
echo -e "\033[32m[*]\e[0m Cleanup...";
#Move the .desktop to the right directory
mv /usr/share/blackmate/ba-*.desktop /usr/share/applications 2> /dev/null || true
#Delete tmp directory
rm -rf /usr/share/blackmate/tmp/ 2> /dev/null || true
rm /usr/share/blackmate/blackarch.db.tar.gz 2> /dev/null || true
echo -e "\033[32m[*]\e[0m Done, in order to have a correct display of the new menu, you may need to restart your Desktop Environment";