行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023/05/24 16:47:16
Action name:ToggleTraceInstructions
This command starts instruction tracing.You can then use all the debugger commands as usual:the debugger will save all the modified register values for each instruction.
When you click on an instruction trace event in the'Tracing'window,IDA displays the corresponding register values preceding the execution of this instruction.In the'Result'column of the Tracing window,you can also see which registers were modified by this instruction.By using this information,you can for example quickly determine which instruction modified a specific register,or you can even backtrace the execution flow.Note that the IP register is never printed in the'Result'column,although it is usually modified by almost any instruction(except perhaps some prefixed instructions like REP MOVSB,...).
Internally,the debugger runs the current thread step by step to properly obtain all the required register values.This explains why instruction tracing is slower than a normal execution.
以下为中文翻译:
操作名称:ToggleTraceInstructions
此命令启动指令跟踪。
然后您可以像往常一样使用所有调试器命令:调试器将保存所有
为每条指令修改寄存器值。
当您在“跟踪”窗口中单击指令跟踪事件时,
执行之前显示相应的寄存器值
这条指令。在“跟踪”窗口的“结果”列中,您
也可以看到哪些寄存器被这条指令修改了。
通过使用此信息,您可以快速确定哪条指令
修改特定的寄存器,或者您甚至可以回溯执行流程。
请注意,IP寄存器永远不会打印在“结果”列中,尽管它通常是
几乎被任何指令修改(除了一些前缀指令,如REP MOVSB,...)。
步步运行当前线程
正确获取所有必需的寄存器值。
这解释了为什么指令跟踪比正常执行慢。
读者也喜欢这些内容:
IDA Pro越过(Step over)
...
阅读全文 >
IDA Pro函数跟踪(Function tracing)
...
阅读全文 >
代码逆向分析工具有哪些 代码逆向分析工具怎么用
代码逆向分析工具是一类可以帮助开发人员进行逆向分析的工具,包括反汇编工具、反编译工具、调试工具等。本文将介绍常用的代码逆向分析工具有哪些以及代码逆向分析工具怎么用。...
阅读全文 >
exe反编译软件有哪些 exe反编译成c语言
作为一名计算机专业人员,反编译工具是必备的工具之一。EXE文件是Windows操作系统中的可执行文件,有时需要将其反编译成C语言代码,以便进行分析或修改。因此,exe反编译软件也成为了必备的工具之一。在本文中,我们将讨论exe反编译软件的种类和能够将exe反编译成C语言的工具。...
阅读全文 >