How can I access procss?

  • Thread starter Thread starter ofiras
  • Start date Start date
O

ofiras

Hii everyone,
I tried to find how can I access process, but all I could find is how
can I get processes running, get info about them, and kill them. I
wodered how hackers access the dump of process and change it by
entering ASM to them. Someone know how to do it?
Please help,
Ofir.
 
ofiras said:
Hii everyone,
I tried to find how can I access process, but all I could find is how
can I get processes running, get info about them, and kill them. I
wodered how hackers access the dump of process and change it by
entering ASM to them. Someone know how to do it?
Please help,
Ofir.


And your C# question is?

Willy.
 
You can access a process using the Process class. However, it will not
allow you to manipulate the memory of the process. You will have to make
calls through the P/Invoke layer in order to manupulate memory in another
process.
 
Back
Top