行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-05-11 11: 27: 01
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.
See also
Search submenu
How to Enter a Number.
中文翻译:
操作名称: AskNextImmediate
该命令搜索第一条指令或数据字节
包含指定的立即值。命令是
相对较慢(但比文本搜索快得多),因为它将每条指令反汇编为
找到操作数值。
如果指令中的立即数已被逻辑或按位求反,
然后此命令将检查修改后的值。例子:
mov al, -2
如果用户搜索立即值 2 将被找到但是
当他搜索 0xFE 时不是。
如果选中任何未类型化值的复选框,则值字段将被忽略。
在这种情况下,IDA 将查找所有没有类型的立即值。
另见
搜索子菜单
如何输入数字。
展开阅读全文
︾