referer frida issue

This commit is contained in:
hyugogirubato 2024-04-06 15:29:15 +02:00
parent 4942c95ee3
commit 73dd21db8d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class Cdm:
""" """
Lists processes running on the device, returning a mapping of process names to PIDs. Lists processes running on the device, returning a mapping of process names to PIDs.
""" """
# https://github.com/frida/frida/issues/2593 # https://github.com/frida/frida/issues/1225#issuecomment-604181822
# Iterate through lines starting from the second line (skipping header) # Iterate through lines starting from the second line (skipping header)
processes = {} processes = {}
for line in subprocess.getoutput(f'adb -s "{self.device.id}" shell ps').splitlines()[1:]: for line in subprocess.getoutput(f'adb -s "{self.device.id}" shell ps').splitlines()[1:]: