https://github.com/youhaveme9/apkinfo
A python script to extract high level and critical informations from AndroidManifest.xml or apk
https://github.com/youhaveme9/apkinfo
android decompiler reverse-engineering security
Last synced: about 2 months ago
JSON representation
A python script to extract high level and critical informations from AndroidManifest.xml or apk
- Host: GitHub
- URL: https://github.com/youhaveme9/apkinfo
- Owner: youhaveme9
- Created: 2024-09-09T19:20:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-25T08:45:57.000Z (9 months ago)
- Last Synced: 2025-08-30T01:43:26.784Z (2 months ago)
- Topics: android, decompiler, reverse-engineering, security
- Language: Python
- Homepage:
- Size: 49.8 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android Info
Scan apk bundles or AndroidManifest.xml to extract formatted useful information
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 and the list of potential vulnerabilities
## Installation
- Download and install jadx from [here](https://github.com/skylot/jadx?tab=readme-ov-file#download)
- Get your open ai api key from [here](https://platform.openai.com/)
#### Fork the repo
```bash
git clone https://github.com/youhaveme9/ctfinfo
```
#### Install the dependencies
```bash
pip install -r requirements.txt
```
## Usage
#### Windows
```bash
python apkinfo.py --xml
python apkinfo.py --apk
```
#### Linux/mac
```bash
python3 apkinfo.py --xml
python3 apkinfo.py --apk
```