ApkRF is a Reconnaissance Framework for APK files. It uses "apkleaks" in the Back-end
which decompiles the APK and look for interesting informations inside it.
- Create a virtualenv:
$ python3 -m venv <virtual env path>
- Activate the virtualenv you have just created:
$ source <virtual env path>/bin/activate
- Clone this repository:
$ git clone https://github.com/iamnihal/ApkRF.git
- Install the requirements:
$ pip install -r requirements.txt
- Apply migrations:
$ python manage.py migrate
- Run the server:
$ python manage.py runserver
and load the app at https://127.0.0.1:8000
⚠️ Warning:- Change SECRET_KEY in settings.py for the security purpose. To generate your own SECRET_KEY, use this:-
python -c "import secrets; print(secrets.token_urlsafe())"
Any contributions you make are greatly appreciated.
Distributed under the MIT License. See LICENSE for more information.
apkleaks:- dwisiswant0