Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 OllyDbg 中将字节指针显示为手表?
例如,如果你输入一个像 [ecx+ebx] 这样的表达式作为手表,你可能会得到一个像“FF084001”这样的值,但是如果你想要字节指针,最低有效字节(这里是 01)似乎没有只显示那个字节的方法。我尝试输入:
字节指针 [ecx+ebx]
并得到错误“无法识别的标识符”。
试试[BYTE ecx+ebx]。在文档 ( help.pdf) 中按关键字 找到expression。
[BYTE ecx+ebx]
help.pdf
expression