File size: 17,695 Bytes
8739cbb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 | local DPIMultiplier=(getScreenDPI()/96)
if getTranslationFolder()~='' then
loadPOFile(getTranslationFolder()..'patchscan.po')
end
local IMAGE_SCN_CNT_CODE=0x20
local IMAGE_SCN_MEM_EXECUTE=0x20000000
function byteTableToHexString(bt)
local i
local r=''
if bt then
for i=1,#bt do
r=r..string.format("%.2x ",bt[i])
end
end
return r
end
function scanModuleForPatches(modulepath, loadedModuleBase, thread)
local original=createMemoryStream()
local r,e=original.loadFromFileNoError(modulepath)
if not r then
original.destroy()
return false,e
end
original.Position=0
if (byteTableToString(original.read(2))~='MZ') then
original.destroy()
return nil,translate('Not a valid executable')
end
original.Position=60;
local lfanew=original.readDword();
original.Position=lfanew;
if (byteTableToString(original.read(2))~='PE') then
original.destroy()
return nil,translate('Not a valid windows executable')
end
original.position=original.Position+2
local Machine=original.readWord()
local SectionCount=original.readWord()
original.Position=original.Position+12
local OptHeaderSize=original.readWord()
original.position=original.Position+2
local OptHeaderStart=original.Position
local Magic=original.readWord()
local MajorLinkerVersion=original.readByte()
local MinorLinkerVersion=original.readByte()
local SizeOfCode=original.readDword()
original.Position=original.Position+8
local EntryPoint=original.readDword()
local BaseOfCode=original.readDword()
local BaseOfData
local ImageBase
--scan the reloc table
if Machine==0x8664 then
BaseOfData=nil
ImageBase=original.readQword()
original.Position=original.Position+4+4+2+2+2+2+2+2+4+4+4+4+2+2+8+8+8+8
else
BaseOfData=original.readDword()
ImageBase=original.readDword()
original.Position=original.Position+4+4+2+2+2+2+2+2+4+4+4+4+2+2+4+4+4+4
end
local RelocDistance=loadedModuleBase-ImageBase;
local LoaderFlags=original.readDword()
local RVACount=original.readDword()
if RVACount~=16 then
original.destroy()
return nil,translate('This type of module is currently not supported')
end
--DataDirectory follows
local DataDirPosition=original.Position
local ImageSectionHeaderPosition=OptHeaderStart+OptHeaderSize
--parse the sections so VirtualToFile can function
local sections={}
original.Position=ImageSectionHeaderPosition
local i
for i=1,SectionCount do
if thread and thread.Terminated then
original.destroy()
return nil,'Terminated'
end
sections[i]={}
sections[i].name=byteTableToString(original.read(8))
sections[i].misc=original.readDword()
sections[i].virtualAddress=original.readDword()
sections[i].sizeOfRawData=original.readDword()
sections[i].PointerToRawData=original.readDword()
original.position=original.position+12;
sections[i].Characteristics=original.readDword()
sections[i].Executable=sections[i].Characteristics & IMAGE_SCN_CNT_CODE == IMAGE_SCN_CNT_CODE
end
local function VirtualToFile(VA)
--scan the address in the sections list
local i
local offset
for i=1,#sections do
if (VA>=sections[i].virtualAddress) and (VA<sections[i].virtualAddress+sections[i].sizeOfRawData) then
return sections[i].PointerToRawData+(VA-sections[i].virtualAddress)
end
end
end
local ImportTableRVAInfo=DataDirPosition+1*8
local RelocationTableRVAInfo=DataDirPosition+5*8
original.Position=ImportTableRVAInfo
local ImportTableAddress=original.readDword()
local ImportTableSize=original.readDword()
local ImportTablePosition=VirtualToFile(ImportTableAddress)
original.Position=RelocationTableRVAInfo
local RelocationTableAddress=original.readDword()
local RelocationTableSize=original.readDword()
local RelocationTablePosition=VirtualToFile(RelocationTableAddress)
local relocs={}
if RelocationTablePosition then
original.position=RelocationTablePosition
repeat
if thread and thread.Terminated then
original.destroy()
return nil,'Terminated'
end
local oldpos=original.position
local VABase=original.readDword()
local Size=original.readDword()
local Entries=math.floor((Size - 8) / 2)
--print(string.format("VABase=%x (Size=%d Entries=%d)", VABase, Size, Entries))
local i
for i=1,Entries do
if thread and thread.Terminated then
original.destroy()
return nil,'Terminated'
end
local relinfo=original.readWord()
local reltype=relinfo >> 12
local VA=VABase+(relinfo & 0xfff);
if (reltype == 3) then
writeIntegerLocal(original.Memory+VirtualToFile(VA),readIntegerLocal(original.Memory+VirtualToFile(VA))+RelocDistance)
else
if (reltype == 10) then
writeQwordLocal(original.Memory+VirtualToFile(VA),readQwordLocal(original.Memory+VirtualToFile(VA))+RelocDistance)
else
if reltype ~= 0 then
relocs[VA]=true --just mark it as a "I don't know"
end
end
end
end
oldpos=oldpos+Size
until original.Position>=RelocationTablePosition+RelocationTableSize
else
end
--all information has been gathered. Now scan the code sections and compare against the target process
--print("Scanning for differences...")
local results={}
for i=1 , #sections do
if thread and thread.Terminated then return nil,'Terminated' end
if sections[i].Executable then
local VA=loadedModuleBase+sections[i].virtualAddress
local FA=original.Memory+sections[i].PointerToRawData
local bytesLeft=sections[i].sizeOfRawData
local bytesOK
local result=false
--print(string.format("Checking section %s ranging from %x to %x", sections[i].name, VA,VA+sections[i].sizeOfRawData))
while (result==false) and (bytesLeft>0) do
if thread and thread.Terminated then
original.destroy()
return nil,'Terminated'
end
result,bytesOK=compareMemory(VA,FA,bytesLeft,1) --VA in target, FA in CE, so method 1
if (result==false) then
--local addressString=getNameFromAddress(VA+bytesOK)
local entrynr=#results+1
if (entrynr==1) or ((results[entrynr-1].Address+8)~=(VA+bytesOK)) then
results[entrynr]={}
results[entrynr].Address=VA+bytesOK
results[entrynr].FileAddress=FA+bytesOK
results[entrynr].FileOffset=sections[i].PointerToRawData+bytesOK
results[entrynr].Size=8
else
results[entrynr-1].Size=results[entrynr-1].Size+8
end
VA=VA+bytesOK+8
FA=FA+bytesOK+8
bytesLeft=bytesLeft-bytesOK-8
end
if result==nil then
original.destroy()
return nil, translate("Compare error. ")
end
end
end
end
--get the bytes
for i=1,#results do
if thread and thread.Terminated then
original.destroy()
return nil,'Terminated'
end
results[i].OriginalBytes=readBytesLocal(results[i].FileAddress, results[i].Size, true) --original.read(results[i].Size)
results[i].PatchedBytes=readBytes(results[i].Address, results[i].Size, true)
results[i].ModulePath=modulepath
end
original.destroy()
return results
end
function startPatchScan()
if getOpenedProcessID()==0 then
openProcess(getCheatEngineProcessID())
end
local sl=createStringlist()
local l=enumModules()
for i=1,#l do
sl.add(l[i].Name)
end
local msf=createForm(false)
msf.Caption=translate('Module List')
local label=createLabel(msf)
label.Align='alTop'
label.WordWrap=false
label.Caption=translate('Select the modules to scan for patches. Hold shift/ctrl to select multiple modules')
local btnPanel=createPanel(msf)
btnPanel.ChildSizing.ControlsPerLine=2
btnPanel.ChildSizing.Layout='cclLeftToRightThenTopToBottom'
btnPanel.ChildSizing.TopBottomSpacing=5
btnPanel.ChildSizing.EnlargeHorizontal='crsHomogenousSpaceResize'
local btnOk=createButton(btnPanel)
local btnCancel=createButton(btnPanel)
btnOk.Caption=translate(' OK ')
btnOk.Default=true
btnOk.ModalResult=mrOK
btnCancel.Caption=translate('Cancel')
btnCancel.Cancel=true
btnCancel.ModalResult=mrCancel
btnPanel.Align='alBottom'
btnPanel.AutoSize=true
btnPanel.BevelOuter='bvNone'
local listbox=createListBox(msf)
listbox.Items=sl
listbox.MultiSelect=true
listbox.Align='alClient'
listbox.OnDblClick=function(l) msf.ModalResult=mrOK end
msf.BorderStyle='bsSizeable'
msf.Position='poScreenCenter'
msf.autosize=true
msf.OnShow=function(f)
f.autosize=false
msf.ClientHeight=msf.Canvas.getTextHeight('XGgxj')*10
end
if msf.showModal()==mrOK then
local allpatches={}
local i
--todo: use a thread to do the scan
--progressbar + currently scanned module + cancel button
local pform=createForm(false)
pform.position='poScreenCenter'
pform.ClientWidth = DPIMultiplier*600
local psprogress = createProgressBar(pform)
--psprogress.ClientWidth = 600
--psprogress.ClientHeight = 30
psprogress.Max = listbox.Items.Count-1
psprogress.Min = 0
psprogress.Position = 1
psprogress.Style = "pbstMarquee"
pform.AutoSize=true
pform.show()
local scanThread=nil
pform.OnClose=function()
--print('done')
--terminate the scanner if needed
if scanThread then
--don't wait , it's a free on terminate thread anyhow
scanThread.terminate()
scanThread=nil
end
local rform=createForm(false)
local lv=createListView(rform)
rform.Caption=translate('Patch list')
lv.Align='alClient'
lv.ViewStyle='vsReport'
lv.ReadOnly=true
lv.MultiSelect=true
lv.RowSelect=true
lv.HideSelection=false
lv.Name="lvResults"
local caddress=lv.Columns.add()
local coriginal=lv.Columns.add()
local cpatched=lv.Columns.add()
caddress.Width=rform.Canvas.GetTextWidth('XXXXXXXXXXXXXXXXXXXXXXXX')
caddress.Caption=translate('Address')
coriginal.Width=rform.Canvas.GetTextWidth('XX XX XX XX XX XX XX XX XX')
coriginal.Caption=translate('Original')
cpatched.Width=coriginal.Width
cpatched.Caption=translate('Patched')
for i=1,#allpatches do
local li=lv.Items.add()
local s=allpatches[i]
li.Caption=getNameFromAddress(s.Address)
li.SubItems.Add(byteTableToHexString(s.OriginalBytes))
li.SubItems.Add(byteTableToHexString(s.PatchedBytes))
li.Data=createRef(s)
end
lv.OnDblClick=function(s)
--_G.dbglv=lv
if lv.Selected then
local ref=getRef(lv.Selected.Data)
getMemoryViewForm().DisassemblerView.SelectedAddress=ref.Address
end
end
local pm=createPopupMenu(rform)
local miRestore=createMenuItem(pm)
local miPatch=createMenuItem(pm)
local miSeperator=createMenuItem(pm)
local miPatchExe=createMenuItem(pm)
pm.Images=getMemoryViewForm().mvImageList
miRestore.Caption=translate('Restore with original')
miRestore.ImageIndex=44
miPatch.Caption=translate('Reapply patch')
miPatch.ImageIndex=49
miSeperator.Caption='-'
miPatchExe.Caption=translate('Create patched exe from selected entries')
miPatchExe.ImageIndex=49
pm.Items.add(miRestore)
pm.Items.add(miPatch)
pm.Items.add(miSeperator)
pm.Items.add(miPatchExe)
miRestore.OnClick=function(s)
local i
for i=0, lv.Items.Count-1 do
if lv.Items[i].Selected then
local ref=getRef(lv.Items[i].Data)
writeBytes(ref.Address, ref.OriginalBytes)
end
end
end
miPatch.OnClick=function(s)
local i
for i=0, lv.Items.Count-1 do
if lv.Items[i].Selected then
local ref=getRef(lv.Items[i].Data)
writeBytes(ref.Address, ref.PatchedBytes)
end
end
end
miPatchExe.OnClick=function(s)
--check if all the same module
if not lv.Selected then
messageDialog('Please select at least one entry')
return
end
local i
local ModulePath=nil
patches={}
for i=0, lv.Items.Count-1 do
if lv.Items[i].Selected then
local ref=getRef(lv.Items[i].Data)
local mp=ref.ModulePath
if ModulePath==nil then
ModulePath=ref.ModulePath
else
if ModulePath~=ref.ModulePath then
messageDialog('You can only select the same type of modules when making a patched exe')
return
end
end
table.insert(patches, ref)
end
end
local sd=createSaveDialog(rform)
sd.DefaultExt='.EXE'
sd.Filter='Executable Files (*.EXE; *.DLL)|*.EXE;*.DLL'
sd.Options='[ofOverwritePrompt]'
sd.FileName=extractFileNameWithoutExt(ModulePath)..'_Patched'..extractFileExt(ModulePath)
sd.InitialDir=extractFilePath(ModulePath)
if sd.execute() then
local filename=sd.FileName
local ms=createMemoryStream()
local r,e=ms.loadFromFileNoError(ModulePath) --load the original file
if r then
--apply the patches
for i=1, #patches do
--printf("%d: Writing to patch offset %d", i, patches[i].FileOffset)
--only apply the changed bytes (in case of applied relocations)
local j
for j=1,#patches[i].PatchedBytes do
if patches[i].PatchedBytes[j]~=patches[i].OriginalBytes[j] then
writeBytesLocal(ms.Memory+patches[i].FileOffset+j-1, patches[i].PatchedBytes[j])
end
end
end
r,e=ms.saveToFileNoError(filename)
if r then
messageDialog(filename..' has been created')
else
messageDialog(e)
end
else
messageDialog(e)
end
ms.destroy()
end
sd.destroy()
end
lv.PopupMenu=pm
rform.PopupMode='pmNone'
rform.position='poScreenCenter'
rform.ClientWidth=caddress.Width+coriginal.Width+cpatched.Width
rform.ClientHeight=MainForm.Canvas.getTextHeight('XGgxj')*10
rform.BorderStyle='bsSizeable'
rform.show()
processMessages()
-- print('done')
rform.OnClose=function(f)
-- print('rform closed')
local i
for i=0,lv.Items.Count-1 do
local ref=lv.Items[i].Data
destroyRef(ref)
end
rform=nil
msf.destroy()
msf=nil
return caFree
end
pform=nil
return caFree
end
--spawn the scanner thread
local scannedmodules={}
local i
for i=0,listbox.Items.Count-1 do
if listbox.Selected[i] then
table.insert(scannedmodules, l[i+1])
end
end
_G.debug1=scannedmodules
_G.debug2=allpatches
scanThread=createThread(function(t)
local i
for i=1,#scannedmodules do
local modulepatches,emsg=scanModuleForPatches(scannedmodules[i].PathToFile, scannedmodules[i].Address, t)
if modulepatches then
local j
for j=1,#modulepatches do
local c=#allpatches+1
allpatches[c]=modulepatches[j]
allpatches[c].Modulename=l[i+1].Name --add the modulename (scanModuleForPatches doesn't add that)
end
else
synchronize(function()
messageDialog("Patch scan error:"..emsg)
end)
end
end
--done
if not t.Terminated then
synchronize(function(t)
if pform then
pform.close() --scanThread=nil so it won't free this thread
end
end,t)
end
--got to the end. This means the form has been closed and no longer needed. It can be freed now
end)
else
msf.destroy()
msf=nil
end
end
local mv=getMemoryViewForm()
local mi=createMenuItem(mv.Menu)
mi.Caption=translate('Scan for patches')
mi.ImageIndex=10
mi.Shortcut='Ctrl+Shift+P'
mi.OnClick=startPatchScan
mv.Extra1.insert(mv.DissectPEheaders1.MenuIndex+1, mi) |