Tagged Questions
The memory-editing tag has no wiki summary.
57
votes
10answers
3k views
How can I find the data structure that represents mine layout of Minesweeper in memory?
I'm trying to learn about reverse engineering, using Minesweeper as a sample application. I've found this MSDN article on a simple WinDbg command that reveals all the mines but it is old, is not ...
7
votes
1answer
310 views
How does GameShark / Action Replay work on modern consoles?
It's quite difficult to find information about this on the internet, since the magical words "GameShark", "Action Replay", "memory editor" and "memory trainer" trigger lots of BS, so I thought I ...
1
vote
1answer
41 views
How to find the starting address of an application for memory editing a process?
I want to know how to find the valid addresses of an application from beginning to end because I want to know how to memory edit an application for example Notepad. Do I have to decompile the ...
1
vote
0answers
25 views
Memory editing howto create more storage
I'm working on a problem using the Cheat Engine software. I have located an array of 12 bytes in memory that I would like to change. The problem is that the array holds 6 double byte unicode ...
1
vote
1answer
78 views
Does anyone know where I can find a memory editing user control for .net?
I am developing a small application which lists the contents from files of a given format. The file format acts as a template for describing binary data (think binary xml). This allows the clients ...
0
votes
4answers
440 views
How can I write on another process memory?
I have an address that I would like to modify. I have the process. I have the new value. So now what?
// My Process
var p = Process.GetProcessesByName("ePSXe").FirstOrDefault();
// Address
var addr ...
0
votes
1answer
579 views
Update DataBase on clicking in button, after editing gridview (not automatically saving in DB, but after confirming on any event) within using transactions
0 vote down star
I am using GridView in asp .net and editing data with edit command field property (as we know after updating the edited row, we automatically update the database), and I want to ...