()
| 520 | def _init_frida_device(): |
| 521 | global frida_device |
| 522 | def getRemoteDriver(): |
| 523 | text = io.open(".hooker_driver",'r',encoding= 'utf8').read() |
| 524 | if not text: |
| 525 | return None |
| 526 | searchResult = re.search(r'\d+\.\d+\.\d+\.\d+:\d+', text) |
| 527 | if searchResult: |
| 528 | return searchResult.group() |
| 529 | return None |
| 530 | if frida_device: |
| 531 | return |
| 532 | remoteDriver = getRemoteDriver() #ip:port |
no outgoing calls
no test coverage detected