英语人>词典>汉英 : 反汇编 的英文翻译,例句
反汇编 的英文翻译、例句

反汇编

基本解释 (translations)
disassembling

更多网络例句与反汇编相关的网络例句 [注:此内容来源于网络,仅供参考]

The common method of disassembly, referred to as the linear sweep method, assumes that all bytes starting from the entry point of a binary are instructions, and disassembles the entire code segment, following successive bytes.

反汇编的通常方法,即所谓线性扫描方法,假定从二进制代码入口点开始的所有字节是指令,并且顺序反汇编整个代码段字节。

Thus, whenever a branch instruction is encountered the disassembly continues simultaneously at both the address following the branch instruction and the address that is the target of the branch instruction.

因此,无论何时遇到一个分支指令,就同时从两个地址继续反汇编:分支指令后面的地址和分支指令的目标地址。

You can find its disassmbler source engine and employ it to create your own disassembler.

你可以找到它的反汇编源码引擎,开发你自己的反汇编软件。

In order to accomplish that, you'll need to implement a disassembler capable of analyzing assembly instructions.

为了完成这些,你需要反汇编并且分析汇编指令。

Obviously, performing such an analysis of assembly instructions requires the assistance of a disassembler, which, as I have mentioned before, is not very easy to implement.

显然,执行这样一个汇编分析要反汇编的软件,前面我已经提及了,这不是一件简单的事。

We can consider OllyDbg and SoftICE as excellent disassemblers, but I also want to introduce another disassembler tool which is famous in the reverse engineering world.

OllyDbg 和 SoftICE 不仅是最好的调试器,也是相当不错的反汇编器,虽然如此,但我仍想介绍逆向工程领域中最著名的反汇编器。

Follow value in Disassembler - follows contents of doubleword memory pointed to by selected address in Disassembler pane.

跟进值在反汇编器-根据所选地址在反汇编器面板显示双字的内存指针跟进内容。

Flasm 1.22 disassembles/assembles all actions supported by flash, regardless of the version. There were numerous syntax changes to the original flasm though, so be sure to decompile with flasm 1.22 before you try to compile.

Flasm 1.22反汇编/汇编flash支持的所有actions,无论什么版本,尽管有非常多的语法变化,在你编译他之前请先尝试用flasm反编译

It is by no means a small feat to write a program that disassembles a host program; reorganizes the code; injects malicious code deep inside this reorganized code; reassembles the new program; and overwrites its disk image in the correct format.

仅靠一点小技巧是没办法写出这样一个程序,它能:反汇编宿主程序;重新排序代码;将恶意代码深层次地插入这个重新排序以后的代码;重新汇编该新程序;而且以正确的格式重写它的磁盘映像。

Disassembler, which makes sense considering that reversers rarely work with just

本书中的汇编代码是使用好几中反汇编器生成的,这是考虑到很少有逆向

更多网络解释与反汇编相关的网络解释 [注:此内容来源于网络,仅供参考]

as:汇编器

Binutils 是一组很重要的开发工具,包括链接器(ld)、汇编器(as)、反汇编器(objdump)和其他用于目标文件和档案的工具(ar),也是gcc的依赖项.

Debug:T:(跟踪)

Debug:s(搜索) | Debug:T(跟踪) | Debug:U(反汇编)

disassemble:反汇编

3.8同意了本合约的条款之后,盛科网络将授予允许用户以一个合法付费账号进行游戏的权利. 用户不得对本软件进行修改,反向工程(Reverse Engineering),反向编译(Decompile),反汇编(Disassemble)或进行任何更改本软件程序

disassembler:反汇编器

我一直都努力避免使用汇编,但是这一次,我们逃不掉了,没有汇编不行的. 还记得CALL把EIP的值压栈了吗?所以为了得到EIP的值我们调用了一个"假(dummy)函数"然后弹出栈顶值. 看一下编译过的NewProc:2. 在反汇编器(disassembler)中查出正确的距离值.

disassembly:反汇编

另外,我使用了 VS.NET 2003 中的"反汇编"(Disassembly) 窗口来得到文中的反汇编. 但是,这其中也包含一个小技巧. 如果在 VS.NET 调试程序中运行应用程序,即使是在"发布"(Release) 模式中构建的优化可执行程序,在"调试模式"下运行时,

disassembly window:反汇编窗口

除了看.m51的文件以外,还可以在调试界面(Debug session)看反汇编窗口(disassembly window)的代码,有时候还是很有帮助的

disassembly instruction:分解指令

disassembling 反汇编 | disassembly instruction 分解指令 | disaster dump 大错转储

Locals Window:局部变量窗口

155 Disassembly Window 反汇编窗口 | 156 Locals Window 局部变量窗口 | 157 Memory Window 内存窗口

step into:步进

下次记住,一定要步进 (step into). 再看一遍这个CALL,0101300A 在反汇编器中 *不是* 一条指令的开始位置,因此你将会跳进一条指令的中间. 下面这种循环对抗跟踪(tracers)非常有效. 只要想想跟踪要比单纯的运行多花费N倍的时间......试试下面代码,不跟踪的话不会影响程序的速度:

disassembling:反汇编

把二进制文件"反汇编"(disassembling)到汇编语言的工具有不少,我记得watcom自己就带了一个wdism命令. 如果你有object文件的话,直接用watcom的反汇编应该效果不错.