forum

Home / DeveloperSection / Forums / Get a numeric value or string from an address of an attached process

Get a numeric value or string from an address of an attached process

Pravesh Singh 2084 18-Dec-2013

I am building a small tool which allows me to edit in real time the memory of an attached process.

so the tool has 1 numericUpDown and 2 buttons, a get and a set.

my set code is as followed

private void sendButton_Click(object sender, EventArgs e)
{
    byte[] stat =BitConverter.GetBytes(Convert.ToInt32(statNumericUpDown.Value.ToString()));
    SetMemory(0x0175914a, stat);
}

where I am stuck is reversing that process so I can get numbers from my attached process and send them to my numericUpDown.

I hope I explained well enough and any help would be much appreciated.


c# c# 
Updated on 18-Dec-2013

Can you answer this question?


Answer

1 Answers

Liked By