Last active
November 13, 2017 11:43
-
-
Save jsonmaur/8af82d72bc597f570eadce4134da0cf7 to your computer and use it in GitHub Desktop.
Setup Kali on Macbook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# persistence from usb stick | |
mkdir -p /mnt/my_usb | |
mount /dev/sdb3 /mnt/my_usb | |
echo "/ union" > /mnt/my_usb/persistence.conf | |
umount /dev/sdb3 && reboot | |
# get wifi working | |
apt-get update | |
apt-get install -y linux-headers-$(uname -r) broadcom-sta-dkms | |
# setup proxychains | |
apt-get install -y nano tor | |
nano /etc/proxychains.conf # add proxy list to bottom, enable random | |
# setup cryptonuke | |
cryptsetup luksAddNuke /dev/sdb2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment