行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2022-10-15 14: 04: 28
Action name: AskNextImmediate
This command searches for the first instruction or data byte that contains the specified immediate value. The command is relatively slow (but much faster than the text search), because it disassembles each instruction to find the operand values.
If the immediate value in an instruction has been logically or bitwise negated, then this command will check against the modified value. Example:
mov al, -2
will be found if the user searches for the immediate value 2 but not when he searches for 0xFE.
If the checkbox "any untyped value" is checked, then the "value" field is ignored. IDA will look for all immediate values without type in this case.
中文翻译:
操作名称:AskNextImmediate
此命令会查找包含指定立即数值的第一个指令或数据字节。该命令相对较慢(但比文本搜索要快得多),因为它需要反汇编每条指令来查找操作数值。
如果指令中的立即值已被逻辑或按位取反,则此命令将针对修改后的值进行检查。例如:
mov al,-2
如果用户搜索立即值2,则会找到此指令,但如果搜索0xFE,则不会找到。
如果选中了“任何未分类值”复选框,则“值”字段将被忽略。在这种情况下,IDA将查找所有没有类型的立即值。
展开阅读全文
︾
读者也喜欢这些内容:
利用插件为IDA设置不同主题
在上一节《IDA颜色相关的配置及其导入导出》中,我们主要了解如何在IDA中进行颜色的设置,以让我们选择更适合自己使用的颜色配色。在本文中我将继续以此为目的,讲解如何通过插件的形式,为IDA软件设置不同的主题。...
阅读全文 >
IDA pro在文件中搜索子字符串(Search for substring in the file)
...
阅读全文 >
IDA Pro添加/编辑枚举(Add/Edit an enum)
...
阅读全文 >
ida怎么修改汇编语言 ida修改汇编代码没用
IDA是一款非常强大的反汇编工具,可以将二进制文件反汇编成汇编代码,并且可以将汇编代码反编译成C语言代码。在分析和调试程序时,有时需要修改汇编代码以实现特定的功能或修复程序中的错误。...
阅读全文 >