Lernen Sie AWS-Hacking von Null auf Held mit htARTE (HackTricks AWS Red Team Expert)! Andere Möglichkeiten, HackTricks zu unterstützen: * Wenn Sie Ihr **Unternehmen in HackTricks bewerben möchten** oder **HackTricks als PDF herunterladen möchten**, überprüfen Sie die [**ABONNEMENTPLÄNE**](https://github.com/sponsors/carlospolop)! * Holen Sie sich das [**offizielle PEASS & HackTricks-Merchandise**](https://peass.creator-spring.com) * Entdecken Sie [**The PEASS Family**](https://opensea.io/collection/the-peass-family), unsere Sammlung exklusiver [**NFTs**](https://opensea.io/collection/the-peass-family) * **Treten Sie der** 💬 [**Discord-Gruppe**](https://discord.gg/hRep4RUj7f) oder der [**Telegram-Gruppe**](https://t.me/peass) bei oder **folgen** Sie uns auf **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**.** * **Teilen Sie Ihre Hacking-Tricks, indem Sie PRs an die** [**HackTricks**](https://github.com/carlospolop/hacktricks) und [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) GitHub-Repositories senden.
**Adb befindet sich normalerweise in:** ```bash #Windows C:\Users\\AppData\Local\Android\sdk\platform-tools\adb.exe #MacOS /Users//Library/Android/sdk/platform-tools/adb ``` **Information obtained from:** [**http://adbshell.com/**](http://adbshell.com) # Verbindung ## ADB over USB To establish a connection between your computer and an Android device using ADB over USB, follow these steps: 1. Enable USB debugging on the Android device. 2. Connect the Android device to your computer using a USB cable. 3. Open a terminal or command prompt on your computer. 4. Navigate to the directory where the ADB executable is located. 5. Run the following command to check if the device is connected: ```bash adb devices ``` 6. If the device is listed, you can proceed with executing ADB commands. ## ADB over Wi-Fi To establish a connection between your computer and an Android device using ADB over Wi-Fi, follow these steps: 1. Connect the Android device to your computer using a USB cable. 2. Enable USB debugging on the Android device. 3. Open a terminal or command prompt on your computer. 4. Navigate to the directory where the ADB executable is located. 5. Run the following command to check if the device is connected: ```bash adb devices ``` 6. If the device is listed, run the following command to enable ADB over Wi-Fi: ```bash adb tcpip 5555 ``` 7. Disconnect the USB cable from the Android device. 8. Find the IP address of the Android device. You can check it in the device settings or by running the following command: ```bash adb shell ip -f inet addr show wlan0 ``` 9. Run the following command to connect to the Android device over Wi-Fi: ```bash adb connect :5555 ``` 10. If the connection is successful, you can proceed with executing ADB commands. ## ADB over TCP/IP To establish a connection between your computer and an Android device using ADB over TCP/IP, follow these steps: 1. Connect the Android device to your computer using a USB cable. 2. Enable USB debugging on the Android device. 3. Open a terminal or command prompt on your computer. 4. Navigate to the directory where the ADB executable is located. 5. Run the following command to check if the device is connected: ```bash adb devices ``` 6. If the device is listed, run the following command to enable ADB over TCP/IP: ```bash adb tcpip ``` 7. Disconnect the USB cable from the Android device. 8. Run the following command to connect to the Android device over TCP/IP: ```bash adb connect : ``` 9. If the connection is successful, you can proceed with executing ADB commands. ``` adb devices ``` Dies listet die verbundenen Geräte auf; wenn "_**unauthorisiert**_" angezeigt wird, bedeutet dies, dass Sie Ihr **Mobilgerät** **entsperren** und die Verbindung **akzeptieren** müssen. Dies gibt dem Gerät an, dass es einen adb-Server auf Port 5555 starten muss: ``` adb tcpip 5555 ``` Verbinde mit dieser IP und diesem Port: ``` adb connect : ``` Wenn Sie einen Fehler wie den folgenden in einer virtuellen Android-Software (wie Genymotion) erhalten: ``` adb server version (41) doesn't match this client (36); killing... ``` Es liegt daran, dass du versuchst, dich mit einem ADB-Server mit einer anderen Version zu verbinden. Versuche einfach, die adb-Binärdatei zu finden, die die Software verwendet (gehe zu `C:\Program Files\Genymobile\Genymotion` und suche nach adb.exe). ## Mehrere Geräte Immer wenn du **mehrere Geräte mit deinem Computer verbunden** findest, musst du angeben, auf welchem Gerät du den adb-Befehl ausführen möchtest. ```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 Falls der **adb-Port** auf dem Android-Gerät nur von **localhost** aus **zugänglich** ist, Sie jedoch über SSH-Zugriff verfügen, können Sie den Port 5555 **weiterleiten** und eine Verbindung über adb herstellen: ```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 ``` # Paketmanager ## Installieren/Deinstallieren ### 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 deinstallieren \[Optionen] \ Dieser Befehl wird verwendet, um eine Android-App von einem Gerät zu deinstallieren. Das \ Argument gibt den Paketnamen der App an, die deinstalliert werden soll. Es können auch verschiedene Optionen angegeben werden, um das Verhalten des Befehls anzupassen. ```bash adb uninstall com.test.app adb uninstall -k com.test.app Keep the data and cache directories around after package removal. ``` ## Pakete Gibt alle Pakete aus, optional nur diejenigen, deren Paketname den Text in \ enthält. ### adb shell pm list packages \[Optionen] \ ```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 \ Gibt den Pfad zur APK der angegebenen \ aus. ```bash adb shell pm path com.android.phone ``` ### adb shell pm clear \ Löscht alle Daten, die mit einer Anwendung verknüpft sind. ```bash adb shell pm clear com.test.abc ``` # Dateimanager ### adb pull \ \[local] Laden Sie eine bestimmte Datei von einem Emulator/Gerät auf Ihren Computer herunter. ```bash adb pull /sdcard/demo.mp4 ./ ``` ### adb push \ \ Laden Sie eine bestimmte Datei von Ihrem Computer auf einen Emulator/ein Gerät hoch. ```bash adb push test.apk /sdcard ``` # Screencapture/Screenrecord ### adb shell screencap \ Erstellen eines Screenshots des Gerätedisplays. ```bash adb shell screencap /sdcard/screen.png ``` ### adb shell screenrecord \[Optionen] \ Aufzeichnen der Anzeige von Geräten mit Android 4.4 (API-Level 19) und höher. ```bash adb shell screenrecord /sdcard/demo.mp4 adb shell screenrecord --size adb shell screenrecord --bit-rate adb shell screenrecord --time-limit