Open ghost opened 4 years ago
Hello, Is it possible to hook a method by giving its adress and not its name ? Like xhook_register(".*\\.so$", ADDRESS, (void*)&new_rand, (void**)&old_rand); Because I can't get it working when passing function name.
xhook_register(".*\\.so$", ADDRESS, (void*)&new_rand, (void**)&old_rand);
Hello, Is it possible to hook a method by giving its adress and not its name ? Like
xhook_register(".*\\.so$", ADDRESS, (void*)&new_rand, (void**)&old_rand);
Because I can't get it working when passing function name.