Skip to content
/ ApkRF Public

ApkRF: Android Package Reconnaissance Framework

License

Notifications You must be signed in to change notification settings

iamnihal/ApkRF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ApkRF: Android Package Reconnaissance Framework

version python django platform

ApkSF

Live: [Soon]

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.

Installation

  1. Create a virtualenv:
$ python3 -m venv <virtual env path>
  1. Activate the virtualenv you have just created:
$ source <virtual env path>/bin/activate
  1. Clone this repository:
$ git clone https://github.com/iamnihal/ApkRF.git
  1. Install the requirements:
$ pip install -r requirements.txt
  1. Apply migrations:
$ python manage.py migrate
  1. Run the server:
$ python manage.py runserver

and load the app at http://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())"

Contributing

Any contributions you make are greatly appreciated.

License

Distributed under the MIT License. See LICENSE for more information.

Acknowledgements and Credits

apkleaks:- dwisiswant0