Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
apkSneeze — Androidアプリのペネトレーションテストにおける退屈な作業を自動化するツール。APKToolとDex2Jarを使用します。 | Kitploit
ツール/GitHubGitHub/humoud/apksneeze
Androidセキュリティモバイルアプリペンテストリバースエンジニアリング情報収集ペネトレーションテスト
GitHubhumoud/apksneeze

apkSneeze

Androidアプリのペネトレーションテストにおける退屈な作業を自動化するツール。APKToolとDex2Jarを使用します。

リポジトリを見る
11146年前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

apkSneeze

v2.0.0

Androidアプリのペネトレーションテストにおける退屈な作業を自動化するツールです。

現在、このツールは以下の機能を提供します:

  1. 提供されたAPKファイルを逆コンパイルします。
  2. 提供されたAPKファイルをJarファイルに変換します。
  3. 逆コンパイルされたファイルから興味深い文字列を検索します。
  4. ADB over WiFiをセットアップします。
  5. テストデバイスからAPKファイルをダウンロードします(root化されたデバイスが必要)。
    • Androidデバイス上の場所: /data/app/
  6. テストデバイスからアプリのデータディレクトリをダウンロードします(root化されたデバイスが必要)。
    • Androidデバイス上の場所: /data/data

動作モードをチェーンして、独自のカスタムワークフローを自動化できます。

例:

  • ADB over WiFiをセットアップ > APKファイルをダウンロード > 逆コンパイル
  • APKファイルをダウンロード > アプリのデータディレクトリをダウンロード > 無関係なAPKファイルを逆コンパイル
  • ADB over WiFiをセットアップ > APKファイルを逆コンパイル
  • APKファイルを逆コンパイルするだけ
root@kitploit:~
humoud@komputer:~/Documents/dev/apkSneeze# python3 apkSneeze.py -adb_over_wifi -device_ip 192.168.1.114 -apk_dl -pkg_name com.dev.test.example -apk

===========================================================
  ___  ______ _   __  _____ _   _  _____ _____ ______ _____ 
 / _ \ | ___ \ | / / /  ___| \ | ||  ___|  ___|___  /|  ___|
