Pentest Tools

Published on March 11th, 2016 📆 | 6418 Views ⚑

0

DTF — Android Device Testing Framework


https://www.ispeech.org/text.to.speech
The Android Device Testing Framework (“dtf”) is a data collection and analysis framework to help individuals answer the question: “Where are the vulnerabilities on this mobile device?”

Dtf provides a modular approach and built-in APIs that allows testers to quickly create scripts to interact with their Android devices. By default, dtf does not include any modules, but a collection of testing modules is made available on the Cobra Den website. These modules allow testers to obtain information from their Android device, process this information into databases, and then start searching for vulnerabilities (all without requiring root privileges). These modules help you focus on changes made to AOSP components such as applications, frameworks, system services, as well as lower-level components such as binaries, libraries, and device drivers. In addition, you’ll be able to analyze new functionality implemented by the OEMs and other parties to find vulnerabilities.

[adsense size='1']

Installing & Using

dtf is offically supported on Ubuntu, particularly versions 14 and 15. To install dtf on Ubuntu, run the following command as root:

sudo ./install_dependencies.sh
sudo python setup.py install

The following packages are required:

  • JRE 1.7
  • Python 2.7 or higher
  • A true Bash shell (no Dash!!!), with general purpose Linux utilities (sed, awk, etc.)
  • sqlite3
  • adb
  • Python pip
  • ‘colored’ pip module

[adsense size='1']

Download the dtf framework from GitHub:

git clone https://github.com/jakev/dtf dtf/

If you are using Ubuntu 14, you can simply run the install_dependencies.sh script to obtain the prequiste software:

cd dtf/
sudo ./install_dependencies.sh

You’ll need to add dtf to your $PATH. If you want to use the auto completion features of dtf.
You can source the file “dtf_bash_completion.sh” in your “.bashrc”, copy “dtf_bash_completion.sh to “/etc/bash_completion.d/” (if you are already sourcing this in your “.bashrc”), or just run:

dtf/dtf_bash_completion.sh

To confirm dtf is working, try the command:





dtf -h

If you see the dtf help screen with no errors, you are good to go!

 

Getting Modules

dtf is just a framework. Without installing actual content, it doesn’t do anything!

Dtf comes with a basic package manager that helps manage your active content. This allows you to download and install modules from anywhere. To download and install the content mentioned above, you can use the pm built-in command:

wget https://www.thecobraden.com/uploads/dtfmods-core-v1.2.0.zip
wget https://www.thecobraden.com/uploads/aosp-data-22.zip
dtf pm install --zip dtfmods-core-v1.2.0.zip
dtf pm install --zip aosp-data-22.zip

You can also install a single modules, packages, libraries, or binaries:

dtf pm install --single module --name mymodule --auto

 

 

Source && Download

https://github.com/jakev/dtf/



Comments are closed.