从exe文件中提取dll

从exe文件中提取dll

本文介绍了从exe文件中提取dll的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个由vc编译的exe文件。这个程序编译了一个dll作为资源。当这个程序运行时,它会将已编译的dll源文件加载到内存中,然后通过loadlibrary加载dll。我如何从exe中提取dll文件?

(或者可能挂钩exe程序的API loadlibrary。)

i have a exe file which is compiled by vc. this program compiled a dll as resource. when this program runs, it would load compiled dll source file into memory, then load the dll through "loadlibrary". how could i extract the dll file from exe?
(or maybe hook the exe program's API loadlibrary.)

推荐答案


这篇关于从exe文件中提取dll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 07:31