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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
frida-il2cpp-datacollector — Fridaベースのツールで、Cheat EngineのMonoDataCollectorをAndroidとiOSに移植し、モバイルアプリの実行時におけるMono/IL2CPPデータ収集とメモリ検査を可能にします。 | Kitploit
ツール/GitHubGitHub/gmh5225/frida-il2cpp-datacollector
Androidセキュリティ動的分析 (サンドボックス)iOSセキュリティメモリフォレンジックリバースエンジニアリングデバッガモバイルセキュリティバイナリ解析

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有
GitHub
gmh5225/frida-il2cpp-datacollector

frida-il2cpp-datacollector

Fridaベースのツールで、Cheat EngineのMonoDataCollectorをAndroidとiOSに移植し、モバイルアプリの実行時におけるMono/IL2CPPデータ収集とメモリ検査を可能にします。

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

frida-il2cpp-datacollector

ceのmonodatacollectorをandroid/iosに移植したものです。

CEVersion 7.4.2以降で動作を確認しています。

使用方法

初期設定

pythonライブラリをインストールします。

root@kitploit:~
pip install pywin32

autorun/monoscript.luaの修正(CEがMonoを有効なものとして認識するための設定)

1)コメントアウト

root@kitploit:~
  --[[local injectResult, injectError=injectLibrary(getAutorunPath()..libfolder..pathsep..dllname, skipsymbols)
  if not injectResult then
    if injectError then
      print(translate("Failure injecting the MonoDatacollector library"..":"..injectError))
    else
      print(translate("Failure injecting the MonoDatacollector library. No error given"))
    end
    return 0
  end

  if (getOperatingSystem()==0) and (getAddressSafe("MDC_ServerPipe")==nil) then
    waitForExports()
    if getAddressSafe("MDC_ServerPipe")==nil then
      print("DLL Injection failed or invalid DLL version")
      return 0
    end
  end]]

2)usermono=true

root@kitploit:~
function mono_OpenProcessMT()
 -- print("mono_OpenProcessMT")
  --enumModules is faster than getAddress at OpenProcess time (No waiting for all symbols to be loaded first)
  local usesmono=true--false

基本設定

デバイス上でfrida-serverを起動し、アプリケーションをspawnします。

root@kitploit:~
python main.py com.DefaultCompany.Sample

ceserverを起動し、起動したアプリケーションを選択します。

root@kitploit:~
adb forward tcp:52736 tcp:52736
su -c ./ceserver

CEでMonoを設定する

root@kitploit:~
Mono => Activate mono features
mono

設定

target

これを指定した場合、引数でターゲットアプリの名前を指定する必要はありません。

targetOS

android:Android
ios:iOS

mode

spawn:spawnモード
attach:attachモード

frida_server_ip

ネットワーク経由でfrida-serverに接続する場合。
例:
./frida-server -l 0.0.0.0:12345
frida_server_ip:"192.168.11.3:12345"

ツールをダウンロード