Metadata-Version: 2.4
Name: secapka
Version: 0.1.17
Summary: Secapka - Framework CLI d'analyse d'APK Android
Author: Pi3rrhUs
License: MIT License
        
        Copyright (c) 2025 Pi3rrhUs
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/Pi3rrhUs/Secapka
Project-URL: Repository, https://github.com/Pi3rrhUs/Secapka
Project-URL: Issues, https://github.com/Pi3rrhUs/Secapka/issues
Project-URL: Changelog, https://github.com/Pi3rrhUs/Secapka/blob/main/CHANGELOG.md
Keywords: android,apk,security,static-analysis,sarif,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.1
Requires-Dist: androguard>=4.1
Requires-Dist: loguru>=0.7
Provides-Extra: dev
Requires-Dist: pytest>=9; extra == "dev"
Requires-Dist: ruff>=0.6; extra == "dev"
Dynamic: license-file

# Secapka

Framework CLI pour analyser des APK Android et produire un rapport JSON (et export SARIF).

## Installation
### pipx (recommandé)
```bash
pipx install secapka
secapka -V
```

## pip (venv)
```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install -U pip
python -m pip install secapka
secapka -V
```

## Utilisation
### Scan (APK/XAPK → JSON)
```bash
secapka scan app.apk -o report.json
secapka scan bundle.xapk -o report.json
```

## Afficher un rapport
```bash
secapka show report.json
secapka show report.json --full
```

## Export SARIF
```bash
secapka export report.json -o report.sarif
```

## Développement
```bash
python -m venv .venv
source .venv/bin/activate
python -m pip install -U pip
python -m pip install -e ".[dev]"

ruff format .
ruff check --fix .
pytest
```

[![PyPI](https://img.shields.io/pypi/v/secapka)](https://pypi.org/project/secapka/)
[![CI](https://github.com/Pi3rrhUs/Secapka/actions/workflows/ci.yml/badge.svg)](https://github.com/Pi3rrhUs/Secapka/actions/workflows/ci.yml)



