I have to decompile obfuscated dll which was written in Microsoft Visual C++ 6.0 DLL?
How can I do that? I have tried so many software .Net Reflector,JetBrains dotPeeks but they all seems useless 🙁
I have to decompile obfuscated dll which was written in Microsoft Visual C++ 6.0
Share
If you just need to use the functionality of the DLL, use
LoadLibraryandGetProcAddressinstead to dynamically load the library and obtain function pointers.You can use Dependency Walker if you need to see what functions the DLL exports (but it would be easier if you just had a header file for it on hand).