Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
youhaveme9 authored Sep 14, 2024
1 parent 8f3ad3d commit 58d259f
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions README.md
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
```

0 comments on commit 58d259f

Please sign in to comment.