This script allows you to install missing tools on fresh installation of the "kali" distribution, like :
- Windows Manager: Awesome, Regolith
- Forensic tools: forensics-full metapackage, libguestfs-tools, volatility profiles
- ...
git clone https://github.com/kidrek/kali--postinstall.git
cd kali--postinstall
./postinstall.sh
Add file, with cnf as extension, in specific directory. It's necessary to have this 3 variables.
NAME=""
DESC=""
COMMAND=""
To test your module, it's not necessary to execute the main script.
You have to use source
command, then try to display each variables.
# source <MYNEWMODULE>.cnf
# echo $NAME
# echo $DESC
# echo $COMMAND
To execute new modules's command and check result, run :
# source <MYNEWMODULE>.cnf
# eval "$COMMAND"