| View previous topic :: View next topic |
| Author |
Message |
mindoff Advanced Cheater
Reputation: 0
Joined: 12 Jun 2016 Posts: 96
|
Posted: Mon Aug 05, 2019 7:24 pm Post subject: How to Enumerate DLL's and Symbols by Name not Address |
|
|
Need to find specify module and lost at the list by address.
Any way to sort by string not number?
|
|
| Back to top |
|
 |
FreeER Grandmaster Cheater Supreme
Reputation: 53
Joined: 09 Aug 2013 Posts: 1091
|
Posted: Mon Aug 05, 2019 8:12 pm Post subject: |
|
|
If it's a specific one maybe use lua's enumModules function?
| Code: | --https://gist.github.com/FGRibreau/3790217
function filter(t, filterIter)
local out = {}
for k, v in pairs(t) do
if filterIter(v, k, t) then out[#out+1] = v end
end
return out
end
function findModule(name)
return filter(enumModules(), function(v,k,t) return v.Name == name end)
end
-- assuming you want to get the address in hex
return ('0x%X'):format(findModule(process)[1].Address) |
or just open the memory viewer and use goto "nameofmodule" then open the goto dialog again and it should prefill it with the current address
_________________
|
|
| Back to top |
|
 |
mindoff Advanced Cheater
Reputation: 0
Joined: 12 Jun 2016 Posts: 96
|
Posted: Tue Aug 06, 2019 2:08 am Post subject: |
|
|
Thnak you,I'm stupid again.
There is a hidden Ctrl + F which can use search for the name.
That will do
|
|
| Back to top |
|
 |
|