Renato Alves
Renato Alves
Yes, it looks like you may have some libs that are compatible with the new encryption (those bundled with Firefox) and some that aren't (nss installed system-wide). The latter was...
Can you check if 7d86cb29693085934c43c7e11e210516a13baeb9 works for you without the `LD_LIBRARY_PATH` override?
``` (...) 2025-11-10 01:42:54,455 - DEBUG - Loaded NSS library from libnss3.so (...) ``` This indicates that it is using the `libnss3.so` installed system-wide (likely `/usr/lib/` or `/usr/lib64`) and that...
I think I see where the issue might be coming from. One extra setting was still giving priority to the system-wide lib. Can you both check if the changes introduced...
The lib finding machinery is now very error-prone. We'll need to make the process smarter by reading both the DB and the lib information and rejecting the combination if the...
> `` /lib/x86_64-linux-gnu/libnssutil3.so: version `NSSUTIL_3.101' not found (required by /usr/lib/firefox/libnss3.so) `` This is a similar problem to #98 . Chained dependencies. @jrw is correct in that LD_LIBRARY_PATH is a workaround,...
@jrw do you have `/usr/lib/firefox/libnssutil3.so` in your system? If yes, could you try the following change: ```diff --- firefox_decrypt.py 2025-11-10 19:22:05.764957104 +0100 +++ firefox_decrypt_new.py 2025-11-11 19:38:53.750306412 +0100 @@ -211,7 +211,7...
PS: I'll try to add a [test profile](https://github.com/unode/firefox_decrypt/tree/main/tests/test_data) for Firefox 144 which will hopefully make it easier to test.
Thanks @SerhatG for the correction and link to the driver documentation. Unfortunately, as pointed out, the documented examples and the original API specification have deviated slightly. As capacity to maintain...
Thanks @SerhatG . There's an older issue #140 on how to implement conversational interactions. This was asked back when version 1.x was in-use but 2.x didn't necessarily made it easier....