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]]
  1. 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 并启动应用程序。

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"

下载工具