Frida-server is not functioning correctly with MobSF for dynamic analysis, causing app spawning to fail. The user seeks a solution to enable this feature.
My Environment * OS: Ubuntu 24.04 * Docker Engine: 29.1.4 * Android: Genymotion Android 11 I pulled the docker image and run it with below command. ```bash docker run -it --rm \ -p 8000:8000 \ -p 1337:1337 \ -e MOBSF_ANALYZER_IDENTIFIER=192.168.56.101:5555 \ # (Genymotion Android 11) opensecurity/mobile-security-framework-mobsf:latest ``` and I tried to analyze some apks with frida scripts. but, failed spawning app with error message. How can i solve this issue?? ``` [ERROR] 05/Feb/2026 02:18:19 - Not Supported Error Traceback (most recent call last): File "/home/mobsf/Mobile-Security-Framework-MobSF/mobsf/DynamicAnalyzer/views/android/frida_core.py", line 156, in spawn _FPID = device.spawn([self.package]) File "/usr/local/lib/python3.13/site-packages/frida/core.py", line 94, in wrapper return f(*args, **kwargs) File "/usr/local/lib/python3.13/site-packages/frida/core.py", line 1007, in spawn return self._impl.spawn(program, **kwargs) ~~