Posts

Showing posts from October, 2025

How to use il2cpp.h, script.json & stringliteral.json files from Il2CppDumper

Image
When you dump il2cpp games using Il2CppDumper, you will get the following files: - il2cpp.h: Structure information header file - script.json: For ida.py/ida_py3.py and ghidra.py - stringliteral.json: Contains all stringLiteral information The scripts are in the same folder of the Il2CppDumper executeable, if you extracted all. Otherwise, you can get them from Il2CppDumper releases. We only need following scripts for Android games ida.py and ida_py3.py: Script for IDA to read script.json file ida_with_struct.py and ida_with_struct_py3.py: Script for IDA to read script.json file and il2cpp.h file to apply structure information. It helps IDA load faster ghidra.py : Script for Ghidra to read script.json file ghidra_with_struct.py: Script for Ghidra to read script.json file and il2cpp.h file to apply structure information. It helps Gridra load faster IDA Pro The first thing to do is to make sure you have Python installed. You need Python 2 if using IDA 7.3 or below, a...