Tag: disassembly

如何用ollydbg找到应用程序的function?

假设我发布了以下应用程序。 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { MessageBox.Show(“Hello World!”,”Message Box”); } } } 现在这是我的问题: 使用ollydbg按下按钮后如何找到负责显示消息框的按钮function? 如何禁用按钮单击? 注意 :这必须仅使用ollydbg完成。 假设我无法访问代码。 我们将非常感谢一步一步的例子。