Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/21/2024 in all areas

  1. Then it's reasonable to just search either first or second value and filter only desired results that have other value at needed offset. Something like the following: local firstValue = 210.0 local secondValue = 30.0 local offset = 12 gg.clearResults() gg.searchNumber(firstValue, gg.TYPE_DOUBLE) local firstValues = gg.getResults(gg.getResultsCount()) local secondValues = {} for i, v in ipairs(firstValues) do secondValues[i] = {address = v.address + offset, flags = gg.TYPE_DOUBLE} end secondValues = gg.getValues(secondValues) local targetResults = {} local index = 1 for i = 1, #firstValues do if secondValues[i].value == secondValue then targetResults[index] = firstValues[i] targetResults[index + 1] = secondValues[i] index = index + 2 end end gg.loadResults(targetResults)
    1 point
  2. Armv8 Search C80E42B8r;081540FDr::4505 Edit 28008052r;E803679Er
    1 point
  3. View File Get Registration Offsets (Code+Metadata) Simple script will get the registration offsets for code and metadata. Allows you to copy offsets to your clipboard Submitter APEXggV2 Submitted 04/15/2024 Category Tools  
    1 point
  4. How can i get class name by value searched? I used script but it only have offset, not have classname and i cant find this offset in dump file.
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.