Android Pentesting
ADB Commands
# install adb
sudo apt install adb
# connect to a device
adb connect <ip>:5555
# check the connected devices
adb devices
adb devices -l
# get shell on the android device
adb shell
# get the list of installed applications
adb shell pm list packages | grep <appName>
# get the path of the installed application
adb shell pm path com.app.name
# obtain apk from the installed location
adb pull /data/data/*/*/base.apk <appname.apk>
Wireless ADB
Tools Required
Nice Blogs
Labs
Troubleshooting
Last updated