> For the complete documentation index, see [llms.txt](https://blog.dev4cloud.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.dev4cloud.net/getting-started/setting-up-your-kali-box.md).

# Setting Up Your Kali Box

## Kali - Setup Script <a href="#kali---setup-script" id="kali---setup-script"></a>

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.&#x20;

```
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

```bash
#!/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
```

## &#x20; <a href="#a-simple-scanning-script" id="a-simple-scanning-script"></a>
