操作系统:Windwos 10
Python:3.6.0
Frida版本:12.2.15
frida-ps -U
***
Failed to load the Frida native extension: DLL load failed: The specified module could not be found.
Please ensure that the extension was compiled for Python 3.x.
***
任何想法如何解决此问题。我看到了对3.6 python的依赖。我已经有了python 3.6。任何解决这个问题的指针都非常感谢。
解决方案
已安装python 3.7,并将python安装在没有空间的目录中。 如果python路径中有空格,则看起来frida很奇怪
答案 0 :(得分:0)
似乎有对python36.dll的引用的硬编码 ._frida.cp35-win32.pyd中的某处-看到此弹出窗口 procmon,然后通过以下方式进行确认:
PS C:\ python353_x86 \ lib \ site-packages>字符串._frida.cp35-win32.pyd | sls python36.dll
python36.dll
下载并安装python 3.6,并通过pip安装解决 它...
pip install frida --upgrade
您可以尝试使用python 3.5吗? 3.x二进制文件是为3.5而构建的