Shikata Ga Nai

Private? There is no such things.

Fridaを使うための前準備をやってみた

Hello there, ('ω')ノ

 

MOBEXLERは、モバイルアプリケーション侵入テストプラットフォームで。

モバイルアプリの侵入テストに必要なすべてのツールが含まれているようで。

 https://mobexler.com/

 

f:id:ThisIsOne:20201210124414p:plain

 

メニューを見るとfridaも含まれていて、かなり揃っているようで。

Fridaは、モバイルアプリケーションの動的解析ツールで。

ソースコードを書き換えてリビルドしてアプリを起動する必要もなくて。

 

f:id:ThisIsOne:20201210124648p:plain

 

まずは、Fridaを使う前にサーバのダウンロードを。

 https://github.com/frida/frida/releases

 

f:id:ThisIsOne:20201210151600p:plain

 

解凍後、adbでデバイスに接続してfrida-serverを組み込んで。

 adb devices

 adb connect 192.168.56.103

 adb push frida-server /data/local/tmp

 

f:id:ThisIsOne:20201210151514p:plain

 

frida-serverの権限を変更して、バックグランドで起動して。

 adb shell

 chmod 755 frida-server

 ./frida-server &

 

f:id:ThisIsOne:20201210161449p:plain

 

簡単なコマンドで動作確認を。

 frida-ls-devices

 frida-ps

 

f:id:ThisIsOne:20201210162603p:plain

 

Best regards, (^^ゞ