如何反编译c ++ dll? [英] How to decompile c++ dll?

查看:684
本文介绍了如何反编译c ++ dll?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究逆向工程。我能够使用反射器反编译.net dll文件。但是在反射器中,我们无法反编译c ++ dll文件。还有其他反编译器可用于反编译c ++ dll文件吗?

I am doing research on reverse engineering. I am able to decompile .net dll files with reflector. But in reflector we can't decompile c++ dll files. Is there any other decompiler available to decompile c++ dll Files?

推荐答案

与CLR语言不同,C ++不会编译为CIL或任何字节码。此外,C ++编译器不存储元数据,因此几乎不可能恢复原始代码(自定义类型,类等)。本机代码也可能会进行大量优化。
但是,您可以尝试使用HexRays for IDA Pro重新创建纯C代码(尽管它不是免费的)。

Unlike CLR languages, C++ does not compile into CIL or any sort of bytecode. Moreover, C++ compilers do not store metadata so it's almost impossible to restore original code (custom types, classes, etc). Native code might be heavily optimized as well. However, you can try to recreate pure C code with HexRays for IDA Pro (it's not free though).

这篇关于如何反编译c ++ dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