mirror of
https://github.com/ApfelTeeSaft/IDAExecFunctionsImporter.git
synced 2026-08-26 19:23:36 +00:00
1.3 KiB
1.3 KiB
IDAExecFunctionsImporter
This is an IDA-Plugin for v9.0 rc1 to import names from an .idmap file into the database.
The Original Code was made by Fischsalat
This plugin can be used with .idmap files generated by Dumper-7.
Currently imported
- Virtual Function Table names: eg.
UClass_VFT - UFunction::ExecFunction names: eg.
APlayerController::execCanRestartPlayer
Build
- Building this plugin requires the IDA C++ SDK
- Add the SDKs
\include\directors to the projectsAdditional Include Directories - Add the SDKs
\lib\x64_win_vc_64director to the projectsAdditional Library Directories - Select your IDA installations'
\plugins\folder as yourOutput Directory
Format expected by the plugin:
struct Identifier
{
uint32 Offset; // Relative to Imagebase
uint16 NameLength;
const char Name[NameLength]; // Not NULL-terminated
};
| Exec-Functions | VirtualFunctionTables |
|---|---|