从零开始学习AWS黑客技术,成为专家 htARTE(HackTricks AWS Red Team Expert) 其他支持HackTricks的方式: * 如果您想看到您的**公司在HackTricks中做广告**或**下载PDF格式的HackTricks**,请查看[**订阅计划**](https://github.com/sponsors/carlospolop)! * 获取[**官方PEASS & HackTricks周边产品**](https://peass.creator-spring.com) * 探索[**PEASS家族**](https://opensea.io/collection/the-peass-family),我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family) * **加入** 💬 [**Discord群**](https://discord.gg/hRep4RUj7f) 或 [**电报群**](https://t.me/peass) 或 **关注**我们的**Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**。** * 通过向[**HackTricks**](https://github.com/carlospolop/hacktricks)和[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github仓库提交PR来分享您的黑客技巧。
**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 ``` ## 端口隧道 如果在安卓设备中 **adb** **端口** 只能从 **本地主机** 访问,但是 **你可以通过 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 \[选项] \<路径> ```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卸载 \[选项] \<包名> ```bash adb uninstall com.test.app adb uninstall -k com.test.app Keep the data and cache directories around after package removal. ``` ## 包 打印所有包,可选择仅打印包名包含\文本的包。 ### 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 ``` # 屏幕截图/录屏 ### 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