Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.56 KB

README.md

File metadata and controls

42 lines (33 loc) · 1.56 KB

APK Inspector Header

Find permissions and dependencies used by an Android application.

Installation

This project currently depends on APKTool. APKTool is an open source library that allows disassembly of APKs.

Follow the installation instructions on their website.

Install the other project dependencies with yarn.

Usage

Install the script globally with npm install -g and then run with the command with apki.

Otherwise run the script from the project directory with the command node index.js.

Options

apki [option] <parameter>

option alias parameters description
--local-source -l string: path_to_apk path to local APK
--remote-source -r string: URL URL of remote source
--output-type -o [json], [text], [both] output file type
--console-output -c none print output to console
--specify-permission -x string: permission_name console log if permisison is found
--specify-dependency -y string: package_name console log if dependency is found
--permissions-only -p none only output permissions
--dependencies-only -d none only output dependencies
--version -v none Show version number
--help -h none Show help

Examples

  apki -r https://pathtoapk.io -x camera
  apki -l ./Downloads/myapk.apk -d
  node index.js

License

APK Inspector is under the MIT License.