Archive
PwnPad Installation Tutorial thru Kali VM
I attended the Pwnie Express PwnPad Installation class at DerbyCon 3.0 and found out how to install the PwnPad image on my Nexus7 (16GB, 1st generation, WiFi only) thru a Kali VM image. I won’t write out the entire process, just the differences from their installation document.
Unfortunately you can’t just “apt-get install adb fastboot” you have to add some french repositories and install a few other packages to get it going. The following commands should get you through that (many thanks to the Kali developer that attended the DerbyCon class for this!) –
- mkdir /opt/android && cd /opt/android
- echo “deb-src http://debian.ens-cachan.fr/ftp/debian/ sid main contrib non-free” >> /etc/apt/sources.list
- apt-get update
- apt-get -y build-dep android-tools
- apt-get -y source –build android-tools
- dpkg -i android-tools-*.deb
- cd ~
- rm -rf /opt/android
- sed -i ‘s/.*cachan\.fr.*//’ /etc/apt/sources.list
At command #6 I kept getting a “no space left on device” error, but running “apt-get clean” fixed that issue for me. Once that’s done, you should be good to go. Prep the USB drive like it says and follow the remaining instructions.
Once installed, open a root shell and hit enter a couple times, then type ‘yes’ when prompted to setup your ssh keys with a blank password (needed to run some of the scripts on the device). Be sure to install the latest updates from pwnieexpress.com (it’s easiest to just browse there on your tablet and then copy/paste the wget command into a shell on the device.