Libertyunix
  • About.me
  • Getting Started
    • Kali Images
    • Setting Up Your Kali Box
  • CheetSheets
    • OSCP Fun
    • Active Directory
    • Windows
    • 802-11 Wireless
    • Enumeration
    • Payloads
    • Secure Copy Protocol
    • Privilege Escalation
    • Tunneling
    • Red Team Playbook
    • Oneliners for Code Execution
  • PenTesting & Red Teaming
    • Python for Exfil
    • Using MSBuild to Execute Shellcode in C#
    • Social Engineering Tricks
    • Setting Up Caldera & Atomic Red-Team
    • Discovering & Exploiting Buffer Overflows
  • Wireless
    • An Introduction to IoT Penetration Testing
    • An Introduction to BLE - Part 1
    • BLE Deep Dive
    • Proxmark 3
  • Hack The Box
    • Fuse
    • Blunder
    • Unblanced
    • Tabby
  • Threat Hunting
    • Threat Hunter Playbook
  • DFIR
    • Creating Windows USB for DFIR & Fun (DRAFT)
  • Talks, Workshops, & WriteUps
    • The Portable Executable (PE) (DRAFT)
    • Resume
    • Presented Research
    • Offensive Security 101 Workshop
Powered by GitBook
On this page
  • Kali - Setup Script
  • Browser Plugins
  • Restart-tool.sh
  1. Getting Started

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

PreviousGetting StartedNextCheetSheets

Last updated 5 years ago