diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-12-13 18:04:45 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-12-13 18:04:45 +0100 |
commit | 4bab2e5816700a94e967dec612a15eed3bcc13eb (patch) | |
tree | 16af96cffced1257c0d9045b22af8a3316005ed7 /debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch | |
parent | c3164342455a7c7085a1a59b5910e936241730c8 (diff) |
CVE TEMP-0807110-881366
Diffstat (limited to 'debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch')
-rw-r--r-- | debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch b/debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch new file mode 100644 index 0000000..976b6ec --- /dev/null +++ b/debian/patches/0503-facebook-Dont-disable-XSS-auditor.patch @@ -0,0 +1,25 @@ +From 2a1dd48e702b0e8524a4ed212252aa4c49c6b0f0 Mon Sep 17 00:00:00 2001 +From: Michael Catanzaro <mcatanzaro@igalia.com> +Date: Fri, 4 Dec 2015 18:08:54 +0100 +Subject: [PATCH] facebook: Don't disable XSS auditor + +This is a separate commit to make it possible to revert easily, as +I don't know why it was disabled. + +https://bugzilla.gnome.org/show_bug.cgi?id=751709 +--- + plugins/shotwell-publishing/FacebookPublishing.vala | 1 - + 1 file changed, 1 deletion(-) + +Index: trunk/plugins/shotwell-publishing/FacebookPublishing.vala +=================================================================== +--- trunk.orig/plugins/shotwell-publishing/FacebookPublishing.vala ++++ trunk/plugins/shotwell-publishing/FacebookPublishing.vala +@@ -829,7 +829,6 @@ internal class WebAuthenticationPane : S + + webview = new WebKit.WebView(); + webview.get_settings().enable_plugins = false; +- webview.get_settings().enable_xss_auditor = false; + + webview.load_changed.connect(on_page_load_changed); + webview.context_menu.connect(() => { return true; }); |