Closed JonathanGoikhman closed 2 years ago
Hello. Thanks for the report. You are trying to use the latest version of the plugin on IDA Pro 7.5, but efiXplorer is written according to the latest version of idasdk and hexrays_sdk and only works on IDA 7.7.
I think the error The specified procedure could not be found
is caused by the fact that for IDA version < 760 the Hex-Rays API pointer must be initialized inside the plugin code (hexdsp_t *hexdsp = nullptr
).
So you can make some changes in the plugin code and rebuild it with idasdk and hexrays_sdk v75. Alternatively, you can build the plugin with Hex-Rays analysis disabled (should work without additional fixes).
Hi, I did everything according to the instructions. The loader part works OK, but the explorer part doesn't. I get the following error: LoadLibrary(C:\Program Files\IDA Pro 7.5 SP3\plugins\efiXplorer64.dll) error: The specified procedure could not be found. C:\Program Files\IDA Pro 7.5 SP3\plugins\efiXplorer64.dll: can't load file
Thank you