Android Debug Bridge
From HandWiki
The Android Debug Bridge, commonly abbreviated as ADB is a tool to run commands on a connected Android device.[1][2] The adbd
daemon runs on the device, and the adb
client starts a background server to multiplex commands sent to devices. In addition to the command-line interface,[3] numerous graphical user interfaces exist to control adb.
The format for issuing commands is typically:
adb [-d|-e|-s <serialNumber>] <command> where -d is the option for specifying the single USB-attached device, -e for the single running Android emulator on the computer, -s for specifying a USB-attached device by its unique serial number. If there is only one attached device or running emulator, these options are not necessary.
For example, Android applications can be saved by the command backup
to a file,
whose name is backup.ab
by default.[4]
In a security issue reported in March 2011, ADB was targeted as a vector to attempt to install a rootkit on connected phones using a "resource exhaustion attack".[5]
References
- ↑ Darcey, Lauren (2012). Android wireless application development. Shane Conder (3rd ed.). Upper Saddle River, NJ: Addison-Wesley. ISBN 978-0-321-81383-1. OCLC 749852462. https://www.worldcat.org/oclc/749852462.
- ↑ Regupathy, Rajaram (2014). Unboxing Android USB : a hands-on approach with real World examples. Berkeley, CA. ISBN 978-1-4302-6209-1. OCLC 880673864. https://www.worldcat.org/oclc/880673864.
- ↑ "Android Debug Bridge | Android Developers" Accessed December 27, 2012
- ↑ Jack Wallen (2015-03-06). "How to create a full backup of your Android device without root". http://www.techrepublic.com/article/how-to-create-a-full-backup-of-your-android-device-without-root/.
- ↑ Lemos, Robert "Open source vulnerabilities paint a target on Android"
Original source: https://en.wikipedia.org/wiki/Android Debug Bridge.
Read more |