-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f3ad3d
commit 58d259f
Showing
1 changed file
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
# Androud Info | ||
# Android Info | ||
Scan apk bundles or AndroidManifest.xml to extract formatted userful information | ||
Packaged with nix | ||
(under development) | ||
|
||
Get an high level overview of AndroidManifest.xml file of an android apk while reversing the apk such as `exported or non-exported activities` , `package information`, `permissions`, `services`, etc. | ||
|
||
## Usage | ||
|
||
#### Windows | ||
|
||
```bash | ||
python apkinfo.py --xml <path_to_AndroidManifest.xml> | ||
python apkinfo.py --apk <path_to_target.apk> | ||
``` | ||
#### Linux/mac | ||
|
||
```bash | ||
python3 apkinfo.py --xml <path_to_AndroidManifest.xml> | ||
python3 apkinfo.py --apk <path_to_target.apk> | ||
``` | ||
## Installation | ||
- Download and install jadx from [here](https://github.com/skylot/jadx?tab=readme-ov-file#download) | ||
- Install the requirements | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` |