/ /_\ \| |_/ / |/ /  \ `--.|  \| || |__ | |__    / / | |__  
|  _  ||  __/|    \   `--. \ . ` ||  __||  __|  / /  |  __| 
| | | || |   | |\  \ /\__/ / |\  || |___| |___./ /___| |___ 
\_| |_/\_|   \_| \_/ \____/\_| \_/\____/\____/\_____/\____/

v2.0.0
============================================================
    
Using Settings:
        +> Process apk file: True
            > Target apk file name: sneezed.apk

        +> Setup ADB over WiFi: True
        +> Download apk file: True
        +> Download app data directory: False
        >> Settings shared for adb setup and apk\data download:
            >> ADBKey file location: /home/humoud/.android/adbkey
            >> Test device IP address: 192.168.1.114
            >> Test device port: 5555
            >> Target package name: com.dev.test.example
Confirm? [y/n] y
Killing adb server

Listing attached devices
* daemon not running; starting now at tcp:5037
* daemon started successfully
  > List of devices attached
  > xxxxx	device

Setting the device to listen on port 5555
  > restarting in TCP mode port: 5555

Connecting to the device...
  > connected to 192.168.1.114:5555

You can test if everything is working by seeing if you can get a shell: adb -s 192.168.1.114:5555 shell
<*> Copying APK file to /data/local/tmp/apkSneeze/base.apk (mobile device)...
<*> Downloading APK file to sneezed.apk...
<*> Download done, check sneezed.apk
<*> Deleting APK file from /data/local/tmp/apkSneeze/base.apk (mobile device)...
[0] Processing apk file...
[1] Decompiling the APK file using APKTOOL...
  > I: Using Apktool 2.4.0-dirty on sneezed.apk
  > I: Loading resource table...
  > I: Decoding AndroidManifest.xml with resources...
  > I: Loading resource table from file: /home/humoud/.local/share/apktool/framework/1.apk
  > I: Regular manifest package...
  > I: Decoding file-resources...
  > I: Decoding values */* XMLs...
  > I: Baksmaling classes.dex...
  > I: Baksmaling classes2.dex...
  > I: Baksmaling classes3.dex...
  > I: Copying assets and libs...
  > I: Copying unknown files...
  > I: Copying original files...
[2] Converting APK file to JAR file using dex2jar...
dex2jar sneezed.apk -> ./sneezed-dex2jar.jar
[3] Searching for interesting strings(outputing to file interesting_strings_sneezed.txt)...
[3] >> Going through RegEx list...
[3] >> Going through strings list...
Hits: 20853
Done!

要件:

  1. Linux(ツールはgrepを使用)
  2. apktool
  3. dex2jar
  4. adb_shell(requirements.txtを使用してダウンロード)

Requirements.txtのインストール

python3 -m pip install -r requirements.txt

注: このツールはKali Linux上でテスト・開発されており、apktoolとdex2jarがインストールされています。

使い方:

APKファイルの処理

APKファイルを処理(逆コンパイル、Jarへの変換、興味深い文字列のスキャン)するには:

python3 apkSneeze.py -apk -apk_name test.apk

ADB over WiFiのセットアップ

ADB over WiFiをセットアップするには、デバイスがUSBで接続されている必要があります:

python3 apkSneeze.py -adb_over_wifi -device_ip 192.168.1.114

カスタムポートを設定:

python3 apkSneeze.py -adb_over_wifi -device_ip 192.168.1.114 -device_port 10111

APKファイルのダウンロード

テストデバイスからAPKファイルをダウンロードするには(root権限が必要):

python3 apkSneeze.py -apk_dl -pkg_name com.dev.test -device_ip 192.168.1.114

5555以外のポート(カスタムポート)を使用する場合:

python3 apkSneeze.py -apk_dl -pkg_name com.dev.test -device_ip 192.168.1.114 -device_port 10111

アプリのデータディレクトリのダウンロード

テストデバイスからアプリのデータディレクトリ(/data/data)をダウンロードするには(root権限が必要):

python3 apkSneeze.py -data_dir_dl -device_ip 192.168.1.114 -pkg_name com.test.target.app

チェーン

動作モードをチェーンできます。例: ADB over WiFiをセットアップし、APKファイルをダウンロードし、最後にダウンロードしたAPKファイルを処理する。 python3 apkSneeze.py -adb_over_wifi -device_ip 192.168.1.114 -apk_dl -pkg_name com.dev.test.example -apk

デフォルト値

ツールのデフォルトは次のとおりです:

  • ADBKeyの場所: ~/.android/adbkey
  • アプリ名: sneezed.apk
  • adbポート: 5555

これらはすべて、適切なパラメーターを指定することで変更できます。

root@kitploit:~
usage: apkSneeze.py [-h] [-apk] [-apk_name APK_NAME] [-apk_dl] [-data_dir_dl]
                    [-pkg_name PKG_NAME] [-device_ip DEVICE_IP]
                    [-device_port DEVICE_PORT] [-adbkey_file ADBKEY_FILE]
                    [-adb_over_wifi]

optional arguments:
  -h, --help            show this help message and exit
  -apk                  Process an apk file.
  -apk_name APK_NAME    Name of the apk file to process.
  -apk_dl               Download apk file from device. Requires params:
                        pkg_name, device_ip, device_port, adbkey_file.
  -data_dir_dl          Download app data directory from device. Requires
                        params: pkg_name, device_ip, device_port, adbkey_file.
  -pkg_name PKG_NAME    Application Package Name (ex: com.dev.app). This is
                        required if you wish to download the apk file.
  -device_ip DEVICE_IP  IP Address of the testing device.
  -device_port DEVICE_PORT
                        Port number the testing device is listening on.
  -adbkey_file ADBKEY_FILE
                        Location of the adbkey file (ex:
                        /home/user/.android/adbkey).
  -adb_over_wifi        Setup adb over wifi automatically. You must provide
                        the IP address of the device and have it connected via
                        USB. You can set a custom port using param
                        device_port.

法的免責事項

事前の相互同意なしに標的に攻撃するためにAPKSneezeを使用することは違法です。エンドユーザーは、該当するすべての地方、州、連邦法を遵守する責任を負います。開発者は一切の責任を負わず、本プログラムの誤用や損害についても責任を負いません。

ツールをダウンロード