Reverse engineering and pentesting for Android applications
Go to file
2024-01-01 20:55:33 -05:00
.github adding the rest of the tests 2023-12-30 01:02:03 +02:00
androguard add methodname for exported formats 2024-01-01 20:55:20 -05:00
assets test files, tests.yml and logo with name 2023-12-15 16:40:23 +02:00
tests initial tests for callgraph 2024-01-01 20:55:33 -05:00
.gitignore Clean up and add some ui for dynamic analysis 2023-06-10 07:00:04 -07:00
.gitmodules Clean up 2022-06-30 21:10:31 +02:00
.landscape.yml add landscape 2015-09-14 16:55:01 +02:00
LICENCE-2.0 Fix a bug with invoke-super/range 2014-07-06 22:26:02 +02:00
MANIFEST.in Include missing files for sdist 2020-05-21 10:51:35 -07:00
pyproject.toml lock subpackage required by PyQt5, PyQt5-Qt, to a version that has .whl files for other platforms. For some reason, recent version of the subpackage are only marked for macos. Pip does not have this issue, only Poetry. see https://github.com/python-poetry/poetry/issues/8540 and 060f044077 2024-01-01 17:22:37 -05:00
README.md restore 'androguard cg' functionality for generating call graphs and displaying them with matplotlib. still need to save raw graph formats 2023-12-30 14:44:04 -05:00
requirements.txt sync with androguard master 2024-01-01 16:25:16 -05:00
setup.py ready for patch update 4.0.2 2024-01-01 11:00:27 +02:00

banner

Androguard

PyPI Upload PyPI - Version Static Badge

Installation

Quick installation:

pip install androguard

For visualizing callgraphs generated with 'androguard cg', install additional dependencies:

apt-get install libxcb-randr0-dev libxcb-xtest0-dev libxcb-xinerama0-dev libxcb-shape0-dev libxcb-xkb-dev

Important

Versions >= 4.0.0 are new releases after a long time, where the project has substantial differences from the previous stable version 3.3.5 from 2019. This means that certain functionalities have been removed. If you notice an issue with your project using tha latest version, please open up an issue.

Documentation

Documentation contains outdated information - In progress of updating

Find the documentation for master on ReadTheDocs.

There is also a wiki page.

Features

Androguard is a full python tool to play with Android files.

  • DEX, ODEX
  • APK
  • Android's binary xml
  • Android resources
  • Disassemble DEX/ODEX bytecodes
  • Basic Decompiler for DEX/ODEX files
  • Frida support for easy dynamic analysis
  • SQLite database to save the session

Authors: Androguard Team

Androguard + tools: Anthony Desnos (desnos at t0t0.fr).

DAD (DAD is A Decompiler): Geoffroy Gueguen (geoffroy dot gueguen at gmail dot com)

Projects using Androguard

In alphabetical order

You are using Androguard and are not listed here? Just create a ticket or send us a pull request with your project!

Licenses

Androguard

Copyright (C) 2012 - 2023, Anthony Desnos (desnos at t0t0.fr) All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

DAD

Copyright (C) 2012 - 2016, Geoffroy Gueguen (geoffroy dot gueguen at gmail dot com) All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.