From 73dd21db8db4030c5fe696b3c3e2b5ff4f1eba6d Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sat, 6 Apr 2024 15:29:15 +0200 Subject: [PATCH] referer frida issue --- extractor/cdm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/cdm.py b/extractor/cdm.py index eadc34f..95925e8 100644 --- a/extractor/cdm.py +++ b/extractor/cdm.py @@ -132,7 +132,7 @@ class Cdm: """ 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) processes = {} for line in subprocess.getoutput(f'adb -s "{self.device.id}" shell ps').splitlines()[1:]: