Il2CppDumper/README.zh-CN.md
2018-07-11 05:50:19 +08:00

52 lines
3.1 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Il2CppDumper
[![Build status](https://ci.appveyor.com/api/projects/status/anhqw33vcpmp8ofa?svg=true)](https://ci.appveyor.com/project/Perfare/il2cppdumper/branch/master/artifacts)
从il2cpp中获取types, methods, fields等等数据
基础逻辑代码来源于[Il2CppDumper](https://github.com/Jumboperson/Il2CppDumper)
## 功能
* 支持ELF(arm, x86), ELF64(aarch64), Mach-O(32bit, 64bit), PE
* 支持Metadata版本16, 20, 21, 22, 23, 24
* 导出包括types, fields, properties, methods, attributes
* 自动生成IDA脚本(重命名methodName添加stringLiteral注释和MakeFunction)
* 生成DummyDll
## 使用说明
运行Il2CppDumper.exe并依次选择il2cpp的可执行文件ELFMach-O或者PE文件和global-metadata.dat文件然后选择运行的模式将在程序运行目录下生成dump.cs文件和script.py脚本
### 关于模式
#### Manual
你需要手动输入`CodeRegistration``MetadataRegistration`的指针地址,一般需要依靠反汇编工具来获取地址
#### Auto
原理是通过函数的特征字节找到`il2cpp_codegen_register`函数并获取传入`il2cpp::vm::MetadataCache::Register`中的参数1`CodeRegistration`和参数2`MetadataRegistration`)。不过由于不同编译器优化差异,很多情况下无法正常工作。
#### Auto(Advanced)
支持Metadata 20及以后的版本在16版本下只能获取到`CodeRegistration`地址利用指针特征进行搜索通用性比Auto强。
#### Auto(Plus) - **优先使用此模式**
支持Metadata 20及以后的版本在16版本下只能获取到`CodeRegistration`地址以metadata的数据作为依据指针特征作为判读条件进行搜索对于某些文件处理的比Auto(Advanced)好。
#### Auto(Symbol)
目前只支持ELF使用自带的符号进行处理。
### 关于dump.cs
文本文件推荐使用有c#语法高亮的编辑器打开
### 关于script.py
需要安装IDA所需的python。在IDA中File-Script file选择script.py运行即可会重命名methodName添加stringLiteral注释和MakeFunction
### 关于DummyDll
利用Mono.Cecil生成的仿制Dll使用反编译工具进行查看
### 关于config.json
`DumpMethod``DumpField``DumpProperty``DumpAttribute``DumpFieldOffset`
控制程序是否在dump.cs输出相应的内容  
`DummyDll`
控制程序是否生成DummyDll  
`ForceIl2CppVersion``ForceVersion`
当ForceIl2CppVersion为true时程序将根据ForceVersion指定的版本读取il2cpp的可执行文件Metadata仍然使用header里的版本在部分低版本的il2cpp中可能会用到比如安卓20版本下你可能需要设置ForceVersion为16程序才能正常工作
## 常见问题
#### `ERROR: Metadata file supplied is not valid metadata file.`
你所选择的global-metadata.dat不是一个有效的metadata文件通常是因为游戏加密了global-metadata.dat文件。关于解密的问题最好去相关破解论坛寻求帮助请不要在issues提问
#### `ERROR: Can't use this mode to process file, try another mode.`  
当所有自动模式都无法工作时你可以打开一个新的issue并上传文件我会尝试解决