DroidBox_AndroPyTool | This is a fork of the DroidBox tool to be
kandi X-RAY | DroidBox_AndroPyTool Summary
kandi X-RAY | DroidBox_AndroPyTool Summary
DroidBox_AndroPyTool is a Python library. DroidBox_AndroPyTool has no bugs, it has no vulnerabilities, it has build file available and it has low support. You can download it from GitHub.
This is a fork of the DroidBox tool to be used by AndroPyTool. It includes new features:.
This is a fork of the DroidBox tool to be used by AndroPyTool. It includes new features:.
Support
Quality
Security
License
Reuse
Support
DroidBox_AndroPyTool has a low active ecosystem.
It has 4 star(s) with 3 fork(s). There are 1 watchers for this library.
It had no major release in the last 6 months.
DroidBox_AndroPyTool has no issues reported. There are no pull requests.
It has a neutral sentiment in the developer community.
The latest version of DroidBox_AndroPyTool is current.
Quality
DroidBox_AndroPyTool has no bugs reported.
Security
DroidBox_AndroPyTool has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
License
DroidBox_AndroPyTool does not have a standard license declared.
Check the repository for any license declaration and review the terms closely.
Without a license, all rights are reserved, and you cannot use the library in your applications.
Reuse
DroidBox_AndroPyTool releases are not available. You will need to build from source code and install.
Build file is available. You can build the component from source.
Installation instructions, examples and code snippets are available.
Top functions reviewed by kandi - BETA
kandi has reviewed DroidBox_AndroPyTool and discovered the below as its top functions. This is intended to give you an instant insight into DroidBox_AndroPyTool implemented functionality, and help decide if they suit your requirements.
- Execute Ringbox .
- Process the next XML element .
- Analyze the APK devices using the droid box .
- Parse the Sudoku output files
- Process the APK .
- Exports VM to Python object .
- Returns the value for the attribute value
- Pretty print paths .
- Return the raw string at index .
- Run sandbox .
Get all kandi verified functions for this library.
DroidBox_AndroPyTool Key Features
No Key Features are available at this moment for DroidBox_AndroPyTool.
DroidBox_AndroPyTool Examples and Code Snippets
No Code Snippets are available at this moment for DroidBox_AndroPyTool.
Community Discussions
No Community Discussions are available at this moment for DroidBox_AndroPyTool.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install DroidBox_AndroPyTool
1. You need to install Android SDK (go to next step if you already have it) The next steps will allow you to install Android SDK in Non-GUI mode:.
AndroPyTool has a series of dependencies. You can install all of them by executing: $ apt-get update $ apt-get install -y --no-install-recommends software-properties-common wget git lib32gcc1 lib32ncurses5 lib32stdc++6 lib32z1 libc6-i386 libgl1-mesa-dev python-pip python-dev gcc python-tk curl $ add-apt-repository ppa:webupd8team/java -y $ apt-get update $ echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections $ apt-get install -y oracle-java8-installer $ apt-get install -y python-setuptools $ apt-get clean
Download and unzip Android SDK: $ cd $ wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz $ tar -xvf android-sdk_r24.2-linux.tgz
Add Android SDK to path (if you don't use Bash i.e. you prefer Zsh, remember to modify the correct file). To to that, add these two lines to your ~/.bashrc file: export ANDROID_HOME=$HOME/android-sdk-linux/ export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools
Load the libraries in the current session with: $ source ~/.bashrc
Let's install Android 16, which is the version supported by DroidBox (the platform and system image): $ echo y | android update sdk --filter tools --no-ui --force -a $ echo y | android update sdk --filter platform-tools --no-ui --force -a $ echo y | android update sdk --filter android-16 --no-ui --force -a $ echo y | /android update sdk --filter sys-img-armeabi-v7a-android-16 --no-ui -a
Now we can start with DroidBox. First, you have to download this repo and the last release of the original DroidBox repo in order to copy the system and RAM images: $ cd $ git clone https://github.com/alexMyG/DroidBox-AndroPyTool $ wget https://github.com/pjlantz/droidbox/releases/download/v4.1.1/DroidBox411RC.tar.gz $ tar -zxvf DroidBox411RC.tar.gz $ cp -r DroidBox_4.1.1/images DroidBox_AndroPyTool/images
We need to create the device (select no when asking if you wish a custom hardware profile): $ cd DroidBox-AndroPyTool/ $ ./createDroidBoxDevice.sh
Scripts need the correct permissions: $ chmod 744 *.sh
This repo requires several Python libraries. We recommend you to use a Virtual Environment. If you do not want, go to next step: Install virtualenv: $ pip install virtualenv Create virtual environment and activate it: $ virtualenv droidbox_env $ source droidbox_env/bin/activate
The following Python libraries are required: $ pip install -r requirements.txt
If everything was OK, we can now run DroidBox: python fork_droidbox.py <PATH_TO_FOLDER_WITH_APKS> <TIME_IN_SECONDS> <GUI_MODE:_False_or_True> For instance, this is the call to analyse all apks located in /home/alex/my_apks/ during 300 seconds in the Non-GUI mode: python fork_droidbox.py /home/alex/my_apks/ 300 False
AndroPyTool has a series of dependencies. You can install all of them by executing: $ apt-get update $ apt-get install -y --no-install-recommends software-properties-common wget git lib32gcc1 lib32ncurses5 lib32stdc++6 lib32z1 libc6-i386 libgl1-mesa-dev python-pip python-dev gcc python-tk curl $ add-apt-repository ppa:webupd8team/java -y $ apt-get update $ echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections $ apt-get install -y oracle-java8-installer $ apt-get install -y python-setuptools $ apt-get clean
Download and unzip Android SDK: $ cd $ wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz $ tar -xvf android-sdk_r24.2-linux.tgz
Add Android SDK to path (if you don't use Bash i.e. you prefer Zsh, remember to modify the correct file). To to that, add these two lines to your ~/.bashrc file: export ANDROID_HOME=$HOME/android-sdk-linux/ export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools
Load the libraries in the current session with: $ source ~/.bashrc
Let's install Android 16, which is the version supported by DroidBox (the platform and system image): $ echo y | android update sdk --filter tools --no-ui --force -a $ echo y | android update sdk --filter platform-tools --no-ui --force -a $ echo y | android update sdk --filter android-16 --no-ui --force -a $ echo y | /android update sdk --filter sys-img-armeabi-v7a-android-16 --no-ui -a
Now we can start with DroidBox. First, you have to download this repo and the last release of the original DroidBox repo in order to copy the system and RAM images: $ cd $ git clone https://github.com/alexMyG/DroidBox-AndroPyTool $ wget https://github.com/pjlantz/droidbox/releases/download/v4.1.1/DroidBox411RC.tar.gz $ tar -zxvf DroidBox411RC.tar.gz $ cp -r DroidBox_4.1.1/images DroidBox_AndroPyTool/images
We need to create the device (select no when asking if you wish a custom hardware profile): $ cd DroidBox-AndroPyTool/ $ ./createDroidBoxDevice.sh
Scripts need the correct permissions: $ chmod 744 *.sh
This repo requires several Python libraries. We recommend you to use a Virtual Environment. If you do not want, go to next step: Install virtualenv: $ pip install virtualenv Create virtual environment and activate it: $ virtualenv droidbox_env $ source droidbox_env/bin/activate
The following Python libraries are required: $ pip install -r requirements.txt
If everything was OK, we can now run DroidBox: python fork_droidbox.py <PATH_TO_FOLDER_WITH_APKS> <TIME_IN_SECONDS> <GUI_MODE:_False_or_True> For instance, this is the call to analyse all apks located in /home/alex/my_apks/ during 300 seconds in the Non-GUI mode: python fork_droidbox.py /home/alex/my_apks/ 300 False
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page