Thread: Dynamic memory

Results 1 to 3 of 3
  1. #1
    Lynie's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    2

    Dynamic memory

    How do I find memory addresses that changes everytime you startup an application?(for WriteProcessMemory)

    Thanks in advance
    Last edited by Lynie; 12-29-2008 at 09:29 AM.

  2. #2
    noobhaxor47's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    3
    My Mood
    Relaxed
    Quote Originally Posted by Lynie View Post
    How do I find memory addresses that changes everytime you startup an application?(for WriteProcessMemory)

    Thanks in advance
    Pointerscan... Try to find the base pointer for something

    Find out what writes to the selected address, and since the program knows the offset, the place it writes the information to will always be the thing that you find there.

    Then, simply mimic what you see in the program in your own program.

    For example, if you see MOV [ESI+A4],EAX You should find an address that holds the value of ESI, and then read from it, to find the current ESI value, and then add A4 to it to find the address you were first looking for.

  3. The Following User Says Thank You to noobhaxor47 For This Useful Post:

    Lynie (12-30-2008)

  4. #3
    Lynie's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    2
    Thanks really appriciated

Similar Threads

  1. [Help] Dynamic memory w/ Arrays?
    By ruisu in forum C++/C Programming
    Replies: 3
    Last Post: 05-24-2011, 06:26 AM
  2. [Help] Working with dynamic memory
    By yodaliketaco in forum C++/C Programming
    Replies: 6
    Last Post: 06-16-2010, 09:54 PM
  3. Dynamic IP?
    By aldregon in forum General Game Hacking
    Replies: 2
    Last Post: 04-10-2006, 07:31 AM
  4. Replies: 3
    Last Post: 01-04-2006, 09:52 PM
  5. Direct Memory Access (DMA) to Static Memory Addresses
    By Dave84311 in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 12-31-2005, 08:18 PM

Tags for this Thread