MASTG Techniques
π Resources π
Android
Device Remote Shell
# USB
adb devices -l
adb shell
adb -s <device_ID> shell
su
# WiFi (same network)
# Set a listener on the device (via USB)
adb tcpip 5555
# Disconnect USB and run from host pc (same network)
adb connect <device_IP>
adb devices
adb shell
# SSH
# On device > Setup Termux (default port 8022)
sshd
# On Host pc
ssh -p 8022 <device_IP>
# "SSH for Magisk" Module can be used tooData transfer
Obtaining and Extracting Apps
Repack & Install App
App Information Gathering
Bypassing the Network Security Configuration
Obstacles
Last updated