All Projects → SamboyCoding → Cpp2IL

SamboyCoding / Cpp2IL

Licence: MIT license
Work-in-progress tool to reverse unity's IL2CPP toolchain.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Cpp2IL

SDA
SDA is a rich cross-platform tool for reverse engineering that focused firstly on analysis of computer games. I'm trying to create a mix of the Ghidra, Cheat Engine and x64dbg. My tool will combine static and dynamic analysis of programs. Now SDA is being developed.
Stars: ✭ 98 (-85.78%)
Mutual labels:  analysis, static-analysis, decompiler
Analyzer
🔍 Offline Analyzer for extracting features, artifacts and IoCs from Windows, Linux, Android, iPhone, Blackberry, macOS binaries, emails and more
Stars: ✭ 108 (-84.33%)
Mutual labels:  analysis, static-analysis
Codechecker
CodeChecker is an analyzer tooling, defect database and viewer extension for the Clang Static Analyzer and Clang Tidy
Stars: ✭ 1,209 (+75.47%)
Mutual labels:  analysis, static-analysis
Dg
[LLVM Static Slicer] Various program analyses, construction of dependence graphs and program slicing of LLVM bitcode.
Stars: ✭ 242 (-64.88%)
Mutual labels:  analysis, static-analysis
Phan
Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness.
Stars: ✭ 5,194 (+653.85%)
Mutual labels:  analysis, static-analysis
Sonar Java
☕️ SonarSource Static Analyzer for Java Code Quality and Security
Stars: ✭ 745 (+8.13%)
Mutual labels:  analysis, static-analysis
Replica
Ghidra Analysis Enhancer 🐉
Stars: ✭ 194 (-71.84%)
Mutual labels:  analysis, decompiler
Go Ruleguard
Define and run pattern-based custom linting rules.
Stars: ✭ 402 (-41.65%)
Mutual labels:  analysis, static-analysis
sbt-findbugs
FindBugs static analysis plugin for sbt.
Stars: ✭ 47 (-93.18%)
Mutual labels:  analysis, static-analysis
swap-detector
A library for detecting swapped arguments in function calls, and a Clang Static Analyzer plugin used to demonstrate the library.
Stars: ✭ 19 (-97.24%)
Mutual labels:  analysis, static-analysis
lints
Lint all your JavaScript, CSS, HTML, Markdown and Dockerfiles with a single command
Stars: ✭ 14 (-97.97%)
Mutual labels:  analysis, static-analysis
Security Code Scan
Vulnerability Patterns Detector for C# and VB.NET
Stars: ✭ 550 (-20.17%)
Mutual labels:  analysis, static-analysis
Phpmnd
PHP Magic Number Detector
Stars: ✭ 431 (-37.45%)
Mutual labels:  analysis, static-analysis
Structured Acceptance Test
An open format definition for static analysis tools
Stars: ✭ 10 (-98.55%)
Mutual labels:  analysis, static-analysis
Binee
Binee: binary emulation environment
Stars: ✭ 408 (-40.78%)
Mutual labels:  analysis, static-analysis
Zpa
A parser and source code analyzer for PL/SQL and Oracle SQL.
Stars: ✭ 124 (-82%)
Mutual labels:  analysis, static-analysis
Exakat
The Exakat Engine : smart static analysis for PHP
Stars: ✭ 346 (-49.78%)
Mutual labels:  analysis, static-analysis
Detekt
Static code analysis for Kotlin
Stars: ✭ 4,169 (+505.08%)
Mutual labels:  analysis, static-analysis
go-mnd
Magic number detector for Go.
Stars: ✭ 153 (-77.79%)
Mutual labels:  analysis, static-analysis
Scalpel
Scalpel: The Python Static Analysis Framework
Stars: ✭ 176 (-74.46%)
Mutual labels:  analysis, static-analysis

Cpp2IL

NuGet

Important: Project is being rewritten

Due to, well, very much forseen circumstances, we are in the process of rewriting most of cpp2il from the ground up over in the development branch.

As such, bug fixes, and new updates, are likely to be sparse until the work is done, which I expect to be sometime in January 2022 will be when it will be, basically.

Need Help? Join the discord!

WIP Tool to reverse Unity's IL2CPP build process back to the original managed DLLs.

The information below almost entirely applies to the CLI application available on github releases. For documentation on using the "core" module - which the CLI is just a wrapper around - in your own projects, see README_CORE.md

Uses LibCpp2IL for the initial parsing and loading of metadata structures. LibCpp2IL is obtainable from the build artifacts if you want to do something yourself with IL2CPP metadata, and is released under the MIT license. The link above will take you to the documentation for LibCpp2IL.

Command Line Options

Basic Usage

