-
Firefox 129 now issues a security warning and it is suggested to create a basic AppArmor profile as described in https://support.mozilla.org/kb/install-firefox-linux?as=u#w_security-features-warning Should I just do this and will it interact with Firejail? Or do I have to configure this somewhere else (how?) if I use Firejail for Firefox? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
We are aware of this. But there's a problem. The suggested AppArmor profile uses Context:
TL;DR nothing actionable yet. HTH |
Beta Was this translation helpful? Give feedback.
-
So I had this problem until I added |
Beta Was this translation helpful? Give feedback.
We are aware of this. But there's a problem. The suggested AppArmor profile uses
abi <abi/4.0>
, which isn't available yet on several distributions (like Arch Linux and derivatives, Ubuntu 22.04,...). Firejail's AppArmor support itself depends onabi <abi/3.0>
, and we'd need to port it to the 4.* ABI as soon as that is stable.Context:
TL;DR nothing actionable yet.
Best thing you can do for now is to disable the warning:
user_pref("security.sandbox.warn_unprivileged_namespaces", false);
HTH