A lightweight, header-only library for parsing and extracting MSVC's RTTI (Run-Time Type Information) data structures from both local and external processes. Note that it supports 64-bits only.
- Header-only implementation - just include and use
- Support for both local and external process RTTI extraction
- Class name demangling
- Complete inheritance hierarchy extraction
- No external dependencies beyond standard C++ libraries and the Windows API
Simply copy the single_include/MsvcRTTI.h
header file into your project and include it:
#include "MsvcRTTI.h"
To extract RTTI information from objects in your current process:
// Get the class name of an object
std::string class_name = MsvcRTTI::extractClassName(image_base, p_object);
// Get all base class names (inheritance hierarchy)
std::vector<std::string> base_classes = MsvcRTTI::extractAllBaseClassNames(image_base, p_object);
For extracting RTTI information from objects in another process:
// Get the class name from an external process
std::string class_name = MsvcRTTI::extractClassNameExternal(process_handle, image_base, p_object);
// Get all base class names from an external process
std::vector<std::string> base_classes = MsvcRTTI::extractAllBaseClassNamesExternal(process_handle, image_base, p_object);
The examples
folder contains sample implementations demonstrating how to use the library:
The example_poc_1.cpp
demonstrates how to extract RTTI information from an external process:
RTTI.exe <process_name> <module_name | object_address> <object_address (if module_name specified)>
For example:
RTTI.exe cs2.exe client.dll 0x000011DAEAE0000
This example shows how to:
- Get a process handle using the process name
- Obtain the base address of a module
- Extract and display the complete inheritance hierarchy of an object at a specific address
Here's an example of extracting class hierarchy information from a game process:
The figure above shows a successful extraction of the complete class hierarchy from a Counter-Strike 2 object of a player pool.
The library provides structures for parsing MSVC's RTTI data:
CompleteObjectLocator
: Contains information about object layout and type informationClassHierarchyDescriptor
: Describes inheritance attributes and base class informationBaseClassDescriptor
: Contains information about individual base classesTypeDescriptor
: Holds the mangled class name and virtual function table information
- Maximum RTTI name length for external extraction is limited to 256 characters by default (configurable via
MAX_RTTI_NAME_LENGTH
) - Requires RTTI to be enabled in the target application
- Windows-specific implementation for external process memory reading
- Support 64-bit applications only
Feel free to open issues or submit pull requests for any improvements or bug fixes.
This project is open-source and available under the MIT License.