Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Wannan tattunawa ta zama daɗaɗɗiya. Yi sabuwar tambaya idan ka na bukatar taimako.

Create a script to open firefox with security.ssl3.dhe_rsa_aes_256/128_sha turned off until browser is closed

  • 2 amsoshi
  • 2 sa na da wannan matsala
  • 1 view
  • Amsa ta ƙarshe daga cor-el

more options

So I need to create a script that opens up FF with these settings turned off. Long story short we have some cisco software that needs these turned off to access. All other browers and win 10 don't allow access due to the vulnerability it causes.

I was hoping someone would have some insight or know if there's just some registry settings that can be toggled to accomplished this.

Thanks for the help

Most likley be using PS to accomplish this as mostly a windows shop, but can use other methods as well.

So I need to create a script that opens up FF with these settings turned off. Long story short we have some cisco software that needs these turned off to access. All other browers and win 10 don't allow access due to the vulnerability it causes. I was hoping someone would have some insight or know if there's just some registry settings that can be toggled to accomplished this. Thanks for the help Most likley be using PS to accomplish this as mostly a windows shop, but can use other methods as well.

All Replies (2)

more options

Those preferences can be permanently set to false to trigger servers vulnerable to Logjam to up their game. Is there any reason not to permanently set them to false in about:config rather than having that as a special startup configuration? (Because actually I can't think of a way to do it from the command line.)

Administrators can pre-configure preferences using either:

more options

You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences and run privileged JavaScript code.

A local-settings.js file needs to be placed in the "defaults/pref" folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

The mozilla.cfg file needs to start with a comment line (//).

See Configuration: