LanTurtle QuickCreds/Responder

LAN Turtle offers a handful of useful Modules to the end user such as sshfs, meterpreter-http, urlsnarf, dnsmasq-spoof and more, the drawback is that if you try install and configure all of them then you most likely will be left with no space: “fatal: write error: No space left on device”

…with the most space hungry module being that of Responder/QuickCreds and one of its dependancies (git). At this point you have two options, a) either install whatever module you need and delete whichever you dont or b) use the below respondeme.sh script
ssh root@172.16.84.1
mount -o rw,remount /

cat <<EOF > respondeme.sh
#!/bin/bash
opkg update
opkg remove git
opkg install unzip
opkg install python-openssl
opkg install python-sqlite3
cd /tmp
rm -fr /tmp/Responder
rm -fr /tmp/Responder-master/
rm -fr /etc/turtle/Responder
wget -q -O /tmp/responder.zip --no-check-certificate https://github.com/lgandx/responder/archive/master.zip
unzip /tmp/responder.zip
mv /tmp/Responder-master/ /etc/turtle/Responder
rm /tmp/responder.zip
rm /etc/turtle/Responder/.gitignore
rm /etc/turtle/Responder/LICENSE
rm /etc/turtle/Responder/OSX_launcher.sh
rm /etc/turtle/Responder/README.md
EOF

chmod +x respondeme.sh
./respondeme.sh
turtle
(to go back to the Ncurses style text-based menu, navigate to QuickCreds or responder and configure or start)

Facebooktwitterredditpinterestlinkedinmailby feather

IDA Pro 7.0 with Plugins and BinDiff on MacOSX 10.13.4 (High Sierra)

Install Xcode
Open up AppStore app, login with your Apple credentials, search for xcode and install
$ sudo mkdir -p /Developer/SDKs
$ sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk /Developer/SDKs/MacOSX.sdk

Install brew and a few more packages:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew install libiconv (mine was https://homebrew.bintray.com/bottles/libiconv-1.15.high_sierra.bottle.tar.gz)
$ pip install ida-settings idalink

Confirm that LLVM and command line tools have been installed:
$ gcc --version
$ xcode-select --install

Confirm that SDK has been installed
$ xcrun --sdk macosx --show-sdk-path

Continue reading Facebooktwitterredditpinterestlinkedinmailby feather

Setting up Ubertooth One – Kali

Install essential packages and updates
Login to Kali as root/toor
apt-get update
apt-get install kali-linux-sdr
apt-get install cmake libusb-1.0-0-dev make gcc g++ libbluetooth-dev pkg-config libpcap-dev python-numpy python-pyside python-qt4 libgtk2.0-dev libusb-dev bluez

Install the Bluetooth baseband decoding library
wget https://github.com/greatscottgadgets/libbtbb/archive/2015-10-R1.tar.gz -O libbtbb-2015-10-R1.tar.gz
tar xf libbtbb-2015-10-R1.tar.gz
cd libbtbb-2015-10-R1
mkdir build
cd build
cmake ..
make
make install
ldconfig

Continue reading Facebooktwitterredditpinterestlinkedinmailby feather

Raspberry Pi Zero OTG – MacOSX

Download

  1. Raspbian as of 10/Dec/2016 this will download you Raspbian Jessie with Pixel (Pi Improved X-windows Environment, Lightweight) desktop
  2. Etcher v1 for Darwin x64 to flash Raspbian into the SD card. Visit main site for more info
  3. SDFormatter to format the SD card

Configuring Raspberry Pi Zero to Emulate Ethernet Over USB

Once you flash the Raspbian image onto the SD card then:

  1. Open a file at the root of the mounted drive called config.txt
  2. Add the following line at the very bottom: dtoverlay=dwc2
  3. Open a file at the root of the mounted drive called cmdline.txt
  4. Add the following line after the rootwait parameter: modules-load=dwc2,g_ether
  5. Create a file called ssh in to the root of the mounted driver, the file can contain any text you like, or even nothing at all: touch /Volumes/boot/ssh

Note: SSH will be disabled by default on the images from version 1.1 (2016-11-25-raspbian-jessie, Raspberry Pi reference 2016-11-25). When the Pi boots, it looks for the ssh file; if it finds it, it enables SSH and then deletes the file.

Continue reading Facebooktwitterredditpinterestlinkedinmailby feather