Demiurg
Demiurg

Reputation: 1669

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 ?

Upvotes: 6

Views: 2211

Answers (5)

Shivanshu Goyal
Shivanshu Goyal

Reputation: 1452

Detours 4 is now open source under the MIT license! So there is no $10k license fee anymore.

Upvotes: 2

Sigmund
Sigmund

Reputation: 135

I would recommend Mhook, which is free and works great for both x86 and x64.

Make sure to use apriorit's fork of Mhook, it has lots of improvements and bug fixes that are not merged back to the original project.

Upvotes: 0

Pablo Yabo
Pablo Yabo

Reputation: 2813

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.

Upvotes: 2

vobject
vobject

Reputation: 5310

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.

Upvotes: 2

Joe Jordan
Joe Jordan

Reputation: 2472

Madshi's madCodeHook is what you're looking for.

Upvotes: 1

Related Questions