def handleHookInstShowCPU(self):
if self.hookedInstruction() == False:
return
address = ScreenEA()
if self.cpuContextViews.hasView(address) == False:
entry = self.idbHookMap[address]
newView = CPUContextView(self, entry.hook.id, entry.hook.mnemonic)
self.cpuContextViews.addView("CPU Context", newView)
self.cpuContextViews.setContent(entry.hook.id, {"arch":entry.arch, "context":entry.cpu_ctx})
self.cpuContextViews.showView(address)
评论列表
文章目录