获取EIP(汇编语言直接给Delphi变量赋值)
var
  EIP: Cardinal;
 
procedure GetEIP(); stdcall;
asm
  pop eax;
  mov EIP,eax;
  push eax;
end;
 
procedure TForm1.Button1Click(Sender: TObject);
begin
  GetEIP();
  ShowMessage('Button1Click, 0x' + IntToHex(EIP, 8));
end;
获取EIP(汇编语言直接给Delphi变量赋值)

记录一下。由C++转成Delphi的获取EIP代码。

http://www.cnblogs.com/yangyxd/p/3930950.html

相关文章:

  • 2021-12-20
  • 2021-08-10
  • 2022-12-23
  • 2022-12-23
  • 2021-06-22
  • 2022-01-16
  • 2021-11-17
  • 2021-08-26
猜你喜欢
  • 2022-12-23
  • 2021-07-14
  • 2022-03-04
  • 2021-06-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案