Android
Setup and Configuration
ADB (Android Debug Bridge)
adb devices # List connected devices
adb shell # Open a shell on the device
adb pull /sdcard/ # Pull files from the device
adb push <local> <remote> # Push files to the device
adb install <apk> # Install an APK on the device
adb uninstall <package> # Uninstall an APK from the device
adb logcat # View the system log
adb shell pm list packages # List installed packages
adb shell pm dump <package> # Dump the state of a package
adb shell am start -n <package>/<activity> # Start an activity
adb shell screencap /sdcard/screenshot.png # Capture a screenshotDynamic Analysis
Dynamic Analysis Tools
Common Dynamic Analysis Techniques
Vulnerabilities Covered by MobSF
Android Red Teaming
Techniques and Tools
Last updated