Which tool would you recommend?
Asked
Active
Viewed 2.5k times
3 Answers
5
For native DLLs the Dependency Walker tool will show you all of the exported functions as well as id numbers and address for each function. It will also list the DLLs that the DLL directly depends on.
If you are looking at a .NET/Managed DLL check out Red Gate's Reflector. It will completely disassemble the DLL and show you the code in the .NET language of your choice. An excellent tool!
heavyd
- 65,321
1
I've personally never done it before, but here's what i found online to try:
This lists a few more as well. Good luck!
James Mertz
- 26,529
0
If you're targetting native code, you're looking for a disassembler/decompiler. Good luck, hope you can read assembly. As far as I know there's no other way from just a normally compiled and optimized native .dll.
Mark Allen
- 2,880