19 KiB
☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥
-
サイバーセキュリティ会社で働いていますか? HackTricksで会社を宣伝したいですか?または、最新バージョンのPEASSにアクセスしたり、HackTricksをPDFでダウンロードしたいですか?SUBSCRIPTION PLANSをチェックしてください!
-
The PEASS Familyを見つけてください。独占的なNFTのコレクションです。
-
公式のPEASS&HackTricksのグッズを手に入れましょう。
-
💬 Discordグループまたはtelegramグループに参加するか、Twitterでフォローしてください🐦@carlospolopm.
-
**ハッキングのトリックを共有するには、hacktricksリポジトリとhacktricks-cloudリポジトリ**にPRを提出してください。
Adbは通常、次の場所にあります:
#Windows
C:\Users\<username>\AppData\Local\Android\sdk\platform-tools\adb.exe
#MacOS
/Users/<username>/Library/Android/sdk/platform-tools/adb
情報の取得元: http://adbshell.com/
接続
ADB(Android Debug Bridge)は、Androidデバイスとコンピューターを接続するためのツールです。以下のコマンドを使用して、ADBを使用してデバイスとの接続を確立できます。
デバイスの接続を確認する
adb devices
このコマンドを使用すると、接続されているデバイスのリストが表示されます。
デバイスに接続する
adb connect <device_ip_address>
このコマンドを使用して、指定したIPアドレスのデバイスに接続できます。
デバイスから切断する
adb disconnect <device_ip_address>
このコマンドを使用して、指定したIPアドレスのデバイスとの接続を切断できます。
接続されているデバイスのステータスを確認する
adb get-state
このコマンドを使用すると、接続されているデバイスのステータスが表示されます。
接続されているデバイスのプロパティを確認する
adb shell getprop
このコマンドを使用すると、接続されているデバイスのプロパティが表示されます。
接続されているデバイスのログを表示する
adb logcat
このコマンドを使用すると、接続されているデバイスのログが表示されます。
接続されているデバイスのスクリーンショットを取得する
adb shell screencap <file_path>
このコマンドを使用して、接続されているデバイスのスクリーンショットを指定したファイルパスに保存できます。
接続されているデバイスの画面を録画する
adb shell screenrecord <file_path>
このコマンドを使用して、接続されているデバイスの画面を指定したファイルパスに録画できます。
接続されているデバイスのファイルをコピーする
adb pull <device_file_path> <local_file_path>
このコマンドを使用して、接続されているデバイスのファイルをローカルのファイルパスにコピーできます。
ローカルのファイルをデバイスにコピーする
adb push <local_file_path> <device_file_path>
このコマンドを使用して、ローカルのファイルを接続されているデバイスのファイルパスにコピーできます。
接続されているデバイスのシェルにアクセスする
adb shell
このコマンドを使用すると、接続されているデバイスのシェルにアクセスできます。
接続されているデバイスを再起動する
adb reboot
このコマンドを使用すると、接続されているデバイスが再起動されます。
接続されているデバイスをシャットダウンする
adb shell reboot -p
このコマンドを使用すると、接続されているデバイスがシャットダウンされます。
adb devices
これにより、接続されたデバイスの一覧が表示されます。"unathorised"と表示された場合、モバイルをアンブロックして接続を許可する必要があります。
これはデバイスに、ポート5555でadbサーバーを起動するよう指示します:
adb tcpip 5555
そのIPとポートに接続します:
adb connect <IP>:<PORT>
もし、仮想Androidソフトウェア(例:Genymotion)で以下のようなエラーが発生した場合:
adb server version (41) doesn't match this client (36); killing...
それは、異なるバージョンのADBサーバーに接続しようとしているためです。ソフトウェアが使用しているadbバイナリを見つけてみてください(C:\ Program Files \ Genymobile \ Genymotion
に移動し、adb.exeを検索します)
複数のデバイス
マシンに接続されている複数のデバイスが見つかった場合は、実行する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
ポートトンネリング
Androidデバイスでadbポートがlocalhostからのみアクセス可能な場合、SSH経由でアクセスできる場合は、ポート5555を転送して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
パケットマネージャー
インストール/アンインストール
adb install [オプション] <パス>
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 [オプション] <パッケージ>
このコマンドは、指定したAndroidアプリのアンインストールを行います。
オプション:
- -k: アプリのデータとキャッシュを保持したままアンインストールします。
使用例:
adb uninstall com.example.app
この例では、パッケージ名が「com.example.app」のアプリがアンインストールされます。
adb uninstall com.test.app
adb uninstall -k com.test.app Keep the data and cache directories around after package removal.
パッケージ
すべてのパッケージを表示します。オプションで、パッケージ名に<FILTER>のテキストが含まれるもののみ表示することもできます。
adb shell pm list packages [オプション] <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>
指定された<PACKAGE>のAPKのパスを表示します。
adb shell pm path com.android.phone
adb shell pm clear <PACKAGE>
パッケージに関連するすべてのデータを削除します。
adb shell pm clear com.test.abc
ファイルマネージャー
adb pull <remote> [local]
エミュレータ/デバイスから指定したファイルをコンピュータにダウンロードします。
adb pull /sdcard/demo.mp4 ./
adb push <local> <remote>
コンピュータからエミュレータ/デバイスに指定したファイルをアップロードします。
adb push test.apk /sdcard
スクリーンキャプチャ/スクリーンレコード
adb shell screencap <ファイル名>
デバイスのディスプレイのスクリーンショットを撮影します。
adb shell screencap /sdcard/screen.png
adb shell screenrecord [オプション] <ファイル名>
Android 4.4(APIレベル19)以上を実行しているデバイスのディスプレイを録画します。
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)
ファイル(画像や動画)をダウンロードするには、adb pullを使用します
シェル
adb shell
デバイス内でシェルを取得します
adb shell
adb shell <CMD>
デバイス内でコマンドを実行します。
adb shell ls
pm
以下のコマンドはシェル内で実行されます。
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
プロセス
アプリケーションのプロセスのPIDを取得したい場合は、次のコマンドを実行します:
adb shell ps
アプリケーションを検索する
または、以下のコマンドを実行することもできます。
adb shell pidof com.your.application
そして、アプリケーションのPIDが表示されます。
システム
adb root
adbdデーモンをルート権限で再起動します。その後、ADBサーバーに再接続する必要があります。そうすれば、ルート権限で操作できるようになります(利用可能な場合)。
adb sideload <update.zip>
ログ
Logcat
1つのアプリケーションのメッセージのみをフィルタリングするには、アプリケーションのPIDを取得し、logcatの出力をgrep(linux/macos)またはfindstr(windows)でフィルタリングします。
adb logcat | grep 4526
adb logcat | findstr 4526
adb logcat [オプション] [フィルタ仕様]
adb logcatコマンドは、Androidデバイスのログキャットを表示するために使用されます。ログキャットは、デバイス上で実行されているアプリケーションやシステムのログメッセージを表示するためのツールです。
オプション:
-s <TAG>
: 指定したタグのログメッセージのみ表示します。-f <FILE>
: ログメッセージを指定したファイルに保存します。-r <KBYTES>
: ログバッファのサイズを指定します。-n <COUNT>
: ログバッファのエントリ数を指定します。-v <FORMAT>
: ログメッセージの表示形式を指定します。
フィルタ仕様:
*:V
: すべてのログメッセージを表示します。<TAG>:<LEVEL>
: 指定したタグとレベルのログメッセージのみ表示します。
詳細なオプションとフィルタ仕様については、公式ドキュメントを参照してください。
adb logcat
ノート:モニターを停止するにはCtrl-Cを押します。
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 <バッファ>
このコマンドは、Androidデバイスのログキャットバッファを表示するために使用されます。バッファは、ログメッセージの種類に基づいて分類されます。以下は一般的なバッファのいくつかです。
main
: メインバッファは、システムの主要なログメッセージを含みます。radio
: ラジオバッファには、モバイルネットワークに関連するログメッセージが含まれます。events
: イベントバッファには、システムイベントに関連するログメッセージが含まれます。system
: システムバッファには、システムコンポーネントに関連するログメッセージが含まれます。
バッファ名を指定して、特定のバッファのログメッセージを表示することができます。例えば、adb logcat -b main
は、メインバッファのログメッセージを表示します。
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
システムデータをダンプします
adb shell dumpsys [オプション]
adb shell dumpsys
adb shell dumpsys meminfo
このコマンドは、Androidデバイス上のアプリケーションのメモリ情報を表示します。メモリ情報には、アプリケーションの使用中のメモリ量、キャッシュされたメモリ、およびその他の関連情報が含まれます。このコマンドは、アプリケーションのパフォーマンスのトラブルシューティングやメモリリークの検出に役立ちます。
adb shell dumpsys battery
ノート: Android 5.0以上を実行している、デベロッパーオプションが有効になっているモバイルデバイス。
adb shell dumpsys batterystats collects battery data from your device
ノート: Battery Historianは、そのデータをHTMLの可視化に変換します。 ステップ1 adb shell dumpsys batterystats > batterystats.txt ステップ2 python historian.py batterystats.txt > batterystats.html
adb shell dumpsys batterystats --reset erases old collection data
adb shell dumpsys activity
バックアップ
adbを使用してAndroidデバイスをバックアップします。
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
もしバックアップの内容を調査したい場合は、以下のコマンドを使用します:
( printf "\x1f\x8b\x08\x00\x00\x00\x00\x00" ; tail -c +25 myapp_backup.ab ) | tar xfvz -
☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥
-
サイバーセキュリティ会社で働いていますか? HackTricksで会社を宣伝したいですか?または、PEASSの最新バージョンにアクセスしたり、HackTricksをPDFでダウンロードしたいですか?SUBSCRIPTION PLANSをチェックしてください!
-
The PEASS Familyを見つけてください。独占的なNFTのコレクションです。
-
公式のPEASS&HackTricksのグッズを手に入れましょう。
-
💬 Discordグループまたはtelegramグループに参加するか、Twitterでフォローしてください🐦@carlospolopm.
-
**ハッキングのトリックを共有するには、hacktricksリポジトリとhacktricks-cloudリポジトリ**にPRを提出してください。