Commit Graph

1309 Commits

Author SHA1 Message Date
LukeFZ
e6307d009c workflow: remove double .zip in CLI artifact name 2024-11-14 08:03:22 +01:00
LukeFZ
2bd24b9c12 workflow: tweak caching and fix gui compilation 2024-11-14 07:53:14 +01:00
LukeFZ
226d0dfd1d workflow: only restore packages for projects that are being built 2024-11-14 07:47:55 +01:00
LukeFZ
5cd94784f5 Update actions workflow to produce cross-platform CLI binaries, update readme to reflect .net 9 changes 2024-11-14 07:42:27 +01:00
LukeFZ
bcbf4f47e2 Fix NRE in Assembly ctor on < v24.2 2024-11-09 15:44:11 +01:00
LukeFZ
3982e5fd99 Make field offset reading use TryMapVATR to reduce exceptions 2024-11-09 15:43:39 +01:00
LukeFZ
e0e8d052ea make TryMapVATR overrideable and implement it for ELFs 2024-11-09 15:43:22 +01:00
LukeFZ
08431b774a Fix metadata usage issues caused by it being a value type now 2024-11-08 23:33:13 +01:00
Luke
5715760e8b Overhaul disassembler script + add Binary Ninja target (#12)
* Overhaul diassembler scripts:
- No longer defines top level functions
- Split into three classes: StatusHandler (like before), DisassemblerInterface (for interfacing with the used program API), ScriptContext (for definiting general functions that use the disassembler interface)
- Add type annotations to all class methods and remove 2.7 compatibility stuff (Ghidra now supports Python 3 so this is unnecessary anymore)
- Disassembler backends are now responsible for launching metadata/script processing, to better support disassembler differences
- String handling is back in the base ScriptContext class, disassembler interfaces opt into the fake string segment creation and fall back to the old method if it isn't supported

* Add Binary Ninja disassembler script backend
This uses the new backend-controlled execution to launch metadata processing on a background thread to keep the ui responsive

* make binary ninja script use own _BINARYNINJA_ define and add define helpers to header

* Update README to account for new script and binary ninja backend

* implement fake string segment functions for binary ninja but don't advertise support

* also cache API function types in binary ninja backend

* fix ida script and disable folders again
2024-11-08 23:31:40 +01:00
LukeFZ
792268f52f Disable plugin loading for now 2024-11-07 12:51:58 +01:00
LukeFZ
8895979388 also read UnresolvedVirtualCallCount on regular v31 2024-10-27 11:24:14 +01:00
LukeFZ
daa80bcffe support loading PEs without an export table 2024-10-26 19:56:49 +02:00
LukeFZ
d59f67216a support auto-recovering type indices from type handles
fixes loading of memory-dumped v29+ libraries since those replacee their class indices on load with a pointer to the corresponding type
2024-10-13 21:54:59 +02:00
LukeFZ
095bfa16e8 remove loading of packed dlls - this was a very unsafe feature 2024-10-13 21:54:06 +02:00
LukeFZ
e67f856299 also remove 29.2 from the readme 2024-09-01 02:02:13 +02:00
LukeFZ
7632ff2283 29/31.2 was a psyop 2024-09-01 02:01:34 +02:00
LukeFZ
1a12cf5081 tweak .1 condition (again) 2024-08-30 20:23:17 +02:00
LukeFZ
e6c51b47d6 rework code registration offsetting a bit and add second 29/31.1 condition 2024-08-24 22:55:35 +02:00
LukeFZ
5d827fe881 fix metadata usage validity checks 2024-08-18 22:40:29 +02:00
LukeFZ
a7081ccfa9 move 29/31.1/.2 to use tags (-2022,-2023) instead of minor versions 2024-08-18 22:40:14 +02:00
LukeFZ
43d7433e12 Rework metadata struct loading to use new struct versioning 2024-08-17 13:52:09 +02:00
LukeFZ
6c59434984 rename serialization methods and add BinaryObjectStreamReader for interop 2024-08-14 01:00:32 +02:00
LukeFZ
2d3b186b4d add new struct definitions 2024-08-13 18:34:22 +02:00
LukeFZ
23e873280d migrate versioning to StructVersion class, add handling/detection for 29.2/31.2 2024-08-13 15:00:20 +02:00
LukeFZ
22ecdc3612 add VersionedSerialization + source generator 2024-08-13 04:27:23 +02:00
LukeFZ
30c019c4ef Bump projects to .net 9 and update nugets 2024-08-13 04:23:49 +02:00
commonuserlol
665e70324f Ghidra script improvements (#7)
* Always set image base to 0 for Ghidra

* Script improvements

Everything here is for Ghidra:
* Use `%` instead of f-string (Ghidra still uses python 2.7, meanwhile f-strings were added in 3.6)
* Handle errors when applying type (Ghidra throws exception unlike IDA)
* Don't trigger decompiler (analysis will be faster)
* Revert back string literals

* Set image base to zero only for ELF

I don't know about PE with Ghidra

* Update README for disassemblers

* IDA 7.6 required due `ida_ida.inf_is_32bit_exactly()`

* Ghidra now don't launch decompiler for whole binary

* Set image base to 0 in script

Remove %IMAGE_BASE% since we don't use it anymore

* Create XREFs for Ghidra

Now you can jump from `MethodInfo` to actual method

* Fix demangler for Ghidra

Ghidra's demangler can process only functions in auto analysis. Now both `TypeInfo` and `MethodInfo` are displayed properly

---------

Co-authored-by: commonuserlol <commonuserlol@users.noreply.github.com>
2024-08-10 21:00:41 +02:00
LukeFZ
61087849bd Merge branch 'master' of https://github.com/LukeFZ/Il2CppInspectorRedux 2024-07-15 16:11:42 +02:00
LukeFZ
b4aaa8df5e Make script paths always use / as the path seperator to be cross-compatible 2024-07-15 16:11:24 +02:00
LukeFZ
85154ded5b update readme to refer to this repo and net8.0 folders 2024-07-15 16:11:03 +02:00
Luke
bc8c7c87e0 Merge pull request #5 from commonuserlol/master
Print banner only on windows
2024-07-14 22:06:48 +02:00
commonuserlol
9855aa3b3f Print banner only on windows
TLDR: GetVersionInfo works only with PE Header

Reference: https://stackoverflow.com/questions/63773485/c-sharp-fileversioninfo-getversioninfo-not-working-on-mac-os
2024-07-10 19:32:02 +03:00
LukeFZ
87766f6f96 Add support for metadata version 29.2 and 31 2024-06-24 18:41:14 +02:00
LukeFZ
98edac1aea Allow usage without the plugins folder 2024-06-24 18:40:19 +02:00
Luke
396c222ac5 Tweak 29.1 heuristic 2024-06-24 14:18:49 +02:00
Luke
04263803e3 Fix CLI crashing on launch in single file builds 2024-05-24 03:19:46 +02:00
Luke
692f4e05ef Fix ghidra script output 2024-05-24 03:09:00 +02:00
LukeFZ
b21b6e89ab properly fix scoped name for generic arrays 2024-02-27 17:34:24 +01:00
LukeFZ
1e27f8672d Dump default bytearray value as base64 in c# output 2024-02-25 15:26:46 +01:00
LukeFZ
eababc31f3 Add fallback to invalid compressed int in BlobReader 2024-02-25 15:24:09 +01:00
LukeFZ
e328ed9b84 just check for FullName == null in getScopedFullname 2024-02-25 15:23:58 +01:00
LukeFZ
2a492e02ba Update getScopedFullName for generic params + update README 2024-02-25 11:32:20 +01:00
LukeFZ
0f7cd027c3 create fake string segment to allow ida to show the actual strings, also add custom xref between methodinfo and method when both exist 2024-02-16 11:43:15 +01:00
LukeFZ
42d97813df Fix idaclang support for 8.3 2024-02-16 09:49:00 +01:00
LukeFZ
939bedac57 Skip function boundaries when a .pdata segment is detected, add (very slow) folder creation which is disabled by default 2024-02-13 15:02:16 +01:00
LukeFZ
55532fdc8a Overhaul IDA script output and add progress waitbox 2024-02-13 06:48:36 +01:00
LukeFZ
6b060c274a Fix assembly shim output for older Unity versions due to non-explicit class layouts 2023-12-10 21:58:22 +01:00
LukeFZ
7b03b939a0 Fix some issues loading ELFs with invalid SHTs and broken symbol entries 2023-12-09 14:01:54 +01:00
LukeFZ
ef56ebbd2f Fix header generation when a struct contains an enum pointer 2023-12-07 20:53:03 +01:00
LukeFZ
1d2890961c Fix custom attribute parsing when a null array is used and when an assembly has no attributes 2023-12-07 20:52:06 +01:00