Brida icon indicating copy to clipboard operation
Brida copied to clipboard

I am Getting Following Error While Using Brida

Open Pure-arc opened this issue 2 years ago • 3 comments

**** Console cleared successfully ****

Start Pyro server command: "C:\Python310\python.exe" -i "C:\Users\xyz\AppData\Local\Temp\bridaServicePyro.py" localhost 9999

Traceback (most recent call last):

File "C:\Users\xyz\AppData\Local\Temp\bridaServicePyro.py", line 2, in

import frida

ModuleNotFoundError: No module named 'frida

Pure-arc avatar Apr 17 '22 08:04 Pure-arc

Hi, I do have the same error, I think it could be related to a python2.7 missing installation... You should try to install python2 maybe ? On MacOS it seems that python2 is by now not included by default...

koff75 avatar May 07 '22 09:05 koff75

Hi @newestera

Brida does not find frida module in your python environment.

You have to install frida with "pip install frida". You can also create a python virtual environment, install frida and pyro4 on it and supply the folder of the venv to Brida. Refer to the documentation for further details.

Federico

federicodotta avatar May 14 '22 08:05 federicodotta

Hi, @newestera @koff75 If you have more than one instances of python, specify clearly which one to use and make sure , the one you specify in brida config is the right one and frida is installed on it.

to summerize don't use pip install blabla

use [your python binary path configured in brida ] -m pip install blabla

mustafairan avatar May 25 '22 12:05 mustafairan