feat: hyper decryption device

This commit is contained in:
WorldObservationLog
2024-05-22 13:46:31 +08:00
parent 356a5b2478
commit c84c3818e8
6 changed files with 70 additions and 9 deletions

View File

@@ -67,7 +67,10 @@ class NewInteractiveShell:
if not self.storefront_device_mapping.get(auth_params.storefront.lower()):
self.storefront_device_mapping.update({auth_params.storefront.lower(): []})
self.storefront_device_mapping[auth_params.storefront.lower()].append(device)
device.start_inject_frida(device_info.agentPort)
if device_info.hyperDecrypt:
device.hyper_decrypt(list(range(device_info.agentPort, device_info.agentPort + device_info.hyperDecryptNum)))
else:
device.start_inject_frida(device_info.agentPort)
async def command_parser(self, cmd: str):
if not cmd.strip():