| View previous topic :: View next topic |
| Author |
Message |
spectrum Expert Cheater
Reputation: 0
Joined: 27 Mar 2007 Posts: 143
|
Posted: Mon Jan 28, 2008 11:48 am Post subject: Reading memory with high level languages |
|
|
such as visual basic or delphi.
is it really that hard? what are the commands that we need to know?
is de .dll system usefull in this case? if so, then how do i do it in c++?
sorry for being so newbish =P |
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Mon Jan 28, 2008 12:14 pm Post subject: |
|
|
If it can call the API, it can read memory.
MSDN ReadProcessMemory. Personally I think it's probably quicker and easier in something like C as opposed to VB because you can just call it without any fuss before hand. |
|
| Back to top |
|
 |
spectrum Expert Cheater
Reputation: 0
Joined: 27 Mar 2007 Posts: 143
|
Posted: Mon Jan 28, 2008 2:17 pm Post subject: |
|
|
| so, can i call it with c++ alter it with c++ but always this in a visual gui? |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Mon Jan 28, 2008 3:06 pm Post subject: |
|
|
| spectrum wrote: | | so, can i call it with c++ alter it with c++ but always this in a visual gui? |
Yes, you can write the dll to modify the memory in C/C++ and call the functions in VB. Be sure to export the functions using __stdcall or VB will not be able to read them properly. Then just add the declares to your VB project and call them with the proper params. _________________
- Retired. |
|
| Back to top |
|
 |
spectrum Expert Cheater
Reputation: 0
Joined: 27 Mar 2007 Posts: 143
|
Posted: Mon Jan 28, 2008 10:16 pm Post subject: |
|
|
| and sorry i have another question, i havent found a GOOD tutorial about alterng/reading memory with c++, can someone link me to where they learned? |
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Mon Jan 28, 2008 10:33 pm Post subject: |
|
|
WriteProcessMemory / ReadProcessMemory
If you don't understand how to use it, learn more. |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Mon Jan 28, 2008 10:45 pm Post subject: |
|
|
| spectrum wrote: | | and sorry i have another question, i havent found a GOOD tutorial about alterng/reading memory with c++, can someone link me to where they learned? |
Look up the APIs slovach gave you on the MSDN. The MSDN is a very helpful resource for API. If you don't understand how to use the API, you should read up more on the basics of C++ and syntax. The MSDN will give you the info you need to know. _________________
- Retired. |
|
| Back to top |
|
 |
|