- Status
- Offline
- Joined
- Mar 3, 2026
- Messages
- 754
- Reaction score
- 457
IDA Pro 9.3 dropped and, as expected, broke the standard plugin ecosystem due to the shift in UI libraries. If you are still trying to reverse complex C++ targets without RTTI reconstruction, you are wasting your time. Got my hands on the updated builds for two essentials that actually work with the 9.3 branch.
Classinformer (Qt6 Build)
This is the bread and butter for analyzing modern game binaries. It parses Run-Time Type Information (RTTI) to reconstruct class hierarchies, making sense of those massive vtables. This version is specifically compiled with Qt6 support, so it won't crash your IDA instance when it tries to render the UI components.
SigMaker
Still the most reliable way to generate patterns that survive game updates. Whether you are dealing with a polymorphic engine or just standard compiler optimizations, SigMaker produces the most surgical signatures for your projects. Essential for anyone maintaining an internal or external base where offsets shift every Thursday.
Installation Detail
Any of you guys managed to get these running on the ARM build yet?
Classinformer (Qt6 Build)
You cant view this link please login.
This is the bread and butter for analyzing modern game binaries. It parses Run-Time Type Information (RTTI) to reconstruct class hierarchies, making sense of those massive vtables. This version is specifically compiled with Qt6 support, so it won't crash your IDA instance when it tries to render the UI components.
SigMaker
You cant view this link please login.
Still the most reliable way to generate patterns that survive game updates. Whether you are dealing with a polymorphic engine or just standard compiler optimizations, SigMaker produces the most surgical signatures for your projects. Essential for anyone maintaining an internal or external base where offsets shift every Thursday.
Installation Detail
- Locate your IDA Pro installation directory.
- Drop the .dll files into the plugins folder.
- If you have conflicting legacy versions, wipe them out first to avoid load errors.
- Restart IDA and check the Edit -> Plugins menu.
If the plugins fail to load, ensure you have the latest Microsoft Visual C++ Redistributables installed. Since 9.3 relies heavily on the newer Qt6 framework, some older environments might throw dependency errors. Check your ida.log if they don't show up in the menu.
Any of you guys managed to get these running on the ARM build yet?