开发者

How to get exported function names from a .dll(system)?

开发者 https://www.devze.com 2022-12-15 21:09 出处:网络
I want the exported 开发者_StackOverflow中文版function namelist (by name and by ordinal) from a DLL. I got the function names(exported by name) using export directory table,but I can\'t retrieve the e

I want the exported 开发者_StackOverflow中文版function namelist (by name and by ordinal) from a DLL. I got the function names(exported by name) using export directory table,but I can't retrieve the exported function list, which exported by ordinals.

Please help me to retrieve it. I also tried .lib of that dll, there is also, displays NONAME. thanks in advance to legends


If You know dll name ,You can view through many tools (pe explorer,CFF Explorer),Here all exported function names are viewable with ordinal .Another one way from microsoft (dumpbin.exe) its a command line tool ..its also list out all exported fn names


If you have mingw32 installed, simply run

nm.exe your_dll

Where your_dll is the dll you want to to get the ordinals and exports of. nm.exe should be in the bin directory of your mingw32 installation.

0

精彩评论

暂无评论...
验证码 换一张
取 消