This commit is contained in:
Jean-Marie Mineau 2024-10-16 17:03:56 +02:00
commit 43eef100f1
24 changed files with 2041734 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[tool.poetry]
name = "android-class-shadowing-scanner"
version = "0.1.0"
description = "Detect if an Android application is in a situation that may lead to class spoofing."
authors = ["Jean-Marie Mineau <jean-marie.mineau@inria.fr>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
androguard = "^4.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
scan = 'android_class_shadowing_scanner.__init__:main'