(self)
| 8 | |
| 9 | class Commons: |
| 10 | def __init__(self): |
| 11 | self.wechatutils_instance = WechatUtils() |
| 12 | self.device = frida.get_local_device() |
| 13 | self.process = self.device.enumerate_processes() |
| 14 | self.version_list = [] |
| 15 | self.configs_path = "" |
| 16 | self.active_sessions = [] |
| 17 | |
| 18 | def onMessage(self, message, data): |
| 19 | if message['type'] == 'send': |
nothing calls this directly
no test coverage detected