-
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to call function on other processes ? #15
Comments
Inject your .NET code into the target process: or if you wanna roll your own code, this provides DLL Exports, combine with DLL Injector: or if you want to get your hands dirty, you can load the runtime yourself in a C/C++ program and then your code from there |
thank you for your answer but I don't want to inject anything to the target process , all I want to execute functions on the target process from c# winform program for 64 bit .
|
Normally this sort of use case would fall under Reloaded.Injector, specifically this function but I'd need to add an overload for calling functions by arbitrary address. I'll probably add one next time I do maintenance. |
Thanks for your quick reply I got it , I will also wait for your release .
|
Sure that would work. |
I have read the link
But I dont understand how to target c++ x64 Game Process ? to execute functions or to add hooks...
I've been using the Memorysharp for a long time but no support for x64 process ...
for example :
I need any simple example for something like that if possible .
The text was updated successfully, but these errors were encountered: