def syncReplacedFuncs(self):
if self.clientSocket is None:
fl_log("FridaLink: Frida not connected\n");
return
for key in self.funcReplaceMap:
entry = self.funcReplaceMap[key]
outJSON = json.dumps({
"req_id": kFridaLink_SetReplaceRequest,
"data": entry.genSetRequest()
})
if entry.moduleImport == False:
SetColor(entry.hook.id, CIC_ITEM, kIDAViewColor_ReplacedFunc)
self.clientSocket.sendto(outJSON, self.clientAddress)
refresh_idaview_anyway()
评论列表
文章目录