-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
payloads/library/mobile/android/adb_shell_dumpsys/readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## Requirements | ||
|
||
Before using this Bash Bunny payload, please ensure you meet the following requirements: | ||
|
||
- **Bash Bunny device**: This payload is designed to run on the Bash Bunny hardware platform. Make sure you have a Bash Bunny device available. | ||
- **Installation of essential `adb` packages**: In order to enable `adb` functionality on the Bash Bunny, you need to install the following packages: | ||
- `android-liblog` | ||
- `android-libbase` | ||
- `android-libcutils` | ||
- `android-libadb` | ||
- `adb` | ||
|
||
### Installing Essential `adb` Packages | ||
|
||
To install the required `adb` packages on your Bash Bunny, follow these steps: | ||
|
||
1. Connect your Bash Bunny to a computer. | ||
2. Open a terminal window and navigate to the Bash Bunny storage directory. | ||
3. Execute the following commands to download and install the essential `adb` packages: | ||
|
||
```bash | ||
wget --no-check-certificate https://archive.debian.org/debian/pool/main/a/android-platform-system-core/android-liblog_7.0.0+r33-1_armhf.deb | ||
dpkg -i android-liblog_7.0.0+r33-1_armhf.deb | ||
|
||
wget --no-check-certificate https://archive.debian.org/debian/pool/main/a/android-platform-system-core/android-libbase_7.0.0+r33-1_armhf.deb | ||
dpkg -i android-libbase_7.0.0+r33-1_armhf.deb | ||
|
||
wget --no-check-certificate https://archive.debian.org/debian/pool/main/a/android-platform-system-core/android-libcutils_7.0.0+r33-1_armhf.deb | ||
dpkg -i android-libcutils_7.0.0+r33-1_armhf.deb | ||
|
||
wget --no-check-certificate https://archive.debian.org/debian/pool/main/a/android-platform-system-core/android-libadb_7.0.0+r33-1_armhf.deb | ||
dpkg -i android-libadb_7.0.0+r33-1_armhf.deb | ||
|
||
wget --no-check-certificate https://archive.debian.org/debian/pool/main/a/android-platform-system-core/adb_7.0.0+r33-1_armhf.deb | ||
dpkg -i adb_7.0.0+r33-1_armhf.deb |