{% hint style="success" %}
学习与实践 AWS 黑客技术:[**HackTricks 培训 AWS 红队专家 (ARTE)**](https://training.hacktricks.xyz/courses/arte)\
学习与实践 GCP 黑客技术:[**HackTricks 培训 GCP 红队专家 (GRTE)**](https://training.hacktricks.xyz/courses/grte)
支持 HackTricks
* 查看 [**订阅计划**](https://github.com/sponsors/carlospolop)!
* **加入** 💬 [**Discord 群组**](https://discord.gg/hRep4RUj7f) 或 [**Telegram 群组**](https://t.me/peass) 或 **关注** 我们的 **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **通过向** [**HackTricks**](https://github.com/carlospolop/hacktricks) 和 [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) GitHub 仓库提交 PR 来分享黑客技巧。
{% endhint %}
**Adb 通常位于:**
```bash
#Windows
C:\Users\\AppData\Local\Android\sdk\platform-tools\adb.exe
#MacOS
/Users//Library/Android/sdk/platform-tools/adb
```
**信息来源:** [**http://adbshell.com/**](http://adbshell.com)
# 连接
```
adb devices
```
这将列出连接的设备;如果出现“_**未授权**_”,这意味着您必须**解锁**您的**手机**并**接受**连接。
这向设备指示它必须在端口 5555 启动 adb 服务器:
```
adb tcpip 5555
```
连接到该IP和该端口:
```
adb connect :
```
如果您在虚拟 Android 软件(如 Genymotion)中遇到以下错误:
```
adb server version (41) doesn't match this client (36); killing...
```
因为您尝试连接到不同版本的 ADB 服务器。只需尝试找到软件正在使用的 adb 二进制文件(转到 `C:\Program Files\Genymobile\Genymotion` 并搜索 adb.exe)
## 多个设备
每当您发现 **多个设备连接到您的机器** 时,您需要 **指定要在哪个设备上** 运行 adb 命令。
```bash
adb devices
List of devices attached
10.10.10.247:42135 offline
127.0.0.1:5555 device
```
```bash
adb -s 127.0.0.1:5555 shell
x86_64:/ # whoami
root
```
## Port Tunneling
如果 **adb** **端口** 仅在安卓设备的 **localhost** 上 **可访问**,但 **您可以通过 SSH 访问**,您可以 **转发端口 5555** 并通过 adb 连接:
```bash
ssh -i ssh_key username@10.10.10.10 -L 5555:127.0.0.1:5555 -p 2222
adb connect 127.0.0.1:5555
```
# 包管理器
## 安装/卸载
### adb install \[option] \
```bash
adb install test.apk
adb install -l test.apk # forward lock application
adb install -r test.apk # replace existing application
adb install -t test.apk # allow test packages
adb install -s test.apk # install application on sdcard
adb install -d test.apk # allow version code downgrade
adb install -p test.apk # partial application install
```
### adb uninstall \[options] \
```bash
adb uninstall com.test.app
adb uninstall -k com.test.app Keep the data and cache directories around after package removal.
```
## Packages
打印所有包,选项上只打印那些包名包含\文本的包。
### adb shell pm list packages \[options] \
```bash
adb shell pm list packages
adb shell pm list packages -f #See their associated file.
adb shell pm list packages -d #Filter to only show disabled packages.
adb shell pm list packages -e #Filter to only show enabled packages.
adb shell pm list packages -s #Filter to only show system packages.
adb shell pm list packages -3 #Filter to only show third party packages.
adb shell pm list packages -i #See the installer for the packages.
adb shell pm list packages -u #Also include uninstalled packages.
adb shell pm list packages --user #The user space to query.
```
### adb shell pm path \
打印给定 APK 的路径。
```bash
adb shell pm path com.android.phone
```
### adb shell pm clear \
删除与包相关的所有数据。
```bash
adb shell pm clear com.test.abc
```
# 文件管理器
### adb pull \ \[local]
从模拟器/设备下载指定文件到你的计算机。
```bash
adb pull /sdcard/demo.mp4 ./
```
### adb push \ \
将指定文件从计算机上传到模拟器/设备。
```bash
adb push test.apk /sdcard
```
# Screencapture/Screenrecord
### adb shell screencap \
对设备显示屏进行截图。
```bash
adb shell screencap /sdcard/screen.png
```
### adb shell screenrecord \[options] \
录制运行 Android 4.4(API 级别 19)及更高版本的设备的显示。
```bash
adb shell screenrecord /sdcard/demo.mp4
adb shell screenrecord --size
adb shell screenrecord --bit-rate
adb shell screenrecord --time-limit