/VoIP_Dropbox

VoIP Dropbox config files

Primary LanguageShell

VoIP_Dropbox

VoIP Dropbox config files

The following config files are provided to reproduce the VoIP Dropbox attack detailed in CactusCon's 2018 talk "Weaponizing Your Pi" https://youtu.be/uuv68GX20R8?t=4250. Most of the tools used are standard on Kali.

Requirements

Config

  • hostapd.conf

    This is the configuration file used to create the accesspoint after boot. ssid=test and it uses WPA2 encryption, wpa_passphrase=testtest .. change as needed. Also, I configured the AP to not broadcast the access point by setting ignore_broadcast_ssid=0.

  • Startup.sh

    This file will be called by /etc/rc.local during boot and will do the following things:

    1. Disable network-manager
    2. Create a mon0 interface required for hostapd to run on the PiZeroW (dont ask me why...)
    3. setup the wlan0 interface with IP 192.168.1.1
    4. Execute hostapd with hostapd.conf file above.

Boot

Update /etc/rc.local to point to the /root/startup.sh using: /bin/sh /root/startup.sh

Once booted, you will need to add the wireless network to your connecting device, since we are not broadcasting the device and configure the IP to be static, try 192.168.1.2. After connecting to the AP, ping 192.168.1.1 and attempt to SSH to your PiZero.