View previous topic :: View next topic |
Author |
Message |
catfood Cheater
Reputation: 0
Joined: 22 Jun 2015 Posts: 34
|
Posted: Mon Jun 22, 2015 11:39 am Post subject: is there a way to display all static addresses at once? |
|
|
So I'm curious if there is a way to just do one big scan of something, and display every static address? not just addresses regarding a specific scan, but rather show every static address, and then i could scroll through them and cherry pick things that look interesting.
Is there a way to do such a scan?
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Mon Jun 22, 2015 11:55 am Post subject: |
|
|
Not sure what you hope to accomplish, but simply set the scan start and stop options.
Can use the following Lua to identify the range for a particular module.
Code: | local module = "calc.exe"
local start = getAddress(module)
local stop = start + getModuleSize(module)
print(string.format("%s is from %X to %X",module,start,stop)) |
You can also use the memory viewer to go to address and enter the module name as the address.
Then scroll through that mess to your heart's content.
|
|
Back to top |
|
 |
aikoncwd Grandmaster Cheater
Reputation: 23
Joined: 21 Dec 2012 Posts: 591 Location: Spain (Barcelona)
|
Posted: Mon Jun 22, 2015 12:51 pm Post subject: Re: is there a way to display all static addresses at once? |
|
|
catfood wrote: | So I'm curious if there is a way to just do one big scan of something, and display every static address? not just addresses regarding a specific scan, but rather show every static address, and then i could scroll through them and cherry pick things that look interesting.
Is there a way to do such a scan? |
Open Memory View and press menu: Tools / Find static addresses
but why do you need this?
_________________
Hey Hitler
Test here your skill with CheatEngine, I coded a challenge for you. Try to beat it!
HERE |
|
Back to top |
|
 |
|