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 中是否有一个选项可以找出哪些代码写入内存地址?就像 Cheat Engine 显示写入特定地址的所有汇编指令一样。“断点 --> 内存”不起作用。
是的,打开 olly 并调试某个程序,转到查看选项卡>内存,Alt+M 然后找到内存地址(首先您必须选择程序的内存部分,如 .data 或 .bss),然后单击地址(或使用鼠标右键选择多个地址Shift) 并将鼠标悬停到断点,然后您将能够选择 以在程序写入或读取地址时中断程序
Alt+M
Shift
一个好的做法是先在cheatEngine上找到地址,然后在ollydbg上使用断点。