We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
发现导入表的dll同样是采用LoadLibrary加载的,是否可以指定部分依赖的dll也采用内存加载?
The text was updated successfully, but these errors were encountered:
你好,使用MemoryModulePP加载依赖是非常困难的,需要处理非常复杂的情况,你可以按照下面的方法简单处理这种问题。 假设有以下依赖链条需要从内存中加载: lib1.dll -> lib2.dll -> lib3.dll 你可以先用LdrLoadDllMemoryExW加载lib3.dll(注意DllName和DllFullName参数要正确),再加载lib2.dll(同样地),最后加载lib1.dll。
LdrLoadDllMemoryExW
lib3.dll
lib2.dll
lib1.dll
祝好
Sorry, something went wrong.
No branches or pull requests
发现导入表的dll同样是采用LoadLibrary加载的,是否可以指定部分依赖的dll也采用内存加载?
The text was updated successfully, but these errors were encountered: