Advertisement
metalx1000

Android ADB Shell over Network

Mar 22nd, 2017
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #start adb over network
  2. ##############on device#############
  3. #!/system/bin/sh
  4. setprop service.adb.tcp.port 5555
  5. stop adbd
  6. start adbd
  7.  
  8. #############on computer###############
  9. adb tcpip 5555
  10. adb connect <device IP>:5555
  11. adb shell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement