Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
도구/GitHubGitHub/gmh5225/frida-il2cpp-datacollector
Android SecurityDynamic Analysis (Sandboxing)iOS SecurityMemory ForensicsReverse EngineeringDebuggersMobile SecurityBinary Analysis

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
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:스폰 모드
attach:어태치 모드

frida_server_ip

네트워크를 통해 frida-server에 연결합니다.
예:
./frida-server -l 0.0.0.0:12345
frida_server_ip:"192.168.11.3:12345"

도구 다운로드