federicodotta / Brida

The new bridge between Burp Suite and Frida!
MIT License
1.61k stars 207 forks source link

I am Getting Following Error While Using Brida #97

Closed Pure-arc closed 1 year ago

Pure-arc commented 2 years ago

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

koff75 commented 2 years ago

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...

federicodotta commented 2 years ago

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

mustafairan commented 2 years ago

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