反汇编器
3. 迷惑反汇编器 这种机器码复用技术在某种程度上可以迷惑反汇编器(disassembler),这是由于跳转的目标地址并不是常规的指令边界!而一般静态的反汇编器不能识别出来!
[计] 反汇编程序
什么叫反汇编程序(Disassembler),反汇编程序(Disassembler)是什么意思?
反汇编
调试器中内嵌了反汇编(Disassembler)模块,借助它我们可以把二进制代码转换为汇编语言(Assembly)指令代码。
反组译工具
... disassembler反汇编,台分解器 disassembler反组译工具 disassembler反组译工具、反组译器反汇编器 ...
disassembler:
disassemble + -er
A disassembler is a computer program that translates machine language into assembly language—the inverse operation to that of an assembler. A disassembler differs from a decompiler, which targets a high-level language rather than an assembly language. Disassembly, the output of a disassembler, is often formatted for human-readability rather than suitability for input to an assembler, making it principally a reverse-engineering tool.Assembly language source code generally permits the use of constants and programmer comments. These are usually removed from the assembled machine code by the assembler. If so, a disassembler operating on the machine code would produce disassembly lacking these constants and comments; the disassembled output becomes more difficult for a human to interpret than the original annotated source code. Some disassemblers make use of the symbolic debugging information present in object files such as ELF. The Interactive Disassembler allows the human user to make up mnemonic symbols for values or regions of code in an interactive session: human insight applied to the disassembly process often parallels human creativity in the code writing process.Disassembly is not an exact science: on CISC platforms with variable-width instructions, or in the presence of self-modifying code, it is possible for a single program to have two or more reasonable disassemblies. Determining which instructions would actually be encountered during a run of the program reduces to the proven-unsolvable halting problem.