Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detours alternative for Registry interception

I'm looking for a way to intercept and redirect reads to a certain registry keys. Naturally, Detours can do it. But I need it for a commercial application and MS $10K license fee is a bit too steep. Are there any alternatives ?

like image 626
Demiurg Avatar asked Feb 04 '11 07:02

Demiurg


2 Answers

The EasyHook Library might be what you are looking for. It is licensed under LGPL and its description sounds quite nice.
I have never actually used it myself because Detours was always enough for my private projects.

There is also an article about it on CodeProject but that is rather old and shows only .NET examples.

like image 152
vobject Avatar answered Nov 16 '22 22:11

vobject


You can also use Deviare API Hook if you want to solve also the IPC or Deviare In-Process for a Detours replacement. It's open source and well maintained.

like image 2
Pablo Yabo Avatar answered Nov 17 '22 00:11

Pablo Yabo