summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-13 02:27:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:40:31 -0500
commit2c5a1e6bdde646fd51f36eb31043be0783cea0b1 (patch)
treec1d81b021f5b6a2d53ec5a1d594bf297b27a6c8c
parent007c6f6e659c61e426deb97f6156d92723549f71 (diff)
downloadsamba-2c5a1e6bdde646fd51f36eb31043be0783cea0b1.tar.gz
samba-2c5a1e6bdde646fd51f36eb31043be0783cea0b1.tar.bz2
samba-2c5a1e6bdde646fd51f36eb31043be0783cea0b1.zip
r20723: Web Application Framework
- Clearly no one has ever tried to obtain the Referer from the web server before. :-) - Send the Referer from the web application, in preparation for later security updates. (These updates are not immediately necessary, as ScriptTransport is disabled and we check the content type on XmlHttpTransport. This isn't anything to worry about.) (This used to be commit 33c07f4b92ac349af85dff11e24111fb16d201d0)
-rw-r--r--source4/web_server/http.c2
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js5
2 files changed, 5 insertions, 2 deletions
diff --git a/source4/web_server/http.c b/source4/web_server/http.c
index 3e89f084b3..30ca17411e 100644
--- a/source4/web_server/http.c
+++ b/source4/web_server/http.c
@@ -456,7 +456,7 @@ static void http_setup_arrays(struct esp_state *esp)
}
SETVAR(ESP_REQUEST_OBJ, "COOKIE_SUPPORT", web->input.cookie?"True":"False");
- SETVAR(ESP_HEADERS_OBJ, "HTT_REFERER", web->input.referer);
+ SETVAR(ESP_HEADERS_OBJ, "HTTP_REFERER", web->input.referer);
SETVAR(ESP_HEADERS_OBJ, "HOST", web->input.host);
SETVAR(ESP_HEADERS_OBJ, "ACCEPT_ENCODING", web->input.accept_encoding);
SETVAR(ESP_HEADERS_OBJ, "ACCEPT_LANGUAGE", web->input.accept_language);
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js
index b9e4bf29bc..1ae846cc10 100644
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js
+++ b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js
@@ -310,9 +310,12 @@ qx.Proto.send = function()
// --------------------------------------
- // Appliying request header
+ // Applying request header
// --------------------------------------
+ // Add a Referer header
+ vRequest.setRequestHeader('Referer', window.location.href);
+
var vRequestHeaders = this.getRequestHeaders();
for (var vId in vRequestHeaders) {
vRequest.setRequestHeader(vId, vRequestHeaders[vId]);