The simplest usage of this application is for a windows x86 or x64 unity game. In that case you can just run Cpp2IL-Win.exe --game-path=C:\Path\To\Your\Game and Cpp2IL will detect your unity version, locate the files it needs, and dump the output into a cpp2il_out folder wherever you ran the command from.

Assuming you have a single APK file (not an APKM or XAPK), and are running at least cpp2il 2021.4.0, you can use the same argument as above but pass in the path to the APK, and cpp2il will extract the files it needs from the APK.

Supported Command Line Option Listing

Option Argument Example Description
--game-path C:\Path\To\Game Specify the path to the game folder. Required.
--exe-name TestGame Specify the name of the game's exe file in case auto detection fails (because there are other exe files in the game directory)
--analysis-level 0 = Everything
1 = Skip Instruction Dump
2 = Skip Instruction Dump and Synopsis
3 = Print Only Generated IL
4 = Print Only Pseudocode
Specify what is saved to the cpp2il_out/types/[Assembly]/typename_methods.txt file.
--skip-analysis <None> Flag to skip analysis entirely, only generating Dummy DLLs and optionally metadata dumps
--skip-metadata-txts <None> Flag to skip metadata dumps (cpp2il_out/types/[Assembly]/typename_metadata.txt)
--disable-registration-prompts <None> Flag to prevent asking for the user to input addresses in STDIN if they can't be detected
--verbose <None> Log more information about what we are doing
--experimental-enable-il-to-assembly-please <None> Attempt to save generated IL to the DLL file where possible. MAY BREAK THINGS.
--suppress-attributes <None> Prevents generated DLLs from containing attributes providing il2cpp-specific metadata, such as function pointers, etc.
--parallel <None> Run analysis in parallel. Usually much faster, but may be unstable. Also puts your CPU under a lot of strain (100% usage is targeted).
--run-analysis-for-assembly mscorlib Run analysis for the specified assembly. Do not specify the .dll extension.
--output-root cpp2il_out Root directory to output to. Dummy DLLs will be put directly in here, and analysis results will be put in a types folder inside.
--throw-safety-out-the-window <None> When paired with --experimental-enable-il-to-assembly-please, do not abort attempting to generate IL for a method if an error occurs. Instead, continue on with the next action, skipping only the one which errored. WILL PROBABLY BREAK THINGS.
--analyze-all <None> Analyze all assemblies in the application
--skip-method-dumps <None> Suppress creation of method_dumps folder and files, if you don't intend to use them.
--just-give-me-dlls-asap-dammit <None> Shorthand for --parallel --skip-method-dumps --experimental-enable-il-to-assembly-please --throw-safety-out-the-window --skip-metadata-txts, if you don't want to type that much, but still want fast, complete, IL generation
--simple-attribute-restoration <None> Don't use analysis to restore attributes, meaning any attributes with constructor parameters won't be recovered. Has no effect on metadata v29+
--wasm-framework-file C:\Path\To\webgl.framework.js Only used in conjunction with WASM binaries. Some of these have obfuscated exports but they can be recovered via a framework.js file, which you can provide the path to using this argument.

Release Structure

Every single commit is built to a CI build using Github Actions - the action file can be found in the .github folder, if you want to reproduce the builds yourself. Be aware these may not be the most stable - while there are tests to ensure compatibility with a range of games, sometimes things do break! These are versioned by the commit they were built from.

The release files can be downloaded from the Actions tab if you are signed into GitHub, or you can use the following links, which always point to the latest successful CI build. Note that the .NET Framework build is provided for compatibility with wine/proton.

On top of this, I manually release "milestone" release builds whenever I think a major set of improvements have been made. These are NOT marked as pre-releases on github, and should (at least in theory) be stable and suitable for use on a range of games.

Terminal Colors and Debug Logging

From the first milestone build 2021.0, and onwards, Cpp2IL now outputs more rigidly-structured data to the console. This includes log levels (VERB, INFO, WARN, FAIL) and associated colours (Grey for VERB, Blue for INFO, Yellow for WARN, Red for FAIL).

As of milestone 2021.1, if Cpp2IL is able to detect that you're running in Wine/Proton, these ANSI colour codes are disabled, as they are not supported by wine and look awful.

VERB messages will only be logged if Cpp2IL is launched with the --verbose option, and it would be helpful if you could report issues with this flag enabled. For normal operation, they shouldn't be needed, unless you're curious.

If you do not wish for the output to be coloured, set the Environment Variable NO_COLOR=true.

