Misc: Update README.md

This commit is contained in:
Katy Coe
2019-10-29 20:20:57 +01:00
parent 6b96007bfe
commit 47c81625ca

View File

@@ -3,10 +3,10 @@ Extract types, methods, properties and fields from Unity IL2CPP binaries.
* **No manual reverse-engineering required; all data is calculated automatically!**
* Supports ELF (Android .so), PE (Windows .exe), Mach-O (Apple iOS/Mac) and Universal Binary (Fat Mach-O) file formats
* 32-bit support for all file formats; 64-bit support for ELF and Mach-O file formats
* Supports ARMv7, Thumb-2, ARMv8 (A64) and x86 architectures regardless of file format
* 32-bit and 64-bit support for all file formats
* Supports ARMv7, Thumb-2, ARMv8 (A64), x86 and x64 architectures regardless of file format
* Supports metadata versions 16, 21, 22, 23, 24, 24.1 (Unity 2018.3+) and 24.2 (Unity 2019+) (other versions may or may not work)
* Support for classes, methods, fields, properties, enumerations, events, delegates, interfaces, structs and default field values
* Support for classes, methods, constructors, fields, properties, enumerations, events, delegates, interfaces, structs and default field values
* Static symbol table scanning for ELF and Mach-O binaries if present
* Dynamic symbol table scanning for ELF binaries if present
* Symbol relocation handling for ELF binaries
@@ -67,6 +67,7 @@ Thanks to the following individuals whose code and research helped me develop th
- branw - https://github.com/branw/pogo-proto-dumper
- fry - https://github.com/fry/d3
- ARMConverter - http://armconverter.com
- Defuse - https://defuse.ca/online-x86-assembler.htm
This tool uses Perfare's Il2CppDumper code as a base.