Users Pricing

forum

Home Forums Get a numeric value or string from an address of an attached process – MindStick

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

Pravesh Singh 2459 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.


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md