10 KiB
{% hint style="success" %}
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Wsparcie HackTricks
- Sprawdź plany subskrypcyjne!
- Dołącz do 💬 grupy Discord lub grupy telegramowej lub śledź nas na Twitterze 🐦 @hacktricks_live.
- Dziel się trikami hackingowymi, przesyłając PR-y do HackTricks i HackTricks Cloud repozytoriów github.
Adb zazwyczaj znajduje się w:
#Windows
C:\Users\<username>\AppData\Local\Android\sdk\platform-tools\adb.exe
#MacOS
/Users/<username>/Library/Android/sdk/platform-tools/adb
Informacje uzyskane z: http://adbshell.com/
Połączenie
adb devices
To będzie lista podłączonych urządzeń; jeśli "nieautoryzowane" się pojawi, oznacza to, że musisz odblokować swój telefon i zaakceptować połączenie.
To wskazuje urządzeniu, że musi uruchomić serwer adb na porcie 5555:
adb tcpip 5555
Połącz się z tym adresem IP i tym portem:
adb connect <IP>:<PORT>
Jeśli otrzymasz błąd podobny do poniższego w wirtualnym oprogramowaniu Android (takim jak Genymotion):
adb server version (41) doesn't match this client (36); killing...
To dlatego, że próbujesz połączyć się z serwerem ADB o innej wersji. Po prostu spróbuj znaleźć binarkę adb, której używa oprogramowanie (przejdź do C:\Program Files\Genymobile\Genymotion
i wyszukaj adb.exe)
Kilka urządzeń
Kiedy znajdziesz kilka urządzeń podłączonych do twojego komputera, będziesz musiał określić, na którym chcesz uruchomić polecenie adb.
adb devices
List of devices attached
10.10.10.247:42135 offline
127.0.0.1:5555 device
adb -s 127.0.0.1:5555 shell
x86_64:/ # whoami
root
Port Tunneling
W przypadku, gdy port adb jest dostępny tylko z localhost na urządzeniu z androidem, ale masz dostęp przez SSH, możesz przekierować port 5555 i połączyć się przez adb:
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
Menedżer Pakietów
Instalacja/Deinstalacja
adb install [opcja] <ścieżka>
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] <PACKAGE>
adb uninstall com.test.app
adb uninstall -k com.test.app Keep the data and cache directories around after package removal.
Pakiety
Wyświetla wszystkie pakiety, opcjonalnie tylko te, których nazwa pakietu zawiera tekst w <FILTER>.
adb shell pm list packages [options] <FILTER-STR>
adb shell pm list packages <FILTER-STR>
adb shell pm list packages -f <FILTER-STR> #See their associated file.
adb shell pm list packages -d <FILTER-STR> #Filter to only show disabled packages.
adb shell pm list packages -e <FILTER-STR> #Filter to only show enabled packages.
adb shell pm list packages -s <FILTER-STR> #Filter to only show system packages.
adb shell pm list packages -3 <FILTER-STR> #Filter to only show third party packages.
adb shell pm list packages -i <FILTER-STR> #See the installer for the packages.
adb shell pm list packages -u <FILTER-STR> #Also include uninstalled packages.
adb shell pm list packages --user <USER_ID> <FILTER-STR> #The user space to query.
adb shell pm path <PACKAGE>
Wyświetla ścieżkę do APK podanego .
adb shell pm path com.android.phone
adb shell pm clear <PACKAGE>
Usuń wszystkie dane związane z pakietem.
adb shell pm clear com.test.abc
File Manager
adb pull <remote> [local]
Pobierz określony plik z emulatora/urządzenia na swój komputer.
adb pull /sdcard/demo.mp4 ./
adb push <local> <remote>
Prześlij określony plik z komputera do emulatora/urządzenia.
adb push test.apk /sdcard
Screencapture/Screenrecord
adb shell screencap <filename>
Robienie zrzutu ekranu wyświetlacza urządzenia.
adb shell screencap /sdcard/screen.png
adb shell screenrecord [options] <filename>
Nagrywanie wyświetlacza urządzeń działających na Androidzie 4.4 (poziom API 19) i wyższych.
adb shell screenrecord /sdcard/demo.mp4
adb shell screenrecord --size <WIDTHxHEIGHT>
adb shell screenrecord --bit-rate <RATE>
adb shell screenrecord --time-limit <TIME> #Sets the maximum recording time, in seconds. The default and maximum value is 180 (3 minutes).
adb shell screenrecord --rotate # Rotates 90 degrees
adb shell screenrecord --verbose
(press Ctrl-C to stop recording)
**Możesz pobrać pliki (obrazy i filmy) używając **adb pull
Shell
adb shell
Uzyskaj dostęp do powłoki wewnątrz urządzenia
adb shell
adb shell <CMD>
Wykonaj polecenie wewnątrz urządzenia
adb shell ls
pm
Następujące polecenia są wykonywane w obrębie powłoki
pm list packages #List installed packages
pm path <package name> #Get the path to the apk file of tha package
am start [<options>] #Start an activity. Whiout options you can see the help menu
am startservice [<options>] #Start a service. Whiout options you can see the help menu
am broadcast [<options>] #Send a broadcast. Whiout options you can see the help menu
input [text|keyevent] #Send keystrokes to device
Procesy
Jeśli chcesz uzyskać PID procesu swojej aplikacji, możesz wykonać:
adb shell ps
I wyszukaj swoją aplikację
Lub możesz zrobić
adb shell pidof com.your.application
I wydrukuje PID aplikacji
System
adb root
Restartuje demona adbd z uprawnieniami roota. Następnie musisz ponownie połączyć się z serwerem ADB i będziesz rootem (jeśli dostępny).
adb sideload <update.zip>
flashing/restoring Android update.zip packages.
Logs
Logcat
Aby filtrować wiadomości tylko jednej aplikacji, uzyskaj PID aplikacji i użyj grep (linux/macos) lub findstr (windows), aby filtrować wyjście logcat:
adb logcat | grep 4526
adb logcat | findstr 4526
adb logcat [option] [filter-specs]
adb logcat
Notes: naciśnij Ctrl-C, aby zatrzymać monitor
adb logcat *:V # lowest priority, filter to only show Verbose level
adb logcat *:D # filter to only show Debug level
adb logcat *:I # filter to only show Info level
adb logcat *:W # filter to only show Warning level
adb logcat *:E # filter to only show Error level
adb logcat *:F # filter to only show Fatal level
adb logcat *:S # Silent, highest priority, on which nothing is ever printed
adb logcat -b <Buffer>
adb logcat -b # radio View the buffer that contains radio/telephony related messages.
adb logcat -b # event View the buffer containing events-related messages.
adb logcat -b # main default
adb logcat -c # Clears the entire log and exits.
adb logcat -d # Dumps the log to the screen and exits.
adb logcat -f test.logs # Writes log message output to test.logs .
adb logcat -g # Prints the size of the specified log buffer and exits.
adb logcat -n <count> # Sets the maximum number of rotated logs to <count>.
dumpsys
zrzut danych systemowych
adb shell dumpsys [options]
adb shell dumpsys
adb shell dumpsys meminfo
adb shell dumpsys battery
Notes: Urządzenie mobilne z włączonymi Opcjami dewelopera działające na Androidzie 5.0 lub wyższym.
adb shell dumpsys batterystats collects battery data from your device
Notatki: Battery Historian przekształca te dane w wizualizację HTML. KROK 1 adb shell dumpsys batterystats > batterystats.txt KROK 2 python historian.py batterystats.txt > batterystats.html
adb shell dumpsys batterystats --reset erases old collection data
adb shell dumpsys activity
Backup
Zrób kopię zapasową urządzenia z systemem Android za pomocą adb.
adb backup [-apk] [-shared] [-system] [-all] -f file.backup
# -apk -- Include APK from Third partie's applications
# -shared -- Include removable storage
# -system -- Include system Applciations
# -all -- Include all the applications
adb shell pm list packages -f -3 #List packages
adb backup -f myapp_backup.ab -apk com.myapp # backup on one device
adb restore myapp_backup.ab # restore to the same or any other device
Jeśli chcesz sprawdzić zawartość kopii zapasowej:
( printf "\x1f\x8b\x08\x00\x00\x00\x00\x00" ; tail -c +25 myapp_backup.ab ) | tar xfvz -
{% hint style="success" %}
Ucz się i ćwicz Hacking AWS:HackTricks Training AWS Red Team Expert (ARTE)
Ucz się i ćwicz Hacking GCP: HackTricks Training GCP Red Team Expert (GRTE)
Wsparcie dla HackTricks
- Sprawdź plany subskrypcyjne!
- Dołącz do 💬 grupy Discord lub grupy telegramowej lub śledź nas na Twitterze 🐦 @hacktricks_live.
- Dziel się sztuczkami hackingowymi, przesyłając PR-y do HackTricks i HackTricks Cloud repozytoriów github.