Results 1 to 6 of 6

Thread: How to install ubertooth one in Backtrack 5?

  1. #1
    Join Date
    May 2011
    Posts
    296

    How to install ubertooth one in Backtrack 5?

    Topics covered include:
    • Installing Ubertooth dependencies/source
    • Building/testing Kismet plugin
    • Installing Wireshark plugin
    The first step is to setup the pyside repository to access precompiled binaries.
    Code:
    apt-get install python-software-properties
    add-apt-repository ppa:pyside
    apt-get update
    - Download pre-compiled binary dependencies
    Code:
    apt-get install libnl-dev libusb-1.0-0-dev pyside-tools
    - Compile and install PyUSB extension
    Code:
    wget http://downloads.sourceforge.net/project/pyusb/PyUSB%201.0/1.0.0-alpha-1/pyusb-1.0.0-a1.tar.gz
    tar xvf pyusb-1.0.0-a1.tar.gz
    cd pyusb-1.0.0-a1
    python setup.py install
    - Compile and Install libbtbb
    Code:
    wget http://downloads.sourceforge.net/project/libbtbb/libbtbb.0.5.tgz
    tar xvf libbtb.0.5.tgz
    cd libbtbb
    make
    make install
    - Download and extract r238 of Ubertooth source
    Code:
    wget http://downloads.sourceforge.net/project/ubertooth/ubertooth-r238.tar.gz
    tar xvf ubertooth-r238.tar.gz
    With all of the dependencies installed, everything should be good to go in order to run the basic functionality of the Ubertooth adapter. A good test is to run the include spectrum analyzer:
    Code:
    cd ubertooth-r238/host/specan_ui
    python specan_ui.py
    You should see a window pop up with a nifty view of your local 2.4ghz spectrum.
    **Capturing Bluetooth Packets**
    - Reset ubertooth by unplugging and plugging it back in
    - Test packet capture by compiling and running the following
    Code:
    cd ../bluetooth_rxtx
    make
    ./ubertooth-lap
    While this provides basic info about the packets flowing over the air, much more detail is provided via the Kismet plugin.- Prep kismet source in a new terminal.
    Code:
    tar xvf kismet-2011-03-R2.tar.gz -C /usr/src/
    mv /usr/src/kismet-2011-03-R2/ /usr/src/kismet
    cd /usr/src/kismet
    ./configure
    - Compile ubertooth kismet plugin
    Code:
    cd ../kismet/plugin-ubertooth
    wget http://www.kismetwireless.net/code/kismet-2011-03-R2.tar.gz
    make
    make install
    - Add 'pcapbtbb' to the logtypes= line in /usr/local/etc/kismet.conf
    - Run kismet with source and name as ubertooth
    - Enable the ubertooth plugin via Kismet -> Plugins -> Select Plugin

    Kismet is ready. Now you can simply open the Kismet appropriate capture file in Wireshark

  2. #2
    Join Date
    Nov 2009
    Posts
    1,416

    Re: How to install ubertooth one in Backtrack 5?

    Thank you for this! I was working on doing the same to test my new device to ensure that the hardware was working properly. Fortunately, the hardware seems to be fully functional. Now you have to spend some time with the code and see what other things we can do with the instructions this. Your worked well - a bit obvious, but I would add that the download source for the preparation kismet "of Kismet source "only to be completely idiotic to use.

  3. #3
    Join Date
    May 2008
    Posts
    991

    Re: How to install ubertooth one in Backtrack 5?

    Great tutorial. I will add that if you are doing this in Virtual Box or VMware is likely to fail libusb. However, reversing the running machine I have no trouble getting the one I send running. I Ubertooth and keep track of whether the Ubertooth way to get the operation under a virtual machine.i followed the above instructions and I was able successfully installed ubertooth in backtrack 5.

  4. #4
    Join Date
    Nov 2009
    Posts
    687

    Re: How to install ubertooth one in Backtrack 5?

    Thank you very much for this! I have got everything working except for that darn spectrum analyzer for some reason. I will run through your process tomorrow. I think I am just missing one dependency.i need to follow step by step. .I appreciate for your wonderful tutorial on installing ubertooth in backtrack 5.if I have any doubt I will let you know so you can post the solution for it.

  5. #5
    Join Date
    May 2011
    Posts
    450

    Re: How to install ubertooth one in Backtrack 5?

    How to compile the libbtbb plugin for Wireshark on Backtrack 5 (should work on other linux flavors as well)
    Download and uncompress Wireshark source
    Code:
    wget http://www.wireshark.org/download/src/wireshark-1.4.6.tar.bz2
    tar xvf wireshark-1.4.6.tar.bz2
    Copy the btbb folder from 'libbtbb/wireshark/plugins/' to 'wireshark-1.4.6/plugins/'

    Now we need to make several changes to make/config files in the Wireshark source code so that libbybb is compiled along with the rest of the code.
    The following files need to be edited:
    wireshark-1.4.6/plugins/Makefile.am
    wireshark-1.4.6/plugins/Makefile.nmake
    wireshark-1.4.6/Makefile.am
    wireshark-1.4.6/Configure.in
    wireshark-1.4.6/CMakeLists.txt
    wireshark-1.4.6/epan/Makefile.am
    wireshark-1.4.6/packaging/nsis/Makefile.nmake
    wireshark-1.4.6/packaging/nsis/wireshark.nsi
    [CODE]
    SUBDIRS = $(_CUSTOM_SUBDIRS_) \
    asn1 \
    btbb \ <--- Add this line
    docsis \
    * Changes to 'wireshark-1.4.6/plugins/Makefile.nmake'
    At around line 9:
    Code:
    PLUGIN_LIST = \
    asn1 \
    btbb \ <--- Add this line
    docsis \
    ...

  6. #6
    Join Date
    May 2008
    Posts
    681

    Re: How to install ubertooth one in Backtrack 5?

    Type the following commands
    Code:
    Typo
    wget http://downloads.sourceforge.net/pro...ibbtbb.0.5.tgz
    tar xvf libbtb.0.5.tgz
    cd libbtbb
    tar xvf libbtbb.0.5.tgz
    Now enjoy working with ubertooth in backtrack 5

Similar Threads

  1. How to install backtrack 5
    By ssahu344 in forum Operating Systems
    Replies: 2
    Last Post: 11-05-2012, 03:07 PM
  2. Cannot install OpenVAS 4 on Backtrack 5
    By Ilampirai in forum Operating Systems
    Replies: 5
    Last Post: 09-07-2011, 08:56 PM
  3. Unable to install BackTrack 5 on KDE
    By The$Jinendra in forum Windows Software
    Replies: 5
    Last Post: 09-07-2011, 10:38 AM
  4. Backtrack 5 Live USB Install
    By Dakshayani in forum Operating Systems
    Replies: 6
    Last Post: 05-07-2011, 02:55 AM
  5. install Backtrack 4 using ISO burnt to DVD
    By Carmine in forum Operating Systems
    Replies: 6
    Last Post: 09-05-2010, 06:33 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,914,601.63176 seconds with 17 queries