Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install mobsf via python pip




mobsf - Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Developers
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.8
- Topic :: Security
- Topic :: Software Development
- Topic :: Software Development :: Quality Assurance

When you know about this project and you want to new install mobsf to support your project or you get trouble as ModuleNotFoundError: No module named "mobsf" or ImportError: cannot import name "mobsf" in your project, let follow this tutorial to install mobsf



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_mobsf_env

- Active the virtual environment

test_mobsf_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_mobsf_env

- Active the virtual environment

source test_mobsf_env/bin/active


Step 2: OK, now, let flow below content to start the installation mobsf

To install mobsf on Windows(CMD):

py -m pip install mobsf

To install mobsf on Unix/macOs:

pip install mobsf


Step 3: If you want to install a specific mobsf version, add ==<mobsf version> to the end command line

Example:

pip install mobsf==3.2.6


Please see the version list below table:

VersionReleased dateCommand
mobsf 3.5.02022-01-23T23:09:39Windows:

py -m pip install mobsf==3.5.0

Unix/macOs:

pip install mobsf==3.5.0

mobsf 3.4.62022-01-08T22:25:52Windows:

py -m pip install mobsf==3.4.6

Unix/macOs:

pip install mobsf==3.4.6

mobsf 3.4.32021-04-25T07:27:47Windows:

py -m pip install mobsf==3.4.3

Unix/macOs:

pip install mobsf==3.4.3

mobsf 3.4.02021-03-28T00:00:23Windows:

py -m pip install mobsf==3.4.0

Unix/macOs:

pip install mobsf==3.4.0

mobsf 3.3.52021-03-22T00:06:54Windows:

py -m pip install mobsf==3.3.5

Unix/macOs:

pip install mobsf==3.3.5

mobsf 3.3.32021-03-08T06:40:49Windows:

py -m pip install mobsf==3.3.3

Unix/macOs:

pip install mobsf==3.3.3

mobsf 3.2.92021-01-20T00:54:58Windows:

py -m pip install mobsf==3.2.9

Unix/macOs:

pip install mobsf==3.2.9

mobsf 3.2.8 yanked2021-01-20T00:19:08Windows:

py -m pip install mobsf==3.2.8                                                                          yanked

Unix/macOs:

pip install mobsf==3.2.8                                                                          yanked

mobsf 3.2.72021-01-17T22:08:17Windows:

py -m pip install mobsf==3.2.7

Unix/macOs:

pip install mobsf==3.2.7

mobsf 3.2.62021-01-17T08:58:54Windows:

py -m pip install mobsf==3.2.6

Unix/macOs:

pip install mobsf==3.2.6


Step 4: Otherwise, you can install mobsf from local archives:

Download the distribution file from mobsf-3.5.0.tar.gz or the specific mobsf version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_mobsf_downloaded_file>

On Unix/macOs:

pip install <path_to_mobsf_downloaded_file>


List distribution:

- mobsf-3.2.6.tar.gz (python version >=3.7<3.9)
- mobsf-3.2.7.tar.gz (python version >=3.7<3.9)
- mobsf-3.2.8.tar.gz (python version >=3.7<=3.9)
- mobsf-3.2.9.tar.gz (python version >=3.7<=3.9)
- mobsf-3.3.3.tar.gz (python version >=3.8<=3.9)
- mobsf-3.3.5.tar.gz (python version >=3.8<=3.9)
- mobsf-3.4.0.tar.gz (python version >=3.8<=3.9)
- mobsf-3.4.3.tar.gz (python version >=3.8<=3.9)
- mobsf-3.4.6.tar.gz (python version >=3.8<=3.9)
- mobsf-3.5.0.tar.gz (python version >=3.8<=3.9)
- mobsf-3.6.0.tar.gz (python version >=3.8<=3.9)


Project link:

- Homepage