def handleDebugContinue(self):
if self.clientSocket is None:
return
if self.debugBreakId is None:
return
outJSON = json.dumps({
"req_id": kFridaLink_DebugContinue,
})
self.clientSocket.sendto(outJSON, self.clientAddress)
if self.debugBreakId in self.idbHookMap:
SetColor(self.debugBreakId, CIC_ITEM, kIDAViewColor_HookedInst)
else:
SetColor(self.debugBreakId, CIC_ITEM, kIDAViewColor_Reset)
refresh_idaview_anyway()
self.debugBreakId = None
评论列表
文章目录