gpt4 book ai didi

delphi - 如何更改外部声明函数的实现(绕行)

转载 作者:行者123 更新时间:2023-12-03 14:37:20 26 4
gpt4 key购买 nike

我有第三方功能

function DataCompare(const S1, S2: string; APartial: Boolean): Boolean;
begin
...
end;

它用于另一个第三方单元。

我希望在运行时用另一个新实现替换函数体。

这可能吗?我想需要一些破解(ala VirtualMemoryUnprotect)。非常欢迎非汇编解决方案。

最佳答案

是的,您可以使用 ReadProcessMemory 来做到这一点和WriteProcessMemory修补当前进程的代码的函数。基本上,您获取要修补的过程或函数的地址,然后将跳转指令插入到新过程的地址。

检查此代码

Uses
uThirdParty; //this is the unit where the original DataCompare function is declarated

type
//strctures to hold the address and instructions to patch
TJumpOfs = Integer;
PPointer = ^Pointer;

PXRedirCode = ^TXRedirCode;
TXRedirCode = packed record
Jump: Byte;
Offset: TJumpOfs;
end;

PAbsoluteIndirectJmp = ^TAbsoluteIndirectJmp;
TAbsoluteIndirectJmp = packed record
OpCode: Word;
Addr: PPointer;
end;

var
DataCompareBackup: TXRedirCode; //Store the original address of the function to patch


//this is the implementation of the new function
function DataCompareHack(const S1, S2: string; APartial: Boolean): Boolean;
begin
//here write your own code
end;

//get the address of a procedure or method of a function
function GetActualAddr(Proc: Pointer): Pointer;
begin
if Proc <> nil then
begin
if (Win32Platform = VER_PLATFORM_WIN32_NT) and (PAbsoluteIndirectJmp(Proc).OpCode = $25FF) then
Result := PAbsoluteIndirectJmp(Proc).Addr^
else
Result := Proc;
end
else
Result := nil;
end;

//patch the original function or procedure
procedure HookProc(Proc, Dest: Pointer; var BackupCode: TXRedirCode);
var
n: {$IFDEF VER230}NativeUInt{$ELSE}DWORD{$ENDIF};
Code: TXRedirCode;
begin
Proc := GetActualAddr(Proc);
Assert(Proc <> nil);
//store the address of the original procedure to patch
if ReadProcessMemory(GetCurrentProcess, Proc, @BackupCode, SizeOf(BackupCode), n) then
begin
Code.Jump := $E9;
Code.Offset := PAnsiChar(Dest) - PAnsiChar(Proc) - SizeOf(Code);
//replace the target procedure address with the new one.
WriteProcessMemory(GetCurrentProcess, Proc, @Code, SizeOf(Code), n);
end;
end;
//restore the original address of the hooked function or procedure
procedure UnhookProc(Proc: Pointer; var BackupCode: TXRedirCode);
var
n: {$IFDEF VER230}NativeUInt{$ELSE}Cardinal{$ENDIF};
begin
if (BackupCode.Jump <> 0) and (Proc <> nil) then
begin
Proc := GetActualAddr(Proc);
Assert(Proc <> nil);
WriteProcessMemory(GetCurrentProcess, Proc, @BackupCode, SizeOf(BackupCode), n);
BackupCode.Jump := 0;
end;
end;

//Patch the original procedure or function
procedure HookDataCompare;
begin
//look how is passed the address of the original procedure (including the unit name)
HookProc(@uThirdParty.DataCompare, @DataCompareHack, DataCompareBackup);
end;

//restore the address of the original procedure or function
procedure UnHookDataCompare;
begin
UnhookProc(@uThirdParty.DataCompare, DataCompareBackup);
end;


initialization
HookDataCompare;
finalization
UnHookDataCompare;
end.

现在,每次您执行应用程序并调用 DataCompare 函数时,都会执行跳转指令(到新地址),从而导致 DataCompareHack函数将被调用。

关于delphi - 如何更改外部声明函数的实现(绕行),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6905287/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com