Setup
Download the latest Kali VM:
Import it into VMware (or VirtualBox) and do the following things:
- 1.
- 2.
- 3.Open
/usr/bin/google-chrome
and change the very last line toexec -a "$0" "$HERE/chrome" "$@" --no-sandbox
- 4.Install Dropbox
- 5.
Don't forget to take a snapshot of your VM!
apt install terminator
- Copy: Ctrl+Shift+C
- Paste: Ctrl+Shift+V
- Split Horizontally: Ctrl+Shift+O
- Split Vertically: Ctrl+Shift+E
- Close: Ctrl+Shift+W
One important feature of Terminator is unlimited terminal history, which is called "Infinite Scrollback" in Terminator terminology. This feature comes in handy when you want to read the long WinPEAS output. Inside terminator, right click and go to "Preferences -> Profiles -> Scrolling". Check the "Infinite Scrollback" option:

Infinite Scrollback
Install the GPG key:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add -
Ensure apt is set up to work with https sources:
apt install apt-transport-https
Install Dev version:
echo "deb https://download.sublimetext.com/ apt/dev/" | tee /etc/apt/sources.list.d/sublime-text.list
Update apt sources:
apt update
Install Sublime Text:
apt install sublime-text
Hold "Ctrl" and left click the place where you want the multiple cursor to be added.
Select a block of text and press "Ctrl+Shift+L". Multiple cursors will be added to the end of each line.
Last modified 1yr ago