Tagged Questions
The readprocessmemory tag has no wiki summary.
9
votes
7answers
313 views
How do you read directly from physical memory?
In C or C++ (windows), how do you read RAM by giving a physical (not virtual) address?
That means without going trough virtual memory system (mmu tables), and being specific to one process.
I already ...
5
votes
5answers
2k views
How to write a Perl, Python, or Ruby program to change the memory of another process on Windows?
I wonder if Perl, Python, or Ruby can be used to write a program so that it will look for 0x12345678 in the memory of another process (probably the heap, for both data and code data) and then if it is ...
3
votes
2answers
2k views
Fast way to search for particular string (or byte array) in another process memory in C#?
Please post a working source code example (or link) of how to search string in another process memory and getting offset of match if found. The similar way its done in game cheating utils which search ...
2
votes
1answer
191 views
Get an image of process memory
My goal is to create a method that will take a process handle and return an array of bytes representing that process's memory. Here's what I have:
[DllImport("Kernel32.dll")]
public static ...
2
votes
2answers
346 views
2
votes
1answer
412 views
In Ruby, how to I read memory values from an external process?
So all I simply want to do is make a Ruby program that reads some values from known memory address in another process's virtual memory. Through my research and basic knowledge of hex editing a ...
1
vote
1answer
52 views
Checking how much memory is readable in other process
Is there a way to know how much memory I can read from another process using ReadProcessMemory?
If I try to read too much memory from a specific address, it will return error code 299, and will read 0 ...
1
vote
1answer
212 views
callstack and ReadProcessMemory
I'm trying to read the return address of the method but of another memory.
so I'm getting the frame pointer, and read the value of the return value.
As far as I understand I'm supposed to get a value ...
1
vote
4answers
1k views
Python Ctypes Read/WriteProcessMemory() - Error 5/998 Help!
Please don't get scared but the following code, if you are familiar with ctypes or C it should be easy to read.
I have been trying to get my ReadProcessMemory() and WriteProcessMemory() functions to ...
1
vote
1answer
1k views
How to get string from the output of ReadProcessMemory
This is a snippet of my code.
Declare Function ReadProcessMemory Lib "kernel32" _
(ByVal hProcess As Long, _
ByVal lpBaseAddress As Long, ...
0
votes
1answer
208 views
C++ ReadProcessMemory into byte array
I'm attempting to use ReadProcessMemory to read a dynamic amount of bytes into an array and then return it. I simply can't get it to work properly. My current code is...
byte ...
0
votes
1answer
157 views
ReadProcessMemory Always fails with GLE: 299
Could someone please help me, I do not know why the ReadProcessMemory function fails and GetLastError = 299. Here is my code, I can't see that im doing anything wrong.
if(ReadProcessMemory(hProcess, ...
0
votes
1answer
166 views
What's the fastest way to ReadProcessMemory?
I'm trying to search for all instances of a null-terminated string the memory of a process. I enumed all the alloced memory areas with VirtualQueryEx, then I read them with ReadProcessMemory to a byte ...
0
votes
0answers
113 views
Search and Change String in Process Memory
I searched a lot and found several complex codes but got confused, Im looking for the shortest way and the fastest to change a specific string in process memory, searching for its address and then ...
0
votes
1answer
51 views
What does the beginning of process memory mean
I am trying to learn more about how to read process memory. So I opened the "entire memory" of the Firefox process in WinHex and saw the following hex values starting at offset 10000.
00 00 00 00 00 ...
0
votes
2answers
419 views
convert memory address to int
I am trying to read memory addresses from an executable running in memory, and then use those memory addresses to walk the PE structure.
I am having trouble because I'm unsure how to convert a 4 byte ...
0
votes
1answer
100 views
Store multiple values at the same memory address. Delimiter?
I'm doing some tinkering with Read- and WriteProcessMemory and an old platformer game I found laying around. Whenever the player enters a new level, enemies are created and the health points, ...
0
votes
1answer
124 views
How to cause a GridView to allocate its memory as XML
TL;DR:
When browsing a program's DataGridView control's properties using ManagedSpy it causes that program to allocate its DataGridView data as XML in its memory.
How can I cause that same thing to ...
0
votes
2answers
732 views
FOR JNI experts, How Would I use JNI to call ReadProcessMemory? (Read memory from windows applications)
I would like to know if theres a possibility to call C++ methods from java.
Pretty much I want to be able to read memory processes from java.
I know c++, but I Would like to use a higher lvl like ...
0
votes
2answers
236 views
ReadProcessMemory returns a larger buffer (C, windows)
I'm trying to read a process memory using the following code:
void readdata(HANDLE phandle, LPCVOID paddress, SIZE_T datasize)
{
char *buff;
SIZE_T dataread;
BOOL b = FALSE;
buff = ...
0
votes
3answers
2k views
ReadProcessMemory keeps returning 0
I'm currently developing a little hobby project to display health information in a game on my G15 keyboard through VB.NET.
When I use ReadProcessMemory via an API call, it keeps returning zero. The ...