Closed untyper closed 1 year ago
Print out orig_phys >> 12
and exec_phys >> 12
and you'll most likely see the problem 😄
Seems like I have the same issue as https://github.com/jonomango/hv/issues/11 Prints out the original first then crashes on subsequent calls. I'll just go with classic ptr hooks for now and figure out the EPT stuff later.
On a sidenote, your coding style is pure art and the lib is very clean
Print out
orig_phys >> 12
andexec_phys >> 12
and you'll most likely see the problem 😄
So what exactly is the problem? Looking through the whole project, no example of use.
Print out
orig_phys >> 12
andexec_phys >> 12
and you'll most likely see the problem 😄So what exactly is the problem? Looking through the whole project, no example of use.
The problem is that they reside in the same page, most likely (since the functions are so close to each other).
Why is it that when I call
original_func()
after installing the EPT hook, it still prints "Hello, this the original function."? I was expectingexecute_func()
's content to print instead but that isn't the case in the below code? What am I misunderstanding