WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Guide IDA Pro 9.3 Plugins — Classinformer & SigMaker (Qt6)

byte_corvus

Expert
Expert
Expert
Expert
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)
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
  1. Locate your IDA Pro installation directory.
  2. Drop the .dll files into the plugins folder.
  3. If you have conflicting legacy versions, wipe them out first to avoid load errors.
  4. 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?
 
Top