| 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
|
|
|
| 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
|
|
|
|
|
| local DataDirPosition=original.Position
|
| local ImageSectionHeaderPosition=OptHeaderStart+OptHeaderSize
|
|
|
|
|
| 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)
|
|
|
| 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)
|
|
|
|
|
| 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
|
| end
|
| end
|
| end
|
| end
|
|
|
| oldpos=oldpos+Size
|
| until original.Position>=RelocationTablePosition+RelocationTableSize
|
| else
|
|
|
| end
|
|
|
|
|
|
|
| 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
|
|
|
|
|
|
|
| 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)
|
| if (result==false) then
|
|
|
| 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
|
|
|
|
|
| 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)
|
| 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
|
|
|
|
|
|
|
|
|
| local pform=createForm(false)
|
| pform.position='poScreenCenter'
|
| pform.ClientWidth = DPIMultiplier*600
|
|
|
| local psprogress = createProgressBar(pform)
|
|
|
|
|
| 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()
|
|
|
|
|
| if scanThread then
|
|
|
| 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)
|
|
|
| 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)
|
|
|
| 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)
|
| if r then
|
|
|
| for i=1, #patches do
|
|
|
|
|
|
|
| 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()
|
|
|
|
|
|
|
|
|
| rform.OnClose=function(f)
|
|
|
| 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
|
|
|
|
|
|
|
| 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
|
| end
|
| else
|
| synchronize(function()
|
| messageDialog("Patch scan error:"..emsg)
|
| end)
|
| end
|
| end
|
|
|
|
|
| if not t.Terminated then
|
| synchronize(function(t)
|
| if pform then
|
| pform.close()
|
| end
|
| end,t)
|
| end
|
|
|
|
|
| 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) |