-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Can I call a function from Exe in the injected function of the dll ? #319
Comments
This is most likely crashing because of ASLR. You should be able to call the function (assuming your signature is correct) once you find the address of the function you want (most likely doing |
This is my dll program
|
maybe its the wrong calling convention you're using in the source code? set the compiler to output assembly for your source file and compare how it looks vs. the way its called in the original assembly code |
I am new to learn the hook, I have a question
For example I know the address
//when hook Successfully,the exe crash in this call, how can I call the exe's function
The text was updated successfully, but these errors were encountered: