Delphi 修改内存


本文整理自网络,侵删。

 
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  h:HWND;
  ph:THandle;
  pid:Cardinal;
  ok:Boolean;
  p:Pointer;
  buffer:Byte;
  lpNumberOfBytesRead:DWORD;
  ip:string;
  ipbuf:array [1..20] of Byte;
  i:Integer;
begin

  h:=FindWindow(nil,'Lineage Windows Client');
  if h<=0 then
  begin
  ShowMessage('失败');
  exit;
  end;
  GetWindowThreadProcessId(h,@pid);
  ph:=OpenProcess(PROCESS_ALL_ACCESS ,false,pid);
  if pid <=0 then
  begin
  ShowMessage('失败');
  exit;
  end;
  p:=pointer($007aa34c);
  while true do
  begin
  Sleep(100);
  ok:=ReadProcessMemory(ph,p,Pointer(@buffer),SizeOf(Byte),lpNumberOfBytesRead);
    if buffer=9 then
    begin
    p:=pointer($007a9f5c);
    ip:='125.46.41.18';
    for I := 1 to Length(ip) do
    begin
      ipbuf[i]:=ord(ip[i]);
    end;
    for I := Length(ip)+1 to 20 do
    begin
      ipbuf[i]:=0;
    end;
    WriteProcessMemory(ph,p,Pointer(@ipbuf),SizeOf(ipbuf),lpNumberOfBytesRead);
    Break;
    end;
  end;
  CloseHandle(ph);
  ShowMessage('成功');
end;

end.

相关阅读 >>

Delphi 检查ip地址合法性

Delphi实现关闭指定进程,自身防杀

Delphi取整函数

Delphi case 语句中使用字符串

Delphi idhttp1 xmlpost

Delphi根据不同分隔符获取字符串内容

Delphi7 写过卡巴主动防御服务端

Delphi 动态修改显示器分辨率

Delphi 已经最小化的窗体如何让它自己还原?

Delphi enumwindows 获取窗体句柄 进程id 窗体信息

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...

    正在狠努力加载,请稍候...