Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Add exception to self-signed URL system wide

  • 5 답장
  • 1 이 문제를 만남
  • 11 보기
  • 최종 답변자: Mike Kaply

more options

Hello everyone.

We are using a software in my company that runs a local server with a self-signed certificate. In order to access the software right now we need to instruct the users to manually bypass the warning page for potencial security risks.

Is there a way to use an autoconfig or policy to automatically add the exception to that specific URL? I see that copying the cert_override.txt file in users profiles will add the exception, but I'd like to avoid that. I've also looked at a question with a similar problem here, but I couldn't get this specific solution to work on my end (Firefox ESR 91): https://support.mozilla.org/en-US/questions/1287443

Hello everyone. We are using a software in my company that runs a local server with a self-signed certificate. In order to access the software right now we need to instruct the users to manually bypass the warning page for potencial security risks. Is there a way to use an autoconfig or policy to automatically add the exception to that specific URL? I see that copying the cert_override.txt file in users profiles will add the exception, but I'd like to avoid that. I've also looked at a question with a similar problem here, but I couldn't get this specific solution to work on my end (Firefox ESR 91): https://support.mozilla.org/en-US/questions/1287443

모든 댓글 (5)

more options

That solution should still work if you use autoconfig. What specific problem were you running in to?

more options

Hello Mike,

When using this solution we get an error on startup, saying it failed to read the autoconfig file, see the image attached. I'm using this code on mozilla.cfg, where I store all the pref and lockPref properties, should I use it on local-settings.js instead? Or is there a way to debug this? I can't seem to find an detailed error log for this.

more options

Autoconfig is sandboxed by default. Did you flip the pref so it can run arbitrary code?

If you open up the JS console after this error, it should show exactly what the problem is.

more options

OK, I've got the exact error now: ReferenceError: Services is not defined on mozilla.cfg:16

Is this some import I'm missing? Or maybe it's the pref you told me to flip? What is the name of that pref? I did not find any pref linked to running arbritary code in autoconfig.

more options

In the autoconfig.js where you set the filename and obscure_value, add:

pref("general.config.sandbox_enabled", false);