What Works (Features)

  • Loading of Metadata and Binaries using LibCpp2IL for IL2CPP versions 24 through 29 (unity 2018 to present-day)
  • "Dummy DLL" (Stub Assembly) generation, suitable for use with Il2CppAssemblyUnhollower, for PE, ELF, and NSO binaries, x86 and ARM instruction sets
  • Restoration of explicit override methods in managed types. This data is not explicitly saved to the Il2Cpp metadata, but is useful for Unhollower.
  • Il2CPP Api Function Detection
  • Flagship analysis of both x86_32 and x86_64 instruction sets.
  • Analysis for ARMv8/ARM64 machine code for a more limited set of operations than x86 (see the table below)
  • A framework for ARMv7 support, albeit with no operations supported yet.
  • Able to save generated IL to the actual function body in the Assembly, allowing decompilation using dnSpy/ILSpy.
  • Significantly faster than both Il2CppDumper and Il2CppInspector (for DummyDLL Generation)

Supported File Extensions / Instruction sets

File Extension x86 x86_64 ArmV7 ArmV8 Other/Comments
PE (DLL files, Windows) ✔️ ✔️ N/A
ELF (SO files, Linux) ✔️ ✔️ ✔️ ✔️ N/A
NSO (Switch) N/A N/A N/A ✔️ Switch is ArmV8, that is the only supported instruction set. Compression supported.
APK (Android) ✔️ ✔️ Unpacks the APK, then delegates to ELF loader.
WASM (WebAssembly) N/A N/A N/A N/A WASM is its own instruction set, which is supported for dumps but not analyzed yet
Mach-O (Mac OS) N/A? Not supported yet, but planned

Supported Analysis Features Table

Feature Supported in x86 Supported in ARMv8 Supported in ARMv7 Supported in WASM
Simple Method Calls1 ✔️ ✔️
Virtual function calls (via vftable) ✔️
Interface function calls (via interfaceOffsets) ✔️
Argument resolution for function calls ✔️ ✔️
Object Instantiation ✔️ ✔️
Unmanaged String Literal Detection ✔️ ✔️
Instance field reads ✔️ ✔️
Instance field writes ✔️ ✔️
Static field reads ✔️ ✔️
Static field writes ✔️ ✔️
IL2CPP "Exception Helper" functions2 ✔️ ✔️
IL2CPP MetadataUsage parsing3 ✔️ ✔️
Array instantiation ✔️
Array offset reads ✔️
Array offset writes ✔️
Array length read ✔️
If/While/for/else if detection ✔️ Partial4
Mathematical operations Partial5
Floating point coprocessor support ✔️ N/A N/A N/A
RGCTX6 Support ✔️
Return statements, including return value detection ✔️ ✔️

What's work in progress (Roadmap)

(Subject to change)

  • Ongoing: Wider support for actions to improve analysis accuracy. Some key points:
    • Wider support for x86 multiplication (IMUL instructions) as well as mathematical operations in general.
    • Possibly more x86 floating-point-related instructions.
    • Feature parity for Arm64 with X86. Most importantly: static fields, full range of conditions, managed array support, virtual functions, mathematical operations
  • ARMv7 analysis. A template is present, but nothing specific runs.

Credits

This application is built primarily using .NET 6.0, but a .NET Framework 4.7.2 build is also published for legacy purposes.

It uses the following libraries, for which I am very thankful:

(All are MIT licensed aside from XUnit which is Apache 2.0+MIT)

  • iced disassembler for x86
  • Capstone.NET for ARMv8 and ARMv7 disassembly.
  • Pastel for the console colours.
  • CommandLineParser so I didn't need to write one myself.
  • Mono.Cecil to create and save the Dummy DLLs, and generate IL.
  • HarmonyX to fix some of cecil's annoyingly vague error messages.
  • xUnit for the unit tests.

It's (very loosely, at this point) based off of Il2CppDumper, which I forked in 2018 and removed a lot of code, rewrote a lot, and added a lot more. But at its core, it's still got some dumper left in it.

It contains bits and pieces from Il2CppInspector, taken with permission from djKaty, and I'd like to express my gratitude to her here for her invaluable help.

I'd like to thank the Audica Modding community and Discord for the initial inspiration for this project, lots of support in the early days, and feature requests these days.

And finally, check out some other cool projects which link in with this one. Of course, I mentioned Il2CppAssemblyUnhollower further up, but also check out MelonLoader, which uses Cpp2IL for Dummy DLL generation.

Footnotes

  1. A simple function call is one that is non-virtual, and not defined in an interface. This includes both static and instance functions.

  2. An exception helper is a function call which throws an exception, halting the execution of the current function. These are used for checks which are implicit in the .NET runtime, such as throwing NullReferenceExceptions if something is null and a field is accessed on it.

  3. A MetadataUsage is a reference to a type, field, method, generic instance method, or managed string literal.

  4. Analysis of ARMv8 binaries supports the following conditions in conditional statements: greater than, greater than or equal to, less than or equal to, not equal to null, not equal to, equal to null, equal to.

  5. x86 has a lot of opcodes for mathematical operations. Some are supported: Addition, subtraction, some multiplication (but not all), integer division.

  6. RGCTX stands for Runtime Generic ConTeXt, and is used to provide information about generic methods during runtime.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].