-
Identifies and logs the following Unreal Engine functions:
StaticFindObjectStaticLoadObject(multiple patterns)FMemory::MallocUObject::ProcessEvent(multiple patterns)
-
Outputs the function name, virtual address, and offset relative to the image base.
-
Includes debug output to track the plugin's operation.
-
Copy the
FindFunctionsplugin script into the<IDA Pro plugins directory>. -
Ensure that the required IDA Python libraries (
idaapi,idautils,idc,ida_search) are available in your IDA Pro environment.
-
Start IDA Pro and load your target binary.
-
Press
Alt-For access the plugin via the "Plugins" menu to execute theFindFunctionsplugin. -
The output will be displayed in the console log within IDA Pro, showing details of matched functions and their offsets.
[vmp-ue] Plugin run
[vmp-ue] Starting to find functions
[vmp-ue] Analyzing all functions...
[+] Found FMemory::Malloc : sub_2037C10 at 0x2037c10
[+] FMemory::Malloc Offset: 0x2037c10
[+] Found StaticFindObject : sub_20A0E4C at 0x20a0e4c
[+] StaticFindObject Offset: 0x20a0e4c
[+] Found function containg STLO: sub_2D16A2C at 0x2d16a2c
[+] StaticLoadObject Address: 0x2e555e4
[vmp-ue] Plugin terminated