【问题标题】:Is there a way to view the value in the register using IDA Freeware when debugging? [duplicate]有没有办法在调试时使用 IDA Freeware 查看寄存器中的值? [复制]
【发布时间】:2021-06-21 16:34:56
【问题描述】:

我正在使用 IDA 免费软件调试器来调试 .exe 文件。我在程序中放置了一个断点。如下图所示。我需要知道此时“eax”寄存器中的值是什么(这在下图中以黄色突出显示)。有没有办法找到这个值?

【问题讨论】:

    标签: assembly x86 reverse-engineering disassembly ida


    【解决方案1】:

    寄存器转储就在显示屏的右上方窗格中。它显示了 64 位寄存器,但 EAX 只是 RAX 的低 32 位(请参阅What do the E and R prefixes stand for in the names of Intel 32-bit and 64-bit registers?)。所以只需阅读最右边的 8 个十六进制半字节。此时程序中的 EAX 的值为 0xCB7475E2

    您同样可以读取其他部分寄存器的值。 AX = 0x76E2, AH = 0x76, AL = 0xE2.

    【讨论】:

      猜你喜欢
      • 2016-05-23
      • 2020-05-04
      • 1970-01-01
      • 2020-09-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-09-14
      • 1970-01-01
      相关资源
      最近更新 更多