Setting Up Your Kali Box
Kali - Setup Script
This scripts builds and updates our Kali machine to get us ready to complete our day to day tasks. With Kali moving towards a rolling distro it has become must more stable to use as a daily OS. They even have a standard user of kali:kali instead of the old root:toor.
echo "###############################"
echo "Setting Kali up"
echo "Go get a drink"
echo "#################################"
apt-get update
apt-get upgrade
apt-get dist-upgrade -y
apt-get install kali-tool-* -y
apt-get install hackrf libhackrf-dev libhackrf0
apt-get install cmake libusb-1.0-0-dev make gcc g++ libbluetooth-dev pkg-config libpcap-dev python-numpy python-pyside python-qt4
apt-get install ubertooth
apt-get install bluez bluez-test-scripts python-bluez python-dbus libsqlite3-dev
git clone https://github.com/pwnieexpress/blue_hydra.git
cd blue_hydra/
bundle install
sleep 3
cd ../
pip install urh
echo "####### All Set - Happy Hacking!#######"
Browser Plugins
Chrome
Web Developer
Tamper Data
FoxyProxy Standard
User Agent Switcher
PassiveRecon
Wappalyzer
Firebug
HackBar
Firefox/Iceweasel:
Recx Security Analyser
Wappalyzer
Restart-tool.sh
#!/bin/bash
systemctl stop run-vmblock\\x2dfuse.mount
killall -q -w vmtoolsd
systemctl start run-vmblock\\x2dfuse.mount
systemctl enable run-vmblock\\x2dfuse.mount
vmware-user-suid-wrapper vmtoolsd -n vmusr 2>/dev/null
vmtoolsd -b /var/run/vmroot 2>/dev/null
Last updated