Static Analysis
Types of Vulnerabilities that Static Analysis Can Detect
Type
Description
APK Downloading
APK Extraction from Phone
# Find package name of your app
adb shell pm list packages | grep myapp
# Get path of the apk
adb shell pm path <package name>
# Pull the apk
adb pull /data/app/<package name>/base.apk .Disassembling the APK
Last updated