federicodotta
federicodotta
Hi @bigrob69 Usually you have that error when Brida can't find JS files it needs. You first created default JS files using the "Create default JS files" button? Federico
Hi @gfctam It is better to avoid to pass non UTF-8 chars back and forth using Pyro. My advice is to encode/decode them using Base64 or ASCII-HEX. Brida offers all...
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...
Hi @mustafairan, This strange behavior can be caused by many things (crash in frida-server, issues with the application, issues in the JS code, etc.) but I tried to code Brida...
Hi @mustafairan, Uhmmm... Your JS code produce tons of printed output? Usually what cause issues with Brida is if you print too much output, because the output goes from the...
Hi @mustafairan Yes, you should avoid passing raw binary data from the app to Brida plugin. You should encode it in Base64 or similar and then decode it in Brida....
Hi @mr-r3bot Uhmm... very strange issue. I never obtained that exception. I will try to understand the reasons in the the days and I will let you know! Federico
Hi @ccstuck Due to the exception, there is a Syntax error in your JS code. You should fix it to properly start Brida. You can load default Brida code using...
Hi @koff75, the demo code is quite old. Please try to run it with Java 8. Federico
Hi @marius878 it is a strange behavior. Honestly, I never try a path with a & char in it. I pass the path to the Runtime.exec(String[] arrayCmd) and probably this...