Tagged Questions
0
votes
1answer
54 views
How to find the function called on button click
Using programs like Cheat Engine and OllyDbg I'm editing the memory of a program as it's running.
I need to find the address of a function that is executed when the user clicks a certain button.
Are ...
4
votes
3answers
989 views
Loading MachineCode From File Into Memory and Executing in C — mprotect Failing
Hi I'm trying to load raw machine code into memory and run it from within a C program, right now when the program executes it breaks when trying to run mprotect on the memory to make it executable. ...