summaryrefslogtreecommitdiffstats
path: root/install/ffextension/locale
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-10-01 17:25:08 +0200
committerRob Crittenden <rcritten@redhat.com>2012-10-04 18:07:29 -0400
commitb4e19509c034942a4f6bc99c371774a0944b65eb (patch)
tree7ac790c547283c1c6b9f5665c208bf93bb02e302 /install/ffextension/locale
parent459c83fb75fd6077ab3e5981f6e04f13ad3379c8 (diff)
downloadfreeipa-b4e19509c034942a4f6bc99c371774a0944b65eb.tar.gz
freeipa-b4e19509c034942a4f6bc99c371774a0944b65eb.tar.xz
freeipa-b4e19509c034942a4f6bc99c371774a0944b65eb.zip
Kerberos authentication extension
The extension should replace signed code (configure.jar) used for Firefox configuration. Using privileged code is not possible since Firefox 15 [1] [2]. Extension is bootstrapped which means it can be used without browser restart on Firefox 4 and later. How it works: Extension listens on each page's document element for event 'kerberos-auth-config' which should be raised on custom data element. Communication data is transferred through data element's attributes [3]. The only required attribute is 'method'. Currently there are two possible values: 'configure' and 'can_configure'. 'can_configure' method serves for detecting if the extension is installed. 'configure' method does the actual configuration. Possible optional options for 'configure' can be found in kerberosauth.js:kerberosauth.config_options. Currently they are: 'referer', 'native_gss_lib', 'trusted_uris', 'allow_proxies'. Result of a method is stored in data element's 'answer' attribute. When 'configure' method is used, the extension asks the user if he wants to configure the browser, it should prevent silent configuration by malicious pages. Possible enhancement: * add UI for manual edit * more configurations ie. for gss_lib, sspi (good with UI or with enhanced config page) * introspection of client (read ipa client install config and such) Ticket: https://fedorahosted.org/freeipa/ticket/3094 [1] https://bugzilla.mozilla.org/show_bug.cgi?id=546848 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=757046 [3] https://developer.mozilla.org/en-US/docs/Code_snippets/Interaction_between_privileged_and_non-privileged_pages
Diffstat (limited to 'install/ffextension/locale')
-rw-r--r--install/ffextension/locale/en-US/kerberosauth.properties4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/ffextension/locale/en-US/kerberosauth.properties b/install/ffextension/locale/en-US/kerberosauth.properties
new file mode 100644
index 000000000..b822535ee
--- /dev/null
+++ b/install/ffextension/locale/en-US/kerberosauth.properties
@@ -0,0 +1,4 @@
+prompt_title=Kerberos configuration confirmation
+prompt_topic=The page you are visiting is trying to configure Firefox for Kerberos authentication.
+prompt_domain=\n\nDomain: ${domain}
+prompt_question=\n\nDo you want to configure the browser? \ No newline at end of file