Ticker

6/recent/ticker-posts

Use ADB With Just Knowing IP Address Of Android


Security researchers and pen-testers most helpful and widely used tool is ADB, in this article I will show you how to get the ADB (Android Development Bridge) shell of any android by knowing their IP address. 

First of all, we clear that only one time do we need to connect the target android with a computer (Installed Kali and ADB package) with a USB cable and enable USB dubbing in android and it may take about 10-30 seconds. Just follow the steps given below.

Requirements

  • Kali Linux With ADB Package
  • Target Android (For a few seconds)

Step1.

  • Connect android to the computer using a USB cable
  • Enable USB dubbing of android device

Step2.

  • Check if the target device connected successfully using the given command
adb devices
  • Start adb shell using the given command
adb shell
  • See and copy the IP address of android using the given command
ifconfig
  • exit the adb framework
exit
  • Now make a reverse TCP connection with the android
adb tcpip 5555
  • Now everything is done and you can unplug the USB cable

Step3.

  • Run the given command to get adb shell of android
adb connect Paste-IP-Here:4444
Now you get adb shell of that android, type help for user guide and other information.

I hope this information is helpful for you, make sure to stay connected with us on different platforms for latest updates.