Enforcing users to single sign the FireFox Authentication Dialog

  • 7940988
  • 20-Aug-2009
  • 26-Apr-2012

Environment

SecureLogin
SecureLogin SSO
6.1 with FIXC0808001 and above
SSO – All. Internet Browsers: FireFox 2.0 – 3.x

Situation

Can SecureLogin enforce users to single sign the FireFox authentication dialog?

Resolution

Yes. This can be done by adding the predefined FirefoxCredentialSelection application definition and using ?FFMustSaveCredential.

If ?FFMustSaveCredential is set to Yes, the Remember this login with SecureLogin check box is selected and disabled.

If ?FFCredential is set to <NOTSET>, the Remember this login with SecureLogin check box is not displayed.

 ##===========Example Script=============== # disallow the saving of credentials for House.com If ?FFDomain eq "house.com" Set ?FFCredential "" Endif # disallow the saving of credentials for House.net If ?FFDomain eq "house.net" Set ?FFCredential <NOTSET> Endif # force saving of credentials for MyNetwork If ?FFDomain eq "mynetwork.com" Set ?FFMustSaveCredential "Yes" Endif ##===========Example Script=============== 

The above FirefoxCredentialSelection definition is specifying that users will be forced to stored their credentials for house.com. In addition the script will not allow the users to store their credentials for mynetwork.com domain.

For more information regarding the Firefox Credential Selection application definition, please see knowledge base article:

https://support.microfocus.com/kb/doc.php?id=7